diff options
author | gahr <gahr@FreeBSD.org> | 2008-06-26 21:42:31 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2008-06-26 21:42:31 +0800 |
commit | 2dbf2b60ab03cc7cc9d38aef7ed57aadfb3d3f0c (patch) | |
tree | f8660cdeb3cf14ed86b8760695624f31066898e1 | |
parent | 5dc050b80744023b744c6eb3ee8bb642f682cc42 (diff) | |
download | freebsd-ports-gnome-2dbf2b60ab03cc7cc9d38aef7ed57aadfb3d3f0c.tar.gz freebsd-ports-gnome-2dbf2b60ab03cc7cc9d38aef7ed57aadfb3d3f0c.tar.zst freebsd-ports-gnome-2dbf2b60ab03cc7cc9d38aef7ed57aadfb3d3f0c.zip |
- Remove unneeded dependency on GCC 3.4 [1]
- Remove NOT_FOR_ARCH for sparc64 [1]
- Fix small typo in man page
PR: 124518 [1]
Submitted by: yours truly
Approved by: maintainer timeout
-rw-r--r-- | security/doscan/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/security/doscan/Makefile b/security/doscan/Makefile index 79f344422a57..f8ac26993044 100644 --- a/security/doscan/Makefile +++ b/security/doscan/Makefile @@ -7,6 +7,7 @@ PORTNAME= doscan PORTVERSION= 0.3.1 +PORTREVISION= 1 CATEGORIES= security net MASTER_SITES= http://static.enyo.de/fw/releases/doscan/ @@ -17,13 +18,15 @@ LIB_DEPENDS= pcre.0:${PORTSDIR}/devel/pcre GNU_CONFIGURE= yes USE_GMAKE= yes -USE_GCC= 3.4 PORTDOCS= README MAN1= doscan.1 -NOT_FOR_ARCHS= sparc64 PLIST_FILES= bin/doscan +post-patch: + ${REINPLACE_CMD} -e 's|ony o|on yo|' \ + ${WRKSRC}/doc/doscan.1 + post-install: .ifndef(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |