diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2003-09-30 09:32:06 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2003-09-30 09:32:06 +0000 |
commit | fc46a11cc2e18da0d105aa79f928f5e314b3d0e0 (patch) | |
tree | bf838f2122cd3ad7e3cb23287780ac13d6c35673 /net/pxe/Makefile | |
parent | bab6a6635383140af154515a02a50af06be46be7 (diff) | |
download | pkgsrc-fc46a11cc2e18da0d105aa79f928f5e314b3d0e0.tar.gz |
Updated to 1.4.
Patch provided by Adrian Portelli via PR pkg/22323 with some changes by me
(GCC 3.x fixes)
Changes:
* Made the source ansi compliant and fixed namespace usage.
* Made debuging a command line switch.
* Converted code to use namespaces.
Diffstat (limited to 'net/pxe/Makefile')
-rw-r--r-- | net/pxe/Makefile | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/net/pxe/Makefile b/net/pxe/Makefile index a11004a29e2..4798f3a6807 100644 --- a/net/pxe/Makefile +++ b/net/pxe/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2003/07/30 18:09:26 jmmv Exp $ +# $NetBSD: Makefile,v 1.6 2003/09/30 09:32:06 xtraeme Exp $ # -DISTNAME= pxe-1.2 -PKGREVISION= 1 +DISTNAME= pxe-1.4 CATEGORIES= net sysutils MASTER_SITES= http://www.kano.org.uk/projects/pxe/ @@ -14,17 +13,12 @@ GNU_CONFIGURE= YES USE_BUILDLINK2= YES USE_PKGINSTALL= YES -CONFIGURE_ARGS+=--with-log=/var/log/pxe.log -CONFIGURE_ARGS+=--with-config="${PKG_SYSCONFDIR}/pxe.conf" +CONFIGURE_ARGS+= --with-log=/var/log/pxe.log +CONFIGURE_ARGS+= --with-config="${PKG_SYSCONFDIR}/pxe.conf" EGDIR= ${PREFIX}/share/examples/pxe CONF_FILES= ${EGDIR}/pxe.conf ${PKG_SYSCONFDIR}/pxe.conf RCD_SCRIPTS= pxe -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/pxe ${PREFIX}/sbin - ${INSTALL_DATA_DIR} ${EGDIR} - ${INSTALL_DATA} ${WRKSRC}/pxe.conf ${EGDIR} - .include "../../mk/bsd.pkg.mk" |