diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-06 05:37:18 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-06 05:37:18 +0800 |
commit | d6d967df425ba8c16392123819eebf4d4b5df2ae (patch) | |
tree | d223441bbe8f88ce9adfdd5db9a54420eacb81e9 /deskutils | |
parent | 63e215e65f140ed12ba29d91908b008c0530fbf9 (diff) | |
download | marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.gz marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.bz2 marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.lz marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.xz marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.tar.zst marcuscom-ports-d6d967df425ba8c16392123819eebf4d4b5df2ae.zip |
Move the '@dirrmtry share/pixamps' from mozilla/Makefile.common to the rest
ports' Makefile to correct the order of remove from files to directories. Bump
these ports, but not firefox since it already has a fix in its own Makefile. I
only replace it from @unexec[...] to @dirrmtry[...].
Before (incorrect):
==============================
# grep share/pixmaps /var/db/pkg/firefox-1.5.0.7_1,1/+CONTENTS
@unexec rmdir %D/share/pixmaps 2>/dev/null || true
share/pixmaps/firefox.xpm
==============================
After (correct):
==============================
# grep share/pixmaps /var/db/pkg/firefox-1.5.0.7_1,1/+CONTENTS
share/pixmaps/firefox.xpm
@unexec rmdir %D/share/pixmaps 2>/dev/null || true
==============================
Reported by: pointyhat
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7597 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/sunbird/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/deskutils/sunbird/Makefile b/deskutils/sunbird/Makefile index 372f238e9..67d891461 100644 --- a/deskutils/sunbird/Makefile +++ b/deskutils/sunbird/Makefile @@ -3,12 +3,12 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/deskutils/sunbird/Makefile,v 1.16 2006/09/30 05:09:42 ahze Exp $ +# $MCom: ports/deskutils/sunbird/Makefile,v 1.17 2006/09/30 06:26:32 ahze Exp $ # PORTNAME= sunbird PORTVERSION= 0.3a1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= deskutils MASTER_SITES= ${MASTER_SITE_MOZILLA} MASTER_SITE_SUBDIR= sunbird/new-directory/releases/${DISTVERSION}/source @@ -64,6 +64,7 @@ post-patch: pre-install: ${ECHO_CMD} 'share/applications/sunbird.desktop' >> ${PLIST} ${ECHO_CMD} 'share/pixmaps/${SUNBIRD_ICON}' >> ${PLIST} + ${ECHO_CMD} "@dirrmtry share/pixmaps" >> ${PLIST} ${ECHO_CMD} '@unexec ${RMDIR} %D/share/applications 2>/dev/null || ${TRUE}' >> ${PLIST} do-install: |