diff options
author | wiz <wiz@pkgsrc.org> | 2014-12-30 15:13:19 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-12-30 15:13:19 +0000 |
commit | c847f599fae4c8f3ee0a5d8469a7564bab932fc0 (patch) | |
tree | 72a940b4201682de30eda8c9b0e307555f4681b7 /mk/plist | |
parent | 48b9f0ffaecb6a61d5a3d0b56da4a0e13bf291c3 (diff) | |
download | pkgsrc-c847f599fae4c8f3ee0a5d8469a7564bab932fc0.tar.gz |
Remove pkg_views support, second part: infrastructure.
Diffstat (limited to 'mk/plist')
-rw-r--r-- | mk/plist/plist.mk | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/mk/plist/plist.mk b/mk/plist/plist.mk index 8310fc31a36..625343558c7 100644 --- a/mk/plist/plist.mk +++ b/mk/plist/plist.mk @@ -1,4 +1,4 @@ -# $NetBSD: plist.mk,v 1.47 2014/10/09 13:44:51 wiz Exp $ +# $NetBSD: plist.mk,v 1.48 2014/12/30 15:13:20 wiz Exp $ # # This Makefile fragment handles the creation of PLISTs for use by # pkg_create(8). @@ -50,9 +50,6 @@ PLIST_VARS?= # empty PLIST_AWK?= # empty PLIST_AWK_ENV?= # empty -.if ${PKG_INSTALLATION_TYPE} == "pkgviews" -PLIST_TYPE?= dynamic -.endif PLIST_TYPE?= static ###################################################################### @@ -227,22 +224,6 @@ GENERATE_PLIST?= ${ECHO} "@comment "${PKGNAME:Q}" has no files."; GENERATE_PLIST?= ${TRUE}; .endif -.if ${PKG_INSTALLATION_TYPE} == "pkgviews" -# -# _PLIST_IGNORE_FILES basically mirrors the list of ignored files found -# in pkg_views(1). It's used by the dynamic PLIST generator to skip -# adding the named files to the PLIST. -# -_PLIST_IGNORE_FILES+= +* # package metadata files -. if defined(INFO_FILES) -_PLIST_IGNORE_FILES+= ${PKGINFODIR}/dir -. endif -_PLIST_IGNORE_FILES+= *[~\#] *.OLD *.orig *,v # scratch config files -. if !empty(CONF_DEPENDS) -_PLIST_IGNORE_FILES+= ${PKG_SYSCONFDIR:S,^${PREFIX}/,,} -. endif -_PLIST_IGNORE_FILES+= ${PLIST_IGNORE_FILES} -.endif _BUILD_DEFS+= _PLIST_IGNORE_FILES .if ${PLIST_TYPE} == "dynamic" |