Date: Thu, 6 Sep 2018 21:58:05 +0000 (UTC) From: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r479164 - head/www/libdom Message-ID: <201809062158.w86Lw5YC051603@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Thu Sep 6 21:58:05 2018 New Revision: 479164 URL: https://svnweb.freebsd.org/changeset/ports/479164 Log: 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: 231200 Submitted by: Neel Chauhan <neel@neelc.org> Modified: head/www/libdom/Makefile Modified: head/www/libdom/Makefile ============================================================================== --- head/www/libdom/Makefile Thu Sep 6 21:58:00 2018 (r479163) +++ head/www/libdom/Makefile Thu Sep 6 21:58:05 2018 (r479164) @@ -3,11 +3,11 @@ PORTNAME= libdom PORTVERSION= 0.3.3 +DISTVERSIONSUFFIX= -src CATEGORIES= www MASTER_SITES= http://download.netsurf-browser.org/libs/releases/ -DISTNAME= ${PORTNAME}-${PORTVERSION}-src -MAINTAINER= ports@FreeBSD.org +MAINTAINER= neel@neelc.org COMMENT= Document Object Model library LICENSE= MIT @@ -22,13 +22,13 @@ LIB_DEPENDS= libwapcaplet.so:textproc/libwapcaplet \ USES= gmake iconv localbase pkgconfig USE_LDCONFIG= yes -WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//} +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} -MAKE_ENV+= COMPONENT_TYPE="lib-shared" +MAKE_ENV= COMPONENT_TYPE="lib-shared" -PLIST_SUB+= VERSION=${PORTVERSION} +PLIST_SUB= VERSION=${PORTVERSION} post-install: - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libdom.so* + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libdom.so .include <bsd.port.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809062158.w86Lw5YC051603>