pkgsrc/pkgtools/pkgconflict/Makefile
agc a16fc84f19 Deprecate NO_WRKSUBDIR, replacing it with an explicit assignment of:
WRKSRC= ${WRKDIR}

This is much cleaner, much more indicative of what happens, and removes
another of the negative definitions (NO_.* = value).
2001-09-09 20:36:07 +00:00

31 lines
870 B
Makefile

# $NetBSD: Makefile,v 1.4 2001/09/09 20:36:41 agc Exp $
#
DISTNAME= pkgconflict-0.3
CATEGORIES= pkgtools
MASTER_SITES= # empty
DISTFILES= # empty
MAINTAINER= wennmach@netbsd.org
COMMENT= Scripts to find conflicting packages in pkgsrc
DEPENDS+= postgresql>=7.0:../../databases/postgresql
WRKSRC= ${WRKDIR}
NO_CHECKSUM= yes
NO_PATCH= yes
NO_CONFIGURE= yes
post-extract:
@for FILE in Makefile dewey_cmp.c pkgconflict pkgdbextract \
; 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
${INSTALL_SCRIPT} ${WRKSRC}/pkgdbextract ${PREFIX}/bin
.include "../../mk/bsd.pkg.mk"