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
22 lines
486 B
Makefile
22 lines
486 B
Makefile
# $NetBSD: Makefile,v 1.7 2007/10/25 22:00:46 jlam Exp $
|
|
|
|
.include "Makefile.common"
|
|
|
|
PKGNAME:= Canna-${CANNA_VERSION}
|
|
PKGREVISION= 1
|
|
|
|
DEPENDS+= Canna-server>=${CANNA_VERSION}nb2:../../inputmethod/canna-server
|
|
DEPENDS+= Canna-dict>=${CANNA_VERSION}nb1:../../inputmethod/canna-dict
|
|
|
|
EXTRACT_ONLY= # empty
|
|
NO_CHECKSUM= YES
|
|
NO_CONFIGURE= YES
|
|
NO_BUILD= YES
|
|
PLIST_SRC= # empty (meta-package)
|
|
|
|
CANNA_MODULE= meta-package
|
|
|
|
do-patch: # empty
|
|
do-install: # empty
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|