diff options
author | dholland <dholland@pkgsrc.org> | 2011-12-21 17:13:48 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2011-12-21 17:13:48 +0000 |
commit | 4402c2725dd4b2615ecc6fc958391cfa2667e905 (patch) | |
tree | ea8664a270637eeb16b8da7d55c71856db8047a7 | |
parent | 712cd67ccb053e525d167008de55f1871e280b21 (diff) | |
download | pkgsrc-4402c2725dd4b2615ecc6fc958391cfa2667e905.tar.gz |
No reason to build this with gmake, so don't; this allows patching it
to be MAKE_JOBS_SAFE.
-rw-r--r-- | net/unfs3/Makefile | 6 | ||||
-rw-r--r-- | net/unfs3/distinfo | 3 | ||||
-rw-r--r-- | net/unfs3/patches/patch-Makefile_in | 13 |
3 files changed, 18 insertions, 4 deletions
diff --git a/net/unfs3/Makefile b/net/unfs3/Makefile index d3df72d465a..851a338420a 100644 --- a/net/unfs3/Makefile +++ b/net/unfs3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2010/02/14 20:00:12 joerg Exp $ +# $NetBSD: Makefile,v 1.8 2011/12/21 17:13:48 dholland Exp $ # DISTNAME= unfs3-0.9.22 @@ -12,7 +12,7 @@ COMMENT= Userspace NFSv3 server PKG_DESTDIR_SUPPORT= user-destdir GNU_CONFIGURE= yes -USE_TOOLS+= gmake flex bison +USE_TOOLS+= flex bison .include "../../mk/bsd.prefs.mk" @@ -32,7 +32,7 @@ SUBST_SED.exports= -e 's,/etc/exports,${PKG_SYSCONFDIR}/exports,g' pre-build: cd ${WRKSRC}/Config && ${MAKE_PROGRAM} clean - + post-install: ${INSTALL_DATA} ${FILESDIR}/exports \ ${DESTDIR}${PREFIX}/share/examples/unfs3 diff --git a/net/unfs3/distinfo b/net/unfs3/distinfo index 9095720392c..0200fd698f6 100644 --- a/net/unfs3/distinfo +++ b/net/unfs3/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.3 2009/05/22 20:02:31 tnn Exp $ +$NetBSD: distinfo,v 1.4 2011/12/21 17:13:48 dholland Exp $ SHA1 (unfs3-0.9.22.tar.gz) = a6c83e1210ce75836c672cd76e66577bfef7a17a RMD160 (unfs3-0.9.22.tar.gz) = de51d1c6049a265a1a790fc3b59907202c82e1f5 Size (unfs3-0.9.22.tar.gz) = 168447 bytes +SHA1 (patch-Makefile_in) = 68e86790c80db6d9cfb5698735ec54163adea68d diff --git a/net/unfs3/patches/patch-Makefile_in b/net/unfs3/patches/patch-Makefile_in new file mode 100644 index 00000000000..f57f41369ba --- /dev/null +++ b/net/unfs3/patches/patch-Makefile_in @@ -0,0 +1,13 @@ +$NetBSD: patch-Makefile_in,v 1.1 2011/12/21 17:13:48 dholland Exp $ + +--- Makefile.in~ 2007-12-05 19:11:28.000000000 +0000 ++++ Makefile.in +@@ -25,7 +25,7 @@ SUBDIRS = Config @SUBDIRS@ + + DESTDIR = + +-all: subdirs unfsd$(EXEEXT) ++all: subdirs .WAIT unfsd$(EXEEXT) + + unfsd$(EXEEXT): $(OBJS) $(CONFOBJ) $(EXTRAOBJ) + $(CC) -o $@ $(OBJS) $(CONFOBJ) $(EXTRAOBJ) $(LDFLAGS) |