diff options
author | sbd <sbd@pkgsrc.org> | 2011-12-17 10:14:52 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2011-12-17 10:14:52 +0000 |
commit | 104d7e5c328e5d1ce3442fca2c6fc3cab7637356 (patch) | |
tree | c62f2df2e7f20dfbad7f5fbe8394f3cc71364e53 /chat/xaric | |
parent | d773aa5d7a7b1e20ec9b6b1aad236475b5d6a6fa (diff) | |
download | pkgsrc-104d7e5c328e5d1ce3442fca2c6fc3cab7637356.tar.gz |
Add missing mk/termcap buildlink.
Respect LDFLAGS
Bump PKGREVISION
Diffstat (limited to 'chat/xaric')
-rw-r--r-- | chat/xaric/Makefile | 5 | ||||
-rw-r--r-- | chat/xaric/distinfo | 3 | ||||
-rw-r--r-- | chat/xaric/patches/patch-Makefile.in | 13 |
3 files changed, 18 insertions, 3 deletions
diff --git a/chat/xaric/Makefile b/chat/xaric/Makefile index ebbcd0503e1..a515db3dc41 100644 --- a/chat/xaric/Makefile +++ b/chat/xaric/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.18 2011/03/30 21:56:32 joerg Exp $ +# $NetBSD: Makefile,v 1.19 2011/12/17 10:14:52 sbd Exp $ # DISTNAME= xaric-0.12.1 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= chat MASTER_SITES= http://rexfeany.com/software/xaric/releases/ @@ -21,4 +21,5 @@ CONFIGURE_ARGS+= --enable-optimize INSTALL_MAKE_FLAGS+= prefix=${DESTDIR}${PREFIX} \ mandir=${DESTDIR}${PREFIX}/${PKGMANDIR} +.include "../../mk/termcap.buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/chat/xaric/distinfo b/chat/xaric/distinfo index 5a55c555027..8935be0c427 100644 --- a/chat/xaric/distinfo +++ b/chat/xaric/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.5 2006/06/09 15:31:29 minskim Exp $ +$NetBSD: distinfo,v 1.6 2011/12/17 10:14:52 sbd Exp $ SHA1 (xaric-0.12.1.tar.gz) = d01fc8d8189e18f3824cdccb539a97c1862ecdbe RMD160 (xaric-0.12.1.tar.gz) = b78cd4496510642a967b1d173e150d3cbe836b5c Size (xaric-0.12.1.tar.gz) = 435998 bytes +SHA1 (patch-Makefile.in) = 48dbe2a994c7192bebbf47847380692a35e91f29 SHA1 (patch-aa) = 25948e1723987bf93f713895d6f8ac5d23a1e404 SHA1 (patch-ab) = 33e89f44a22ed2ad3b14546e9f669013eb503ddd diff --git a/chat/xaric/patches/patch-Makefile.in b/chat/xaric/patches/patch-Makefile.in new file mode 100644 index 00000000000..0a48efa3e7b --- /dev/null +++ b/chat/xaric/patches/patch-Makefile.in @@ -0,0 +1,13 @@ +$NetBSD: patch-Makefile.in,v 1.1 2011/12/17 10:14:52 sbd Exp $ + +--- Makefile.in.orig 2001-11-24 08:07:57.000000000 +0000 ++++ Makefile.in +@@ -69,7 +69,7 @@ OBJS += $(SRCS:.c=.o) + + # Build xaric! + xaric: Makefile $(AUTOHDR) $(OBJS) +- $(CC) -o xaric $(CFLAGS) $(OBJS) $(LIBS) ++ $(CC) -o xaric $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) + + # generate array indexes automagicly + include/fset_gen.h: source/fset.c |