diff options
author | pav <pav@FreeBSD.org> | 2004-07-17 22:28:03 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-07-17 22:28:03 +0800 |
commit | 724670a465ee4a3be0f3ae96b249248b96f5bbd5 (patch) | |
tree | eb55695f7c5b9f08f5bc5495f4ad8afce27fbad5 /net | |
parent | 74f2f260acc953482fce0e02608fdb1ce8579430 (diff) | |
download | freebsd-ports-gnome-724670a465ee4a3be0f3ae96b249248b96f5bbd5.tar.gz freebsd-ports-gnome-724670a465ee4a3be0f3ae96b249248b96f5bbd5.tar.zst freebsd-ports-gnome-724670a465ee4a3be0f3ae96b249248b96f5bbd5.zip |
- Unbreak on 5.x and portlint
PR: ports/69154
Submitted by: Andrej Zverev <az@inec.ru>
Diffstat (limited to 'net')
-rw-r--r-- | net/happystats/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net/happystats/Makefile b/net/happystats/Makefile index c3dcb263247a..8727efff6ac1 100644 --- a/net/happystats/Makefile +++ b/net/happystats/Makefile @@ -16,12 +16,12 @@ MAINTAINER= kiwi@oav.net COMMENT= Universal log converter into graph BUILD_DEPENDS= imake:${PORTSDIR}/devel/imake-4 - LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre \ xml2.5:${PORTSDIR}/textproc/libxml2 \ rrd.0:${PORTSDIR}/net/rrdtool USE_GETOPT_LONG= yes +USE_REINPLACE= yes MAN1= happystats.1 MANCOMPRESSED= yes @@ -29,13 +29,14 @@ DOCS= AUTHORS INSTALL TODO .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 502108 -BROKEN= "Does not link on FreeBSD >= 5.x" -.endif - do-configure: @cd ${WRKSRC} && ${MAKE} dep +post-configure: +.if ${OSVERSION} > 500041 + @${REINPLACE_CMD} -E -e 's|-lgnugetopt||g' ${WRKSRC}/Makefile +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/happystats ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/man/happystats.1.gz ${MAN1PREFIX}/man/man1 |