diff options
author | obache <obache@pkgsrc.org> | 2008-02-13 14:43:00 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2008-02-13 14:43:00 +0000 |
commit | cb85eafb814c34755f571c4d87111ffe05c09039 (patch) | |
tree | d81a7f6ffdc904152b65fa5cdd619446f750145f | |
parent | 2f07bce2f0d3c8e98023e604f90ac459daa62176 (diff) | |
download | pkgsrc-cb85eafb814c34755f571c4d87111ffe05c09039.tar.gz |
Define MASTER_SITE simply. Don't add "contrib" automatically.
No package using "contrib" sub directory now and it is redundant.
If such a package exists on a platform, should use MOZ_DIR individually instead.
This change also fixes fetch problem of www/firefox-bin when MASTER_SITE_MOZILLA
is not defined in /etc/mk.conf.
-rw-r--r-- | www/seamonkey-bin/Makefile.common | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/www/seamonkey-bin/Makefile.common b/www/seamonkey-bin/Makefile.common index 179877c1e66..4a5eb189cc5 100644 --- a/www/seamonkey-bin/Makefile.common +++ b/www/seamonkey-bin/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.11 2007/12/22 07:22:10 obache Exp $ +# $NetBSD: Makefile.common,v 1.12 2008/02/13 14:43:00 obache Exp $ DISTNAME= ${MOZILLA}${MOX_EXTRA}-bin # overridden below PKGNAME= ${MOZILLA}${MOZ_EXTRA}-bin-${MOZ_VER} @@ -41,13 +41,7 @@ MOZILLA_SHORT= ${MOZILLA} MOZ_DIR?= ${MOZ_VER} MOZ_PLATFORM?= ${LOWER_OPSYS} -.if !defined(MASTER_SITES) -_MASTER_SITES+= ${MASTER_SITE_MOZILLA:=${MOZILLA_SHORT}/releases/${MOZ_DIR}/} -. for _site_ in ${_MASTER_SITES} -MASTER_SITES+= ${_site_} -MASTER_SITES+= ${_site_}contrib/ -. endfor -.endif +MASTER_SITES?= ${MASTER_SITE_MOZILLA:=${MOZILLA_SHORT}/releases/${MOZ_DIR}/} MOZILLA_LIB= ${PREFIX}/lib/${MOZILLA}${MOZ_EXTRA}-${MOZ_PLATFORM} |