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 /www/firefox3-devel | |
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 'www/firefox3-devel')
-rw-r--r-- | www/firefox3-devel/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/www/firefox3-devel/Makefile b/www/firefox3-devel/Makefile index 5e746ebf7..dcd897d78 100644 --- a/www/firefox3-devel/Makefile +++ b/www/firefox3-devel/Makefile @@ -3,11 +3,12 @@ # Whom: Alan Eldridge <alane@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/firefox-devel/Makefile,v 1.26 2006/03/29 18:31:20 ahze Exp $ +# $MCom: ports/www/firefox-devel/Makefile,v 1.28 2006/07/18 14:48:15 ahze Exp $ +# PORTNAME= firefox DISTVERSION= 2.0a3 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_MOZILLA} @@ -82,6 +83,7 @@ pre-install: ${ECHO_CMD} 'share/applications/${MOZILLA}.desktop' >> ${PLIST} ${ECHO_CMD} "@unexec ${RMDIR} %D/share/applications 2>/dev/null || ${TRUE}" >> ${PLIST} ${ECHO_CMD} 'share/pixmaps/${FIREFOX_ICON}' >> ${PLIST} + ${ECHO_CMD} "@dirrmtry share/pixmaps" >> ${PLIST} .if !defined(WITHOUT_NEWTAB) ${ECHO_CMD} >> ${SYSTEM_PREFS} ${ECHO_CMD} "// Open external links in new tab" >> ${SYSTEM_PREFS} |