diff options
author | jlam <jlam> | 2007-10-25 22:00:39 +0000 |
---|---|---|
committer | jlam <jlam> | 2007-10-25 22:00:39 +0000 |
commit | 496d61914b2bd77dabbd4fde285e9fb90c0f265f (patch) | |
tree | c90ec620445350ca4c742747e452c31b2a96cf95 /fonts | |
parent | 0ffc56e029bd8ecf5e9123c88c7620e6dddd40a6 (diff) | |
download | pkgsrc-496d61914b2bd77dabbd4fde285e9fb90c0f265f.tar.gz |
* If PLIST_SRC is explicitly set to an empty value in a package Makefile,
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
Diffstat (limited to 'fonts')
-rw-r--r-- | fonts/jisx0208fonts/Makefile | 3 | ||||
-rw-r--r-- | fonts/jisx0208fonts/PLIST | 2 | ||||
-rw-r--r-- | fonts/ko-x11fonts/Makefile | 3 | ||||
-rw-r--r-- | fonts/ko-x11fonts/PLIST | 2 |
4 files changed, 4 insertions, 6 deletions
diff --git a/fonts/jisx0208fonts/Makefile b/fonts/jisx0208fonts/Makefile index fafe17119cb..da0903b8e3b 100644 --- a/fonts/jisx0208fonts/Makefile +++ b/fonts/jisx0208fonts/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.30 2007/02/22 19:26:29 wiz Exp $ +# $NetBSD: Makefile,v 1.31 2007/10/25 22:00:43 jlam Exp $ # DISTNAME= jisx0208fonts-200301316 @@ -31,6 +31,7 @@ EXTRACT_ONLY= # empty NO_CHECKSUM= YES NO_CONFIGURE= YES NO_BUILD= YES +PLIST_SRC= # empty (meta-package) do-install: # do nothing diff --git a/fonts/jisx0208fonts/PLIST b/fonts/jisx0208fonts/PLIST deleted file mode 100644 index f0ac040bf30..00000000000 --- a/fonts/jisx0208fonts/PLIST +++ /dev/null @@ -1,2 +0,0 @@ -@comment $NetBSD: PLIST,v 1.3 2007/10/25 17:49:48 jlam Exp $ -@comment this plist intentionally left empty diff --git a/fonts/ko-x11fonts/Makefile b/fonts/ko-x11fonts/Makefile index 5c1ecda1a8d..0fe4a5b211b 100644 --- a/fonts/ko-x11fonts/Makefile +++ b/fonts/ko-x11fonts/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2007/04/14 21:37:49 wiz Exp $ +# $NetBSD: Makefile,v 1.9 2007/10/25 22:00:44 jlam Exp $ DISTNAME= ko-x11fonts-20010722 PKGREVISION= 2 @@ -18,6 +18,7 @@ EXTRACT_ONLY= # empty NO_CHECKSUM= yes NO_CONFIGURE= yes NO_BUILD= yes +PLIST_SRC= # empty (meta-package) do-install: # empty diff --git a/fonts/ko-x11fonts/PLIST b/fonts/ko-x11fonts/PLIST deleted file mode 100644 index f0ac040bf30..00000000000 --- a/fonts/ko-x11fonts/PLIST +++ /dev/null @@ -1,2 +0,0 @@ -@comment $NetBSD: PLIST,v 1.3 2007/10/25 17:49:48 jlam Exp $ -@comment this plist intentionally left empty |