diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-26 14:30:37 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-26 14:30:37 +0000 |
commit | 9cb56c26898d74b8a199abe5f00f96e60c0a6cd6 (patch) | |
tree | 5bc1376660fc7780e406ccb127fd7c7e23425d40 /accessibility | |
parent | b30f4760537e1d9b4a5adf168b492f54dc0e1d44 (diff) | |
download | ports-9cb56c26898d74b8a199abe5f00f96e60c0a6cd6.tar.gz ports-9cb56c26898d74b8a199abe5f00f96e60c0a6cd6.zip |
support stage
Notes
Notes:
svn path=/head/; revision=337518
Diffstat (limited to 'accessibility')
-rw-r--r-- | accessibility/yasr/Makefile | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/accessibility/yasr/Makefile b/accessibility/yasr/Makefile index 354e2e37328f..b55ccf0c2b43 100644 --- a/accessibility/yasr/Makefile +++ b/accessibility/yasr/Makefile @@ -12,24 +12,15 @@ COMMENT= General-purpose console screen reader LICENSE= LGPL20 -NO_STAGE= yes USES= gmake GNU_CONFIGURE= yes -MAN1= yasr.1 PORTDOCS= AUTHORS BUGS CREDITS ChangeLog NEWS README TODO \ README-br README-de README-es README-fr README-ru SUB_FILES= pkg-message -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MNLS} -CONFIGURE_ARGS+= --enable-nls -PLIST_SUB+= NLS="" -USES+= gettext -.else -CONFIGURE_ARGS+= --disable-nls -PLIST_SUB+= NLS="@comment " -.endif +NLS_USES= gettext +NLS_CONFIGURE_ENABLE= nls +OPTIONS_SUB= yes PLIST_FILES= bin/yasr \ %%DATADIR%%/yasr.conf \ @@ -47,12 +38,9 @@ post-patch: @${REINPLACE_CMD} -e 's|/bin/bash|/bin/csh|' ${WRKSRC}/yasr.conf post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} + @${MKDIR} ${STAGEDIR}${DOCSDIR} .for doc in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${doc} ${STAGEDIR}${DOCSDIR} .endfor -.endif - @${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD} .include <bsd.port.post.mk> |