diff options
author | Pietro Cerutti <gahr@FreeBSD.org> | 2008-06-26 13:42:31 +0000 |
---|---|---|
committer | Pietro Cerutti <gahr@FreeBSD.org> | 2008-06-26 13:42:31 +0000 |
commit | 1bfd5ca751a4910dd1356669ee03fb91a208d897 (patch) | |
tree | 911ac379943b1e8c835496f4b077d9116f9c4595 /security | |
parent | 707ff2dd86ed00e60a2fe12545d01f683c02e58c (diff) | |
download | ports-1bfd5ca751a4910dd1356669ee03fb91a208d897.tar.gz ports-1bfd5ca751a4910dd1356669ee03fb91a208d897.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
Notes
Notes:
svn path=/head/; revision=215798
Diffstat (limited to 'security')
-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} |