diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2018-09-06 21:58:10 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2018-09-06 21:58:10 +0000 |
commit | c16bd9dca5d2f0e55408cf22bdb3e28db19a3338 (patch) | |
tree | 736aeab647babdc01c31c9371c8014d4da18bebd /graphics | |
parent | 9557a4e7949f78fd56ffc4c0a01a0798d1bba26a (diff) | |
download | ports-c16bd9dca5d2f0e55408cf22bdb3e28db19a3338.tar.gz ports-c16bd9dca5d2f0e55408cf22bdb3e28db19a3338.zip |
Pass maintainership to submitter
- While I'm here:
- Use DISTVERSIONSUFFIX instead of DISTNAME
- Use = instead of += for MAKE_ENV and PLIST_SUB
- Update post-install: to avoid stripping shared library multiple times
PR: 231201
Submitted by: Neel Chauhan <neel@neelc.org>
Notes
Notes:
svn path=/head/; revision=479165
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/libnsgif/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/graphics/libnsgif/Makefile b/graphics/libnsgif/Makefile index 58d240e5a344..13789d03eee3 100644 --- a/graphics/libnsgif/Makefile +++ b/graphics/libnsgif/Makefile @@ -3,11 +3,11 @@ PORTNAME= libnsgif PORTVERSION= 0.2.1 +DISTVERSIONSUFFIX= -src CATEGORIES= graphics MASTER_SITES= http://download.netsurf-browser.org/libs/releases/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-src -MAINTAINER= ports@FreeBSD.org +MAINTAINER= neel@neelc.org COMMENT= NetSurf GIF Decoder LICENSE= MIT @@ -17,11 +17,11 @@ BUILD_DEPENDS= netsurf-buildsystem>=1.5:devel/netsurf-buildsystem USES= gmake USE_LDCONFIG= yes -WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//} -MAKE_ENV+= COMPONENT_TYPE="lib-shared" -PLIST_SUB+= VERSION=${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +MAKE_ENV= COMPONENT_TYPE="lib-shared" +PLIST_SUB= VERSION=${PORTVERSION} post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnsgif.so* + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libnsgif.so .include <bsd.port.mk> |