diff options
author | Pawel Pekala <pawel@FreeBSD.org> | 2013-12-20 20:50:14 +0000 |
---|---|---|
committer | Pawel Pekala <pawel@FreeBSD.org> | 2013-12-20 20:50:14 +0000 |
commit | 23fb0bcf75bf5949e7348d9fa7c0e1da76022ef3 (patch) | |
tree | f40bd867e654ab94d581533ca59cf1fa0e85306e | |
parent | 2d6594220deee80404716b7ea9f1ffd562d7a934 (diff) | |
download | ports-23fb0bcf75bf5949e7348d9fa7c0e1da76022ef3.tar.gz ports-23fb0bcf75bf5949e7348d9fa7c0e1da76022ef3.zip |
- Fix build with clang
- Add LICENSE
PR: ports/184887
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Notes
Notes:
svn path=/head/; revision=337089
-rw-r--r-- | security/gsfv/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/security/gsfv/Makefile b/security/gsfv/Makefile index 23c5e95ad1fd..7acaed32cb99 100644 --- a/security/gsfv/Makefile +++ b/security/gsfv/Makefile @@ -5,14 +5,20 @@ PORTNAME= gsfv PORTVERSION= 0.2.1 PORTREVISION= 4 CATEGORIES= security -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= ijliao +MASTER_SITES= LOCAL/ijliao MAINTAINER= ports@FreeBSD.org COMMENT= Create or verify Simple File Verification (SFV) checksum files -PLIST_FILES= bin/gsfv +LICENSE= BSD2CLAUSE + USE_GNOME= gtk12 GNU_CONFIGURE= yes +PLIST_FILES= bin/gsfv + +post-patch: + @${REINPLACE_CMD} -e \ + 's|\([[:blank:]]\)log|\1bb_log|' ${WRKSRC}/src/backbone.c + .include <bsd.port.mk> |