diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-12-10 01:29:59 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-12-10 01:29:59 +0800 |
commit | 7c68529cc0b223b19ec431fe903705fc3df58020 (patch) | |
tree | 31ffd53fd61de4acbf367f062845ec0759331634 | |
parent | e02e1aaeabccf4c3046f5149dacbeda028199c78 (diff) | |
download | marcuscom-ports-7c68529cc0b223b19ec431fe903705fc3df58020.tar marcuscom-ports-7c68529cc0b223b19ec431fe903705fc3df58020.tar.gz marcuscom-ports-7c68529cc0b223b19ec431fe903705fc3df58020.tar.bz2 marcuscom-ports-7c68529cc0b223b19ec431fe903705fc3df58020.tar.lz marcuscom-ports-7c68529cc0b223b19ec431fe903705fc3df58020.tar.xz marcuscom-ports-7c68529cc0b223b19ec431fe903705fc3df58020.tar.zst marcuscom-ports-7c68529cc0b223b19ec431fe903705fc3df58020.zip |
- Add some common defines
- Remove single files from extract as it is a tad slower than excluding them
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@8026 df743ca5-7f9a-e211-a948-0013205c9059
-rw-r--r-- | www/mozilla/Makefile.common | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/www/mozilla/Makefile.common b/www/mozilla/Makefile.common index 9ad791583..ba29d9e22 100644 --- a/www/mozilla/Makefile.common +++ b/www/mozilla/Makefile.common @@ -4,7 +4,7 @@ # Whom: Michael Johnson <ahze@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/www/mozilla/Makefile.common,v 1.36 2006/12/09 15:32:06 ahze Exp $ +# $MCom: ports/www/mozilla/Makefile.common,v 1.37 2006/12/09 16:33:11 ahze Exp $ # This file contains some reusable components for mozilla ports. It's of # use primarily to apps from the mozilla project itself (such as Firefox, @@ -87,19 +87,16 @@ GENERIC_MOZCONFIG?= ${.CURDIR}/../../www/mozilla/files/mozconfig-generic.in PORT_MOZCONFIG?= ${FILESDIR}/mozconfig.in MOZCONFIG?= ${WRKSRC}/.mozconfig MOZILLA_PLIST_DIRS?= bin include lib share/idl - +GECKO_PTHREAD_LIBS!=${CC} -dumpspecs | ${GREP} pthread | ${SED} -e 's|^.*%{\!pg: %{pthread:|| ; s|}.*$$||' || ${TRUE} PKGINSTALL?= ${WRKDIR}/pkg-install PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall -MASTER_MOZDIR?= ${.CURDIR}/../../www/mozilla +MASTER_MOZDIR?= ${PORTSDIR}/www/mozilla PKGINSTALL_INC?= ${MASTER_MOZDIR}/pkg-install.in PKGDEINSTALL_INC?= ${MASTER_MOZDIR}/pkg-deinstall.in EXTRACT_AFTER_ARGS?= | ${TAR} -xf - --exclude */CVS/* \ --exclude */macbuild/* \ --exclude */package/* \ - --exclude .cvsignore \ - --exclude makefile.win \ - --exclude MANIFEST \ --exclude */nsprpub/* \ --exclude mozilla/modules/libimg/png \ --exclude mozilla/jpeg \ @@ -224,13 +221,6 @@ MOZ_OPTIONS+= --enable-logging MOZ_OPTIONS+= --disable-logging .endif -.if exists(${LOCALBASE}/include/freetype/freetype.h) -BROKEN= "You must upgrade your freetype port to 1.3.1_2 or higher before \ - installing ${PORTNAME}. If you have 1.3.1_2 installed, please remove \ - ${LOCALBASE}/include/freetype, then build ${PORTNAME}" -.endif - -# Makefile.common defines MOZ_SED_ARGS+= -e's|@CPPFLAGS@|${CPPFLAGS}|g' \ -e 's|@CFLAGS@|${CFLAGS}|g' \ -e 's|@LDFLAGS@|${LDFLAGS}|g' \ |