summaryrefslogtreecommitdiff
path: root/devel/log4cxx/Makefile
blob: f6a1298a6bee13624026831f07e0d77c336ff1c7 (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
# Created by: Thaddeus Covert <tcovert@grimmy.sahuagin.net>
# $FreeBSD$

PORTNAME=	log4cxx
PORTVERSION=	0.10.0
PORTREVISION=	5
CATEGORIES=	devel
MASTER_SITES=	${MASTER_SITE_APACHE}
MASTER_SITE_SUBDIR=	logging/${PORTNAME}/${PORTVERSION}
DISTNAME=	apache-${PORTNAME}-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	C++ port of the Log4j project

LICENSE=	APACHE20

LIB_DEPENDS=	apr-1:${PORTSDIR}/devel/apr1

GNU_CONFIGURE=	yes
USE_AUTOTOOLS=	automake:env autoconf:env libtool:env
USES=		pathfix
USE_LDCONFIG=	yes
MAKE_JOBS_UNSAFE=	yes

OPTIONS_DEFINE=	BOOST DOXYGEN

BOOST_BUILD_DEPENDS=	${LOCALBASE}/include/boost/regex.hpp:${PORTSDIR}/devel/boost-libs

DOXYGEN_CONFIGURE_OFF=	--disable-doxygen
DOXYGEN_BUILD_DEPENDS=	${LOCALBASE}/bin/doxygen:${PORTSDIR}/devel/doxygen

.include <bsd.port.options.mk>

post-configure:
	@${REINPLACE_CMD} -e 's|-dpR|-pr|' \
		-e '/^htmldest/ s|$$(pkgdatadir)|${DOCSDIR}|' \
		${WRKSRC}/src/site/doxy/Makefile

post-install:
.if ${PORT_OPTIONS:MDOXYGEN}
	@cd ${STAGEDIR}${PREFIX} && \
	${FIND} ${DOCSDIR:S|${PREFIX}/||} ! -type d >> ${TMPPLIST} && \
	${FIND} ${DOCSDIR:S|${PREFIX}/||} -type d | ${SORT} -r | \
	${SED} 's|^|@dirrm |' >> ${TMPPLIST}
.endif

.include <bsd.port.mk>