aboutsummaryrefslogtreecommitdiffstats
path: root/devel/log4j/Makefile
blob: d6833146be5ac42ef8a53fa20fcf809333dc1290 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# Ports collection makefile for:    Jakarta Log4J
# Date created:             11 October 2002
# Whom:                 Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
#
# $FreeBSD$
#

PORTNAME=   log4j
PORTVERSION=    1.2.13
CATEGORIES= devel java
MASTER_SITES=   ${MASTER_SITE_APACHE}
MASTER_SITE_SUBDIR= logging/${PORTNAME}/${PORTVERSION}
DISTNAME=   logging-${PORTNAME}-${PORTVERSION}

MAINTAINER= hq@FreeBSD.org
COMMENT=    A fast and flexible logging library for Java

USE_JAVA=   YES
NO_BUILD=   YES

PLIST_FILES=    %%JAVAJARDIR%%/log4j.jar

.if !defined(NOPORTDOCS)
PORTDOCS=   *
.endif

do-install:
    @${ECHO_MSG} -n ">> Installing JAR as ${JAVAJARDIR}/${PORTNAME}.jar..."
    @${INSTALL_DATA} ${WRKSRC}/dist/lib/log4j-${PORTVERSION}.jar ${JAVAJARDIR}/${PORTNAME}.jar
    @${ECHO_MSG} " [ DONE ]"
.if !defined(NOPORTDOCS)
    @${ECHO_MSG} -n ">> Installing documentation in ${DOCSDIR}/..."
    @cd ${WRKSRC}/docs \
      && ${FIND} . -type d -exec ${MKDIR} ${DOCSDIR}/{} \; \
      && ${FIND} . -type f -exec ${INSTALL_DATA} {} ${DOCSDIR}/{} \;
    @${ECHO_MSG} " [ DONE ]"
    @${ECHO_MSG} -n ">> Installing examples in ${EXAMPLESDIR}/..."
    @cd ${WRKSRC}/examples \
      && ${FIND} . -type d -exec ${MKDIR} ${EXAMPLESDIR}/{} \; \
      && ${FIND} . -type f -exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/{} \;
    @${ECHO_MSG} " [ DONE ]"
.endif

.if !defined(NOPORTDOCS)
post-install:
    @${FIND} -s ${WRKSRC}/examples -not -type d \
      | ${SED} -ne 's,^${WRKSRC}/examples,${EXAMPLESDIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST}
    @${FIND} -s -d ${WRKSRC}/examples -type d \
      | ${SED} -ne 's,^${WRKSRC}/examples,@dirrm ${EXAMPLESDIR:S,^${PREFIX}/,,},p' >> ${TMPPLIST}
.endif

.include <bsd.port.mk>