summaryrefslogtreecommitdiff
path: root/pkgtools/pkgsurvey/Makefile
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2001-02-01 12:31:43 +0000
committeragc <agc@pkgsrc.org>2001-02-01 12:31:43 +0000
commitc1669922c71c404b0e42b7ca4b21e89e2c7819a7 (patch)
treee779b9368cd06b7f4e478c470406ebdc8bfcafaf /pkgtools/pkgsurvey/Makefile
parenta6a576bb2c729b325f3bf9bc3c99de80d152f7fc (diff)
downloadpkgsrc-c1669922c71c404b0e42b7ca4b21e89e2c7819a7.tar.gz
Initial import of pkgsurvey, a utility to feedback package usage
information, when run, to the NetBSD pkgsrc people. There is a possibility that you may not want to divulge this information - in which case, you should consider deleting this package from your system (to ensure that no-one can run it). Information is only sent when pkgsurvey is invoked. The information gathered will not be divulged to anyone. It will be used for pkgsrc scheduling purposes.
Diffstat (limited to 'pkgtools/pkgsurvey/Makefile')
-rw-r--r--pkgtools/pkgsurvey/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgtools/pkgsurvey/Makefile b/pkgtools/pkgsurvey/Makefile
new file mode 100644
index 00000000000..d18be52a06e
--- /dev/null
+++ b/pkgtools/pkgsurvey/Makefile
@@ -0,0 +1,24 @@
+# $NetBSD: Makefile,v 1.1.1.1 2001/02/01 12:31:43 agc Exp $
+#
+
+DISTNAME= pkgsurvey-0.0
+CATEGORIES= pkgtools
+MASTER_SITES= # empty
+DISTFILES= # empty
+
+MAINTAINER= agc@pkgsrc.org
+
+WRKSRC= ${WRKDIR}
+NO_CHECKSUM= yes
+NO_PATCH= yes
+NO_CONFIGURE= yes
+NO_BUILD= yes
+NO_MTREE= yes
+
+do-install:
+ ${SED} -e 's|\$${PKG_INFO}|${PKG_INFO}|' \
+ -e 's|\$${UNAME}|${UNAME}|g' \
+ ${FILESDIR}/pkgsurvey.sh > ${PREFIX}/bin/pkgsurvey
+ ${CHMOD} 755 ${PREFIX}/bin/pkgsurvey
+
+.include "../../mk/bsd.pkg.mk"