diff options
author | nemysis <nemysis@FreeBSD.org> | 2014-01-09 07:38:55 +0800 |
---|---|---|
committer | nemysis <nemysis@FreeBSD.org> | 2014-01-09 07:38:55 +0800 |
commit | da8a25205e7894461905ef9fa9d3a446aa3edc14 (patch) | |
tree | 463c7bb2a9fa7b4fa11613f86e1ea6203034428c | |
parent | d048b80cfb967c1f319e77feee7f3296ee2121e6 (diff) | |
download | freebsd-ports-gnome-da8a25205e7894461905ef9fa9d3a446aa3edc14.tar.gz freebsd-ports-gnome-da8a25205e7894461905ef9fa9d3a446aa3edc14.tar.zst freebsd-ports-gnome-da8a25205e7894461905ef9fa9d3a446aa3edc14.zip |
- USES gmake instead of USE_GMAKE
- Support STAGEDIR
-rw-r--r-- | x11-themes/lxde-icon-theme/Makefile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/x11-themes/lxde-icon-theme/Makefile b/x11-themes/lxde-icon-theme/Makefile index 8d53fc770203..0d0df1248466 100644 --- a/x11-themes/lxde-icon-theme/Makefile +++ b/x11-themes/lxde-icon-theme/Makefile @@ -12,8 +12,7 @@ COMMENT= LXDE Icon Theme LICENSE= GPLv3 USE_BZIP2= YES -USE_GMAKE= yes -USES= iconv +USES= gmake iconv GNU_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} @@ -24,17 +23,12 @@ PORTDOCS= AUTHORS OPTIONS_DEFINE= DOCS -NO_STAGE= yes -.include <bsd.port.options.mk> - post-patch: @${REINPLACE_CMD} -e 's|cp -raf --no-preserve=ownership|cp -RpPf|' \ ${WRKSRC}/Makefile.in post-install: -.if ${PORT_OPTIONS:MDOCS} - @${MKDIR} ${DOCSDIR} - ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR} -.endif + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include <bsd.port.mk> |