Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 6 Sep 2018 21:58:30 +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: r479169 - head/textproc/libwapcaplet
Message-ID:  <201809062158.w86LwU7l052214@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Thu Sep  6 21:58:30 2018
New Revision: 479169
URL: https://svnweb.freebsd.org/changeset/ports/479169

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:		231205
  Submitted by:	Neel Chauhan <neel@neelc.org>

Modified:
  head/textproc/libwapcaplet/Makefile

Modified: head/textproc/libwapcaplet/Makefile
==============================================================================
--- head/textproc/libwapcaplet/Makefile	Thu Sep  6 21:58:25 2018	(r479168)
+++ head/textproc/libwapcaplet/Makefile	Thu Sep  6 21:58:30 2018	(r479169)
@@ -3,11 +3,11 @@
 
 PORTNAME=	libwapcaplet
 PORTVERSION=	0.4.1
+DISTVERSIONSUFFIX=	-src
 CATEGORIES=	textproc
 MASTER_SITES=	http://download.netsurf-browser.org/libs/releases/
-DISTNAME=	${PORTNAME}-${PORTVERSION}-src
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	neel@neelc.org
 COMMENT=	String internment library
 
 LICENSE=	MIT
@@ -18,14 +18,14 @@ BUILD_DEPENDS=	netsurf-buildsystem>=1.5:devel/netsurf-
 USES=	gmake
 USE_LDCONFIG=	yes
 
-WRKSRC=	${WRKDIR}/${DISTNAME:S/-src//}
+WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVERSION}
 
-MAKE_ENV+=	COMPONENT_TYPE="lib-shared" \
+MAKE_ENV=	COMPONENT_TYPE="lib-shared" \
 		FLEX="${LOCALBASE}/bin/flex"
 
-PLIST_SUB+=	VERSION=${PORTVERSION}
+PLIST_SUB=	VERSION=${PORTVERSION}
 
 post-install:
-	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libwapcaplet.so*
+	${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libwapcaplet.so
 
 .include <bsd.port.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809062158.w86LwU7l052214>