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
30 lines
723 B
Makefile
30 lines
723 B
Makefile
# $NetBSD: Makefile,v 1.68 2007/10/25 22:00:45 jlam Exp $
|
|
|
|
PKGNAME= Mesa-${MESA_VERSION}
|
|
MASTER_SITES= # empty
|
|
DISTFILES= # empty
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Graphics library meta package, similar to SGI's OpenGL
|
|
|
|
CONFLICTS= Mesa-glx-[0-9]*
|
|
|
|
USE_LANGUAGES= # empty
|
|
NO_CHECKSUM= yes
|
|
NO_CONFIGURE= yes
|
|
NO_BUILD= yes
|
|
EXTRACT_ONLY= # empty
|
|
PLIST_SRC= # empty (meta-package)
|
|
|
|
do-patch: # empty
|
|
do-install: # empty
|
|
|
|
.include "Makefile.common"
|
|
|
|
# The ordering is important here as glut/buildlink3.mk sets the version
|
|
# of Mesa required.
|
|
.include "../../graphics/glut/buildlink3.mk"
|
|
.include "../../graphics/glu/buildlink3.mk"
|
|
.include "../../graphics/MesaLib/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|