diff options
author | leeym <leeym@FreeBSD.org> | 2004-10-13 09:49:45 +0800 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2004-10-13 09:49:45 +0800 |
commit | e25a0d19ee9d2ca158a93894bde6319cdab04dc3 (patch) | |
tree | dfb3443dac5c2ed24a8b825871f1ce902c21b876 /security/smtpmap | |
parent | 86c87385f73687cb6ebcb6f83e51f5d51d3524a1 (diff) | |
download | freebsd-ports-gnome-e25a0d19ee9d2ca158a93894bde6319cdab04dc3.tar.gz freebsd-ports-gnome-e25a0d19ee9d2ca158a93894bde6319cdab04dc3.tar.zst freebsd-ports-gnome-e25a0d19ee9d2ca158a93894bde6319cdab04dc3.zip |
- add USE_GCC=2.95 and unbreak this port
- remove redundant statement
PR: 72127
Submitted by: leeym
Approved by: maintainer timeout
Diffstat (limited to 'security/smtpmap')
-rw-r--r-- | security/smtpmap/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/security/smtpmap/Makefile b/security/smtpmap/Makefile index 940ab31dea81..d278876e65b9 100644 --- a/security/smtpmap/Makefile +++ b/security/smtpmap/Makefile @@ -22,7 +22,7 @@ USE_GETOPT_LONG=yes USE_BZIP2= yes USE_REINPLACE= yes USE_GMAKE= yes - +USE_GCC= 2.95 MAKEFILE= makefile .include <bsd.port.pre.mk> @@ -33,9 +33,9 @@ BROKEN= "Does not compile on FreeBSD >= 5.x" post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ - -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/makefile.conf - @${REINPLACE_CMD} -e 's|\(INC)\) \(small\)|\1 $$(LIBS) \2|g' ${WRKSRC}/src/makefile - @${REINPLACE_CMD} -e 's|-j 5||g' -e 's|@\(./inst\)|\1|g' ${WRKSRC}/makefile + -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ + -e 's|g++|${CXX}|g' ${WRKSRC}/makefile.conf + @${REINPLACE_CMD} -e 's|-j 5||g' ${WRKSRC}/makefile do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/smtpmap ${PREFIX}/bin |