diff options
author | joerg <joerg@pkgsrc.org> | 2008-05-26 13:25:22 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2008-05-26 13:25:22 +0000 |
commit | d2ec3ef07598128234f2cc9f2a04b3899fd6f6e2 (patch) | |
tree | 6f18a48bb21d017e28b640d52789bd6498115526 /mk | |
parent | de99f4d269197a3a344582972ca5508e972b81eb (diff) | |
download | pkgsrc-d2ec3ef07598128234f2cc9f2a04b3899fd6f6e2.tar.gz |
Move meta package override earlier.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index ce7a3222bc8..82bd35c3f7d 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1945 2008/05/25 21:42:22 joerg Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1946 2008/05/26 13:25:22 joerg Exp $ # # This file is in the public domain. # @@ -46,6 +46,24 @@ PKGNAME_NOREV= ${PKGNAME} .endif PKGVERSION_NOREV= ${PKGNAME_NOREV:C/^.*-//} +# A meta-package is a package that does not have any files and whose +# only purpose is to depend on other packages, giving that collection +# a simple name. +# +# Keywords: meta meta-package META_PACKAGE +# +.if defined(META_PACKAGE) +PKG_DESTDIR_SUPPORT= user-destdir +NO_CONFIGURE= yes +NO_BUILD= yes +DISTFILES= # none +PLIST_SRC= # none +do-patch: + @${DO_NADA} +do-install: + @${DO_NADA} +.endif + #### ############################################################################ @@ -87,25 +105,6 @@ LICENSE= ${LICENCE} ACCEPTABLE_LICENSES= ${ACCEPTABLE_LICENCES} .endif - -# A meta-package is a package that does not have any files and whose -# only purpose is to depend on other packages, giving that collection -# a simple name. -# -# Keywords: meta meta-package META_PACKAGE -# -.if defined(META_PACKAGE) -PKG_DESTDIR_SUPPORT= user-destdir -NO_CONFIGURE= yes -NO_BUILD= yes -DISTFILES= # none -PLIST_SRC= # none -do-patch: - @${DO_NADA} -do-install: - @${DO_NADA} -.endif - ##### Others BUILD_DEPENDS?= # empty |