diff options
author | wennmach <wennmach@pkgsrc.org> | 2001-04-02 18:04:03 +0000 |
---|---|---|
committer | wennmach <wennmach@pkgsrc.org> | 2001-04-02 18:04:03 +0000 |
commit | 9b1b05a7390365c8db2760f28966e9fa918ce50c (patch) | |
tree | fb9c108cf5298854a21eb990f5598bb9cd25b25b /pkgtools/pkgconflict/Makefile | |
parent | e76d22cfd5bbd6c36a8294c79ae58e6f30d2c804 (diff) | |
download | pkgsrc-9b1b05a7390365c8db2760f28966e9fa918ce50c.tar.gz |
Initial import of pkgconflict, a script to find conflicting packages
in pkgsrc.
Diffstat (limited to 'pkgtools/pkgconflict/Makefile')
-rw-r--r-- | pkgtools/pkgconflict/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgtools/pkgconflict/Makefile b/pkgtools/pkgconflict/Makefile new file mode 100644 index 00000000000..4bd51a6c99b --- /dev/null +++ b/pkgtools/pkgconflict/Makefile @@ -0,0 +1,30 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/04/02 18:04:03 wennmach Exp $ +# + +DISTNAME= pkgconflict-0.1 +CATEGORIES= pkgtools +MASTER_SITES= # empty +DISTFILES= # empty + +MAINTAINER= wennmach@netbsd.org +COMMENT= Script to find conflicting packages in pkgsrc + +DEPENDS+= postgresql>=7.0:../../databases/postgresql + +NO_WRKSUBDIR= yes +NO_CHECKSUM= yes +NO_PATCH= yes +NO_CONFIGURE= yes + +post-extract: + @for FILE in Makefile dewey_cmp.c pkgconflict \ + ; do \ + ${SED} -e 's|@PREFIX@|${PREFIX}|' ${FILESDIR}/$$FILE \ + >${WRKSRC}/$$FILE; \ + done + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/dewey_cmp.so ${PREFIX}/lib + ${INSTALL_SCRIPT} ${WRKSRC}/pkgconflict ${PREFIX}/bin + +.include "../../mk/bsd.pkg.mk" |