diff options
author | antoine <antoine@FreeBSD.org> | 2014-04-06 01:31:20 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2014-04-06 01:31:20 +0800 |
commit | aa2fd647fe5e25e55b1e862c3aba8eb89a26dbd9 (patch) | |
tree | c1032e3a765e8517e7f6e102f63e550b2c000814 /editors/openoffice-devel | |
parent | 2d1a48bfc20810dd9f28b85ab2d5835357369ec1 (diff) | |
download | freebsd-ports-gnome-aa2fd647fe5e25e55b1e862c3aba8eb89a26dbd9.tar.gz freebsd-ports-gnome-aa2fd647fe5e25e55b1e862c3aba8eb89a26dbd9.tar.zst freebsd-ports-gnome-aa2fd647fe5e25e55b1e862c3aba8eb89a26dbd9.zip |
Possibly unbreak
Reported by: pkg-fallout
With hat: portmgr
Diffstat (limited to 'editors/openoffice-devel')
-rw-r--r-- | editors/openoffice-devel/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editors/openoffice-devel/Makefile b/editors/openoffice-devel/Makefile index 8075b01cdcb0..caeab5f7f9e5 100644 --- a/editors/openoffice-devel/Makefile +++ b/editors/openoffice-devel/Makefile @@ -323,12 +323,14 @@ post-install: @for dir in `ls ${ICONS}/hicolor | ${GREP} -v CVS`; do \ for app in base calc draw impress math printeradmin writer; do \ if [ -r ${ICONS}/hicolor/$${dir}/apps/$${app}.png ]; then \ + ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/$${dir}/apps/ ; \ ${INSTALL_DATA} ${ICONS}/hicolor/$${dir}/apps/$${app}.png \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/$${dir}/apps/${EXECBASE}-$${app}.png ; \ ${ECHO_CMD} "share/icons/hicolor/$${dir}/apps/${EXECBASE}-$${app}.png" >> ${TMPPLIST} ; \ fi \ done ; \ for iconfile in `cd ${ICONS}/hicolor/$${dir}/mimetypes; ls *.png`; do \ + ${MKDIR} ${STAGEDIR}${PREFIX}/share/icons/hicolor/$${dir}/mimetypes/ ; \ ${INSTALL_DATA} ${ICONS}/hicolor/$${dir}/mimetypes/$${iconfile} \ ${STAGEDIR}${PREFIX}/share/icons/hicolor/$${dir}/mimetypes/ ; \ ${ECHO_CMD} "share/icons/hicolor/$${dir}/mimetypes/$${iconfile}" >> ${TMPPLIST} ; \ |