targets and into a GENERATE_PLIST variable definition. Remove some unnecessary empty PLISTs as a result of properly setting GENERATE_PLIST.
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.6 2007/10/25 21:04:23 jlam Exp $
|
|
|
|
.include "Makefile.common"
|
|
|
|
DISTNAME= foomatic-filters-ppds-${FOOMATIC_PPDS_VERSION}
|
|
PKGNAME= ${DISTNAME:S/-filters-/-/}
|
|
|
|
# The definitive location of the distfile is at www.linuxprinting.org,
|
|
# but this tarball is regenerated daily from the Foomatic database.
|
|
# Rather than track this file very aggressively, we'll place a new
|
|
# copy at MASTER_SITE_LOCAL periodically and update this package
|
|
# accordingly.
|
|
#
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL} \
|
|
http://www.linuxprinting.org/download/foomatic/
|
|
|
|
MAINTAINER= jlam@pkgsrc.org
|
|
COMMENT= Foomatic PPDs collection
|
|
|
|
DEPENDS= foomatic-filters>=3.0.2:../../print/foomatic-filters
|
|
|
|
REQD_DIRS= share/foomatic
|
|
|
|
CHECK_PORTABILITY_SKIP= install
|
|
|
|
GENERATE_PLIST+= \
|
|
( cd ${WRKSRC}/share; \
|
|
${FIND} ppd -type f -print | ${SORT} -u | \
|
|
${SED} -e "s|^|share/foomatic/|"; \
|
|
${FIND} ppd -type d -print | ${SORT} -ur | \
|
|
${SED} -e "s|^|@dirrm share/foomatic/|"; \
|
|
${ECHO} "@dirrm share/foomatic" );
|
|
|
|
do-build: # nothing
|
|
|
|
do-install:
|
|
${CP} -R ${WRKSRC}/share/ppd ${PREFIX}/share/foomatic/ppd
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|