diff options
author | sbd <sbd@pkgsrc.org> | 2011-12-17 10:15:24 +0000 |
---|---|---|
committer | sbd <sbd@pkgsrc.org> | 2011-12-17 10:15:24 +0000 |
commit | a469c057f4d6bacbe652331846e0eca40e8b5e11 (patch) | |
tree | 70b7c90166e56a71cae6ddcf09479c8d5290af51 /editors | |
parent | 133a864f2b2b2ac846b810a518fed1f8d47422e5 (diff) | |
download | pkgsrc-a469c057f4d6bacbe652331846e0eca40e8b5e11.tar.gz |
Add missing mk/termcap buildlink.
Respect LDFLAGS
Bump PKGREVISION
Diffstat (limited to 'editors')
-rw-r--r-- | editors/gate/Makefile | 4 | ||||
-rw-r--r-- | editors/gate/distinfo | 3 | ||||
-rw-r--r-- | editors/gate/patches/patch-Makefile.in | 13 |
3 files changed, 18 insertions, 2 deletions
diff --git a/editors/gate/Makefile b/editors/gate/Makefile index d1fe6c4770a..892f833182a 100644 --- a/editors/gate/Makefile +++ b/editors/gate/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.3 2011/10/02 22:55:25 dholland Exp $ +# $NetBSD: Makefile,v 1.4 2011/12/17 10:15:24 sbd Exp $ # DISTNAME= gate-2.06 +PKGREVISION= 1 CATEGORIES= editors MASTER_SITES= http://www.unixpapa.com/software/ @@ -23,4 +24,5 @@ SUBST_MESSAGE.getline= Fixing conflict with POSIX getline. SUBST_FILES.getline= gate.h line.c main.c spel.c subs.c SUBST_SED.getline= -e 's/getline/get_line/' +.include "../../mk/termcap.buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/editors/gate/distinfo b/editors/gate/distinfo index 86efd6cfeca..d83eb63aa6c 100644 --- a/editors/gate/distinfo +++ b/editors/gate/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.2 2005/12/09 14:33:34 joerg Exp $ +$NetBSD: distinfo,v 1.3 2011/12/17 10:15:24 sbd Exp $ SHA1 (gate-2.06.tar.gz) = f6935bfc410550e52725db7c1859e6ed9f6ea9e7 RMD160 (gate-2.06.tar.gz) = 3b1fb285dbeccf7dd09504f4596d8e7387b14c8a Size (gate-2.06.tar.gz) = 58677 bytes +SHA1 (patch-Makefile.in) = 2f62b8968e9b22916e6449537b3cd1b857e37c35 SHA1 (patch-aa) = fb2074f4f3b8bf86ba9c25b46b50d6e259804f45 diff --git a/editors/gate/patches/patch-Makefile.in b/editors/gate/patches/patch-Makefile.in new file mode 100644 index 00000000000..0f505ef0cf3 --- /dev/null +++ b/editors/gate/patches/patch-Makefile.in @@ -0,0 +1,13 @@ +$NetBSD: patch-Makefile.in,v 1.1 2011/12/17 10:15:24 sbd Exp $ + +--- Makefile.in.orig 2011-12-07 18:58:54.029182514 +0000 ++++ Makefile.in +@@ -25,7 +25,7 @@ DIST= README $(SRCS) gate.h config.h.in + Makefile.in gate.1.C gate.help CHANGES + + gate: $(OBJS) +- $(CC) -o gate $(CFLAGS) $(OBJS) $(LIBS) ++ $(CC) -o gate $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) + + main.o: main.c gate.h config.h + util.o: util.c gate.h config.h |