diff options
author | agc <agc@pkgsrc.org> | 2001-10-25 20:40:07 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2001-10-25 20:40:07 +0000 |
commit | 69926886dc37f9f998f9c8751c8b0a24968bb89c (patch) | |
tree | 5026f304181ad2ff39d2c7a15825d0ef4e0084ca /devel/bcc/Makefile | |
parent | 8ba796c5da0ffea168edff54b572d057d3f80bc8 (diff) | |
download | pkgsrc-69926886dc37f9f998f9c8751c8b0a24968bb89c.tar.gz |
Move the configuration stage from a separate script into the package
Makefile, using the standard target.
Add the required Makefile and Makefile.inc in a more standard way.
Get rid of the now unnecessary configure script.
Diffstat (limited to 'devel/bcc/Makefile')
-rw-r--r-- | devel/bcc/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/devel/bcc/Makefile b/devel/bcc/Makefile index e1400fe6619..e97c2ba84db 100644 --- a/devel/bcc/Makefile +++ b/devel/bcc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2001/02/16 14:38:18 wiz Exp $ +# $NetBSD: Makefile,v 1.8 2001/10/25 20:40:07 agc Exp $ # FreeBSD Id: Makefile,v 1.6 1996/11/18 11:22:35 asami Exp # @@ -13,4 +13,14 @@ NOT_FOR_PLATFORM= *-*-alpha # Severe LP64 problems MANCOMPRESSED_IF_MANZ= yes +do-configure: + ${RM} -f ${WRKSRC}/as/typeconv.o + ${MV} ${WRKSRC}/bcc ${WRKSRC}/bcc-cc1 + ${MKDIR} ${WRKSRC}/bcc + ${CP} -p ${FILESDIR}/Makefile.bcc ${WRKSRC}/bcc/Makefile + ${CP} -p ${FILESDIR}/ld86.1 ${WRKSRC}/ld/ + ${CP} -p ${FILESDIR}/as86.1 ${WRKSRC}/as/ + ${CP} -p ${FILESDIR}/bcc.1 ${WRKSRC}/bcc/ + ${CP} -p ${FILESDIR}/bcc-cc1.1 ${WRKSRC}/bcc-cc1/ + .include "../../mk/bsd.pkg.mk" |