mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
35 lines
800 B
Makefile
35 lines
800 B
Makefile
# Created by: Petri Totterman <petri.totterman@hmv.fi>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= log4cplus
|
|
PORTVERSION= 1.0.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-stable/${PORTVERSION}
|
|
DISTFILES= log4cplus-${PORTVERSION}.tar.bz2
|
|
|
|
MAINTAINER= reed@reedmedia.net
|
|
COMMENT= A logging library for C++
|
|
|
|
USE_GCC= any
|
|
USE_AUTOTOOLS= libtool
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--enable-threads=yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
PORTDOCS= *
|
|
.endif
|
|
|
|
NO_STAGE= yes
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/LICENSE ${PREFIX}/include/log4cplus
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/docs/*.config ${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/docs/*.html ${DOCSDIR}
|
|
${INSTALL_MAN} ${WRKSRC}/docs/doxygen.css ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|