mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
3f6c422e36
- Lots of maintainers timeout - unresponsive for almost a year PR: 195059
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# Created by: ijliao@FreeBSD.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= log4cpp
|
|
DISTVERSION= 1.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION}.x%20%28new%29/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library of C++ classes for flexible logging
|
|
|
|
USES= gmake libtool pathfix
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-pthreads --disable-html-docs
|
|
USE_LDCONFIG= yes
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
# doxygen build is BROKEN atm
|
|
#.if exists (${LOCALBASE}/bin/doxygen) || ${PORT_OPTIONS:MDOCS}
|
|
#BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen
|
|
#.else
|
|
CONFIGURE_ARGS+= --disable-doxygen
|
|
#.endif
|
|
|
|
#.if !exists (${LOCALBASE}/bin/doxygen) && ${PORT_OPTIONS:MDOCS}
|
|
#pre-everything::
|
|
# @${ECHO_CMD}
|
|
# @${ECHO_CMD} By default, this port uses doxygen to build its documentation.\
|
|
#It currently is not present your system, and if you do not want to install it, abort\
|
|
#this build by hitting CTRL+C and re-run the installation with OPTIONS_UNSET=DOCS | ${FMT} 74
|
|
# @${ECHO_CMD}
|
|
# @sleep 3
|
|
#.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's| -pedantic||g' ${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|