diff options
author | tobik <tobik@FreeBSD.org> | 2019-02-02 14:57:27 +0800 |
---|---|---|
committer | tobik <tobik@FreeBSD.org> | 2019-02-02 14:57:27 +0800 |
commit | b35318a420106dd7b2d70b0431bcb2c5d7005074 (patch) | |
tree | 4c10cf9bc78883039fded5d792b4618b861f2b8c /x11-themes | |
parent | b8b6dcf0faa4ec3f58d127ad240039546cc4dad0 (diff) | |
download | freebsd-ports-gnome-b35318a420106dd7b2d70b0431bcb2c5d7005074.tar.gz freebsd-ports-gnome-b35318a420106dd7b2d70b0431bcb2c5d7005074.tar.zst freebsd-ports-gnome-b35318a420106dd7b2d70b0431bcb2c5d7005074.zip |
x11*/*: Use NO_WRKSUBDIR
Move some things as suggested by the PHB.
Diffstat (limited to 'x11-themes')
-rw-r--r-- | x11-themes/cursor-polar-theme/Makefile | 4 | ||||
-rw-r--r-- | x11-themes/gnome-icons-jini/Makefile | 18 |
2 files changed, 12 insertions, 10 deletions
diff --git a/x11-themes/cursor-polar-theme/Makefile b/x11-themes/cursor-polar-theme/Makefile index 60dc5fe1909c..d8dc9c40a520 100644 --- a/x11-themes/cursor-polar-theme/Makefile +++ b/x11-themes/cursor-polar-theme/Makefile @@ -12,10 +12,10 @@ DISTNAME= 27913-PolarCursorThemes MAINTAINER= ports@FreeBSD.org COMMENT= Polar is a smooth and simple cursor set -NO_BUILD= yes USES= tar:bzip2 -WRKSRC= ${WRKDIR} +NO_BUILD= yes +NO_WRKSUBDIR= yes do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/polar/cursors diff --git a/x11-themes/gnome-icons-jini/Makefile b/x11-themes/gnome-icons-jini/Makefile index d10d8ecd69f5..c7e24a8fb610 100644 --- a/x11-themes/gnome-icons-jini/Makefile +++ b/x11-themes/gnome-icons-jini/Makefile @@ -10,20 +10,22 @@ DISTNAME= jini-icon-theme-${PORTVERSION} MAINTAINER= olgeni@FreeBSD.org COMMENT= Jini Icons for Gnome -NO_BUILD= yes -WRKSRC= ${WRKDIR} +USES= gnome INSTALLS_ICONS= yes +NO_BUILD= yes +NO_WRKSUBDIR= yes + post-extract: - @for FILE in ${WRKDIR}/JiniOrange/scalable/apps/haansoft-hwp.svg \ - ${WRKDIR}/JiniYellowishGreen/scalable/apps/haansoft-hwp.svg \ - ${WRKDIR}/JiniBrown/scalable/apps/haansoft-hwp.svg \ - ${WRKDIR}/JiniOrange/scalable/apps/haansoft-hwp.svg \ - ${WRKDIR}/JiniYellowishGreen/scalable/apps/haansoft-hwp.svg; do \ + @for FILE in ${WRKSRC}/JiniOrange/scalable/apps/haansoft-hwp.svg \ + ${WRKSRC}/JiniYellowishGreen/scalable/apps/haansoft-hwp.svg \ + ${WRKSRC}/JiniBrown/scalable/apps/haansoft-hwp.svg \ + ${WRKSRC}/JiniOrange/scalable/apps/haansoft-hwp.svg \ + ${WRKSRC}/JiniYellowishGreen/scalable/apps/haansoft-hwp.svg; do \ ${LN} -sf ../../../JiniBlueSky/scalable/apps/haansoft-hwp.svg $${FILE}; \ done do-install: - cd ${WRKDIR} && ${FIND} Jini* | ${CPIO} -pdu ${STAGEDIR}${PREFIX}/share/icons + cd ${WRKSRC} && ${FIND} Jini* | ${CPIO} -pdu ${STAGEDIR}${PREFIX}/share/icons .include <bsd.port.mk> |