svn commit: r321491 - head/textproc/p5-SGMLSpm

Koop Mast kwm at FreeBSD.org
Fri Jun 21 18:08:37 UTC 2013


Author: kwm
Date: Fri Jun 21 18:08:36 2013
New Revision: 321491
URL: http://svnweb.freebsd.org/changeset/ports/321491

Log:
  Fix perl path with shebangfix.
  Assign maintainer to perl@ [1]
  Convert to PORT_OPTIONS DOCS and EXAMPLE and remove duplicate DOCS block.
  Trim makefile header
  
  Approved by:	ak@ (perl@) [1]

Modified:
  head/textproc/p5-SGMLSpm/Makefile   (contents, props changed)

Modified: head/textproc/p5-SGMLSpm/Makefile
==============================================================================
--- head/textproc/p5-SGMLSpm/Makefile	Fri Jun 21 18:01:58 2013	(r321490)
+++ head/textproc/p5-SGMLSpm/Makefile	Fri Jun 21 18:08:36 2013	(r321491)
@@ -1,9 +1,5 @@
-# New ports collection makefile for:	SGMLSpm
-# Date created:		4 May 2004
-# Whom:			Brian Candler <B.Candler at pobox.com>
-#
+# Created by: Brian Candler <B.Candler at pobox.com>
 # $FreeBSD$
-#
 
 PORTNAME=	SGMLSpm
 PORTVERSION=	1.03
@@ -14,35 +10,38 @@ MASTER_SITE_SUBDIR=	SGMLS
 PKGNAMEPREFIX=	p5-
 DISTNAME=	${PORTNAME}-${PORTVERSION}ii
 
-MAINTAINER=	ports at FreeBSD.org
+MAINTAINER=	perl at FreeBSD.org
 COMMENT=	Perl module for postprocessing the output from sgmls and nsgmls
 
 USE_PERL5_RUN=	yes
+USES=		shebangfix
 NO_BUILD=	yes
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
+SHEBANG_FILES=	sgmlspl.pl \
+		DOC/HTML/SGMLSpm/sample.pl \
+		DOC/HTML/SGMLSpm/example.html
+
 INSTALL_TARGET=	install BINDIR=${PREFIX}/bin \
 		PERL5DIR=${SITE_PERL} SPECDIR=${EXAMPLESDIR}
 
-.ifndef(NOPORTDOCS)
+.include <bsd.port.options.mk>
+
+.if ${PORT_OPTIONS:MDOCS}
 PORTDOCS=       *
 INSTALL_TARGET+=docs install_html HTMLDIR=${DOCSDIR}
 .endif
-.ifdef(NOPORTEXAMPLES)
+
+.if ${PORT_OPTIONS:MEXAMPLES}
 EXTRA_PATCHES=	${PATCHDIR}/noportexamples-patch-Makefile
 .endif
 
 pre-su-install:
-.ifndef(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
 	${MKDIR} ${DOCSDIR}
 .endif
-.ifndef(NOPORTEXAMPLES)
+.if ${PORT_OPTIONS:MEXAMPLES}
 	${MKDIR} ${EXAMPLESDIR}
 .endif
 
-.ifndef(NOPORTDOCS)
-PORTDOCS=	*
-INSTALL_TARGET+=docs install_html HTMLDIR=${DOCSDIR}
-.endif
-
 .include <bsd.port.mk>


More information about the svn-ports-all mailing list