diff options
author | rillig <rillig@pkgsrc.org> | 2008-01-04 15:54:46 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2008-01-04 15:54:46 +0000 |
commit | 810705a6f7a365a9de071dcfd6f9e75c35f02ee9 (patch) | |
tree | a513e49dc8f4dc57be6893d55032a5eb7391dfc3 /x11/qt4 | |
parent | d546a3251da68d33adb0aae5f47d8beb9c88608e (diff) | |
download | pkgsrc-810705a6f7a365a9de071dcfd6f9e75c35f02ee9.tar.gz |
Defining a meta-package is done via the META_PACKAGE variable.
In Makefile.common, the MAINTAINER should only be set with the ?= operator.
Diffstat (limited to 'x11/qt4')
-rw-r--r-- | x11/qt4/Makefile | 15 | ||||
-rw-r--r-- | x11/qt4/Makefile.common | 4 |
2 files changed, 6 insertions, 13 deletions
diff --git a/x11/qt4/Makefile b/x11/qt4/Makefile index 3bb88693913..9ed8acb7a91 100644 --- a/x11/qt4/Makefile +++ b/x11/qt4/Makefile @@ -1,24 +1,17 @@ -# $NetBSD: Makefile,v 1.2 2007/10/25 22:01:09 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2008/01/04 15:54:46 rillig Exp $ DISTNAME= qt4-${QTVERSION} CATEGORIES= x11 -MASTER_SITES= # empty -DISTFILES= # empty +MASTER_SITES= # none COMMENT= "meta-package" for the QT GUI C++ toolkit -.include "./Makefile.common" +.include "Makefile.common" DEPENDS+= qt4-libs-${QTVERSION}{,nb[0-9]*}:../../x11/qt4-libs DEPENDS+= qt4-tools-${QTVERSION}{,nb[0-9]*}:../../x11/qt4-tools DEPENDS+= qt4-docs-${QTVERSION}{,nb[0-9]*}:../../x11/qt4-docs -EXTRACT_ONLY= # empty -NO_CHECKSUM= yes -NO_CONFIGURE= yes -NO_BUILD= yes -PLIST_SRC= # empty (meta-package) - -do-install: # empty +META_PACKAGE= yes .include "../../mk/bsd.pkg.mk" diff --git a/x11/qt4/Makefile.common b/x11/qt4/Makefile.common index f231712de39..4b75cd4bdca 100644 --- a/x11/qt4/Makefile.common +++ b/x11/qt4/Makefile.common @@ -1,6 +1,6 @@ -# $NetBSD: Makefile.common,v 1.11 2007/12/17 22:19:43 adam Exp $ +# $NetBSD: Makefile.common,v 1.12 2008/01/04 15:54:47 rillig Exp $ QTVERSION= 4.3.3 -MAINTAINER= adam@NetBSD.org +MAINTAINER?= adam@NetBSD.org HOMEPAGE= http://www.trolltech.com/products/qt/ |