diff options
author | zuntum <zuntum> | 2001-06-13 14:37:32 +0000 |
---|---|---|
committer | zuntum <zuntum> | 2001-06-13 14:37:32 +0000 |
commit | 24937c680329e33c4364812a3c2f2032ad136758 (patch) | |
tree | 9bfc44ee7fc36b67cde938e28412f93ef21a30c9 /net/ipw | |
parent | 78c331599eb014a12d9dc0c56c6c88c878ebbdfc (diff) | |
download | pkgsrc-24937c680329e33c4364812a3c2f2032ad136758.tar.gz |
No functional changes:
o modify patch-aa to match my current taste:
don't remove CFLAGS line, just change '=' to '+=' and remove -O switch
o don't hack install target in ipw's Makefile any longer, it's easier to
install binary in do-install target in pkg's Makefile (we already have
the post-install target as it installs README file, so I hope it's ok)
Diffstat (limited to 'net/ipw')
-rw-r--r-- | net/ipw/Makefile | 5 | ||||
-rw-r--r-- | net/ipw/distinfo | 4 | ||||
-rw-r--r-- | net/ipw/patches/patch-aa | 21 |
3 files changed, 10 insertions, 20 deletions
diff --git a/net/ipw/Makefile b/net/ipw/Makefile index 145470a4947..2aa8ddc2bbb 100644 --- a/net/ipw/Makefile +++ b/net/ipw/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1.1.1 2001/03/28 07:41:59 zuntum Exp $ +# $NetBSD: Makefile,v 1.2 2001/06/13 14:37:32 zuntum Exp $ # DISTNAME= ipw-3.3a @@ -11,7 +11,8 @@ COMMENT= "whois" replacement that automatically queries several databases WRKSRC= ${WRKDIR} -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ipw ${PREFIX}/bin ${INSTALL_DATA} ${FILESDIR}/README ${PREFIX}/share/doc/ipw.README .include "../../mk/bsd.pkg.mk" diff --git a/net/ipw/distinfo b/net/ipw/distinfo index 5968023ebef..296e168048a 100644 --- a/net/ipw/distinfo +++ b/net/ipw/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.2 2001/04/21 11:23:18 wiz Exp $ +$NetBSD: distinfo,v 1.3 2001/06/13 14:37:32 zuntum Exp $ SHA1 (ipw-3.3a.tar.gz) = ca7943d263b9ace3951badeb4189e5aa9c2c8ddd Size (ipw-3.3a.tar.gz) = 17238 bytes -SHA1 (patch-aa) = 21f8ca8ed7154833c19273b2a4e026dae5f74119 +SHA1 (patch-aa) = 60cf070bacd1f500ebc666d2947b1153626369b5 diff --git a/net/ipw/patches/patch-aa b/net/ipw/patches/patch-aa index 125354c7fbb..d10dee3107c 100644 --- a/net/ipw/patches/patch-aa +++ b/net/ipw/patches/patch-aa @@ -1,24 +1,13 @@ -$NetBSD: patch-aa,v 1.1.1.1 2001/03/28 07:41:59 zuntum Exp $ +$NetBSD: patch-aa,v 1.2 2001/06/13 14:37:32 zuntum Exp $ ---- Makefile.orig Fri Jan 29 13:15:44 1999 -+++ Makefile Fri Jan 29 13:16:24 1999 -@@ -1,7 +1,7 @@ +--- Makefile.orig Sat Jul 11 19:48:14 1998 ++++ Makefile +@@ -1,7 +1,5 @@ -CC = gcc -+# CC = gcc # CFLAGS = -Wall -Wmissing-prototypes -g # -O -CFLAGS = -Wall -Wmissing-prototypes -O -LDFLAGS = -+# CFLAGS = -Wall -Wmissing-prototypes -O -+# LDFLAGS = ++CFLAGS+= -Wall -Wmissing-prototypes # Use -lsocket -lnsl for Solaris #LIBS = -lsocket -lnsl -@@ -17,7 +17,7 @@ - $(CC) $(CFLAGS) -c ipw.c - - install: all -- cp $(PROGS) /usr/local/bin -+ $(BSD_INSTALL_PROGRAM) $(PROGS) $(PREFIX)/bin - - clean: - -rm -f *.o |