ae9b935fd0
then automatically generate a PLIST that says "${PKGNAME} has no files". * If PLIST_SRC and GENERATE_PLIST are not set in a package Makefile, and no PLIST files exist, then fail during the package build with PKG_FAIL_REASON. * Remove "intentionally empty" PLISTs again. Now, the easy way to say that a package installs no files is to just add the following to the package Makefile: PLIST_SRC= # empty
25 lines
610 B
Makefile
25 lines
610 B
Makefile
# $NetBSD: Makefile,v 1.7 2007/10/25 22:00:46 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= gimp-1.2.5
|
|
PKGREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= # none
|
|
DISTFILES= # none
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gimp.org/
|
|
COMMENT= GNU Image Manipulation Program
|
|
|
|
NO_CHECKSUM= yes
|
|
NO_BUILD= YES
|
|
PLIST_SRC= # empty (meta-package)
|
|
|
|
DEPENDS+= gimp-base>=1.2.5:../../graphics/gimp1-base
|
|
DEPENDS+= gimp-data>=1.2:../../graphics/gimp1-data
|
|
DEPENDS+= gimp-print>=4.2.0:../../print/gimp-print
|
|
DEPENDS+= gimp-print-escputil>=4.2.0:../../print/gimp-print-escputil
|
|
|
|
do-install: # nothing
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|