svn commit: r421045 - head/textproc/extract_url

Dmitry Marakasov amdmi3 at FreeBSD.org
Mon Aug 29 09:01:27 UTC 2016


Author: amdmi3
Date: Mon Aug 29 09:01:26 2016
New Revision: 421045
URL: https://svnweb.freebsd.org/changeset/ports/421045

Log:
  - Add LICENSE_FILE
  - Add NO_ARCH
  - Switch to options helpers
  - Cosmetic fixes

Modified:
  head/textproc/extract_url/Makefile

Modified: head/textproc/extract_url/Makefile
==============================================================================
--- head/textproc/extract_url/Makefile	Mon Aug 29 08:53:29 2016	(r421044)
+++ head/textproc/extract_url/Makefile	Mon Aug 29 09:01:26 2016	(r421045)
@@ -12,6 +12,7 @@ MAINTAINER=	ports at FreeBSD.org
 COMMENT=	Perl script that extracts URLs from email in MIME or plain text format
 
 LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/COPYING
 
 BUILD_DEPENDS=	p5-MIME-Tools>=0:mail/p5-MIME-Tools \
 		p5-HTML-Parser>=0:www/p5-HTML-Parser
@@ -19,33 +20,31 @@ RUN_DEPENDS:=	${BUILD_DEPENDS}
 
 USES=		gmake perl5
 MAKE_ARGS=	all prefix=${PREFIX} man_prefix=${PREFIX}
+SUB_FILES=	pkg-message
+NO_ARCH=	yes
 
 WRKSRC=		${WRKDIR}/${PORTNAME}
 
 PLIST_FILES=	bin/extract_url \
 		etc/extract_urlview.sample \
 		man/man1/extract_url.1.gz
+PORTDOCS=	AUTHORS NEWS README
 
-SUB_FILES=	pkg-message
-
-OPTIONS_DEFINE=			DOCS GETOPT_LONG URI_FIND
-OPTIONS_RADIO=			URL_SELECTOR
+OPTIONS_DEFINE=		DOCS GETOPT_LONG URI_FIND
+OPTIONS_RADIO=		URL_SELECTOR
 OPTIONS_RADIO_URL_SELECTOR=	CURSES_UI URLVIEW
-OPTIONS_DEFAULT=		CURSES_UI GETOPT_LONG URI_FIND
+OPTIONS_DEFAULT=	CURSES_UI GETOPT_LONG URI_FIND
+OPTIONS_SUB=		yes
 
 CURSES_UI_DESC=		Allows it to fully replace urlview
 GETOPT_LONG_DESC=	Recognizes long options --version and --list
 URI_FIND_DESC=		Recognizes more exotic URL variations in plain text
 URLVIEW_DESC=		Uses urlview for the URL selector menu
 
-OPTIONS_SUB=	yes
-
-CURSES_UI_RUN_DEPENDS=		p5-Curses-UI>=0:devel/p5-Curses-UI
-GETOPT_LONG_RUN_DEPENDS=	p5-Getopt-Long>=0:devel/p5-Getopt-Long
-URLVIEW_RUN_DEPENDS=		urlview>=0:textproc/urlview
-URI_FIND_RUN_DEPENDS=		p5-URI-Find>=0:textproc/p5-URI-Find
-
-PORTDOCS=	AUTHORS NEWS README
+CURSES_UI_RUN_DEPENDS=	p5-Curses-UI>=0:devel/p5-Curses-UI
+GETOPT_LONG_RUN_DEPENDS=p5-Getopt-Long>=0:devel/p5-Getopt-Long
+URLVIEW_RUN_DEPENDS=	urlview>=0:textproc/urlview
+URI_FIND_RUN_DEPENDS=	p5-URI-Find>=0:textproc/p5-URI-Find
 
 post-patch:
 	@${REINPLACE_CMD} '/pod2man.mk/s|make|${MAKE_CMD}|' \
@@ -55,6 +54,7 @@ post-install:
 	${INSTALL_DATA} ${FILESDIR}/${PORTNAME}view \
 		${STAGEDIR}${PREFIX}/etc/${PORTNAME}view.sample
 
+post-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
 


More information about the svn-ports-all mailing list