diff options
author | Kevin Lo <kevlo@FreeBSD.org> | 2014-04-25 23:28:13 +0800 |
---|---|---|
committer | Kevin Lo <kevlo@FreeBSD.org> | 2014-04-25 23:28:13 +0800 |
commit | d560c7d11d19c89c0e7120c36e3b604057ed96b1 (patch) | |
tree | f80222e00e65a2c97258f97fd8c4f9f8ba37ac92 /x11-fonts/ubuntu-font | |
parent | e0878cc099a19dc012692e1b274b61ee4bfa4a6c (diff) | |
download | freebsd-ports-gnome-d560c7d11d19c89c0e7120c36e3b604057ed96b1.tar.gz freebsd-ports-gnome-d560c7d11d19c89c0e7120c36e3b604057ed96b1.tar.zst freebsd-ports-gnome-d560c7d11d19c89c0e7120c36e3b604057ed96b1.zip |
Stage support.
Diffstat (limited to 'x11-fonts/ubuntu-font')
-rw-r--r-- | x11-fonts/ubuntu-font/Makefile | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/x11-fonts/ubuntu-font/Makefile b/x11-fonts/ubuntu-font/Makefile index 9187b620233a..1cbfcec7d143 100644 --- a/x11-fonts/ubuntu-font/Makefile +++ b/x11-fonts/ubuntu-font/Makefile @@ -29,18 +29,10 @@ SUB_FILES= pkg-message SUB_LIST= FONTSDIR=${FONTSDIR} WRKSRC= ${WRKDIR}/${DISTNAME} -NO_STAGE= yes do-install: -.if !defined(NOPORTDOCS) - ${MKDIR} ${DOCSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} *.txt ${DOCSDIR} -.endif - ${MKDIR} ${FONTSDIR} - cd ${WRKSRC} && ${INSTALL_DATA} *.ttf ${FONTSDIR} - -post-install: - @${ECHO_MSG} "===> Running fc-cache" - -${LOCALBASE}/bin/fc-cache -f -v ${FONTSDIR} - @${CAT} ${PKGMESSAGE} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} *.txt ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${FONTSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} *.ttf ${STAGEDIR}${FONTSDIR} .include <bsd.port.mk> |