diff options
author | wiz <wiz@pkgsrc.org> | 2001-11-27 16:10:10 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-11-27 16:10:10 +0000 |
commit | a698fe06785512e5ce77c7772085943db287603d (patch) | |
tree | cb8316148b6507e780b734df4dfe940f564673ff /chat | |
parent | 8f25bdec92a5c7f8c58433a2336d23d756260be1 (diff) | |
download | pkgsrc-a698fe06785512e5ce77c7772085943db287603d.tar.gz |
We don't want -L/some/path as Makefile dependency. Fixes pkg/14564, though
differently than suggested.
Don't let package look in LOCALBASE for curses (especially if
USE_BUILDLINK_ONLY is set, and ncurses buildlink.mk is already included...).
Diffstat (limited to 'chat')
-rw-r--r-- | chat/irssi/Makefile | 4 | ||||
-rw-r--r-- | chat/irssi/distinfo | 4 | ||||
-rw-r--r-- | chat/irssi/patches/patch-ac | 13 | ||||
-rw-r--r-- | chat/irssi/patches/patch-ad | 12 |
4 files changed, 30 insertions, 3 deletions
diff --git a/chat/irssi/Makefile b/chat/irssi/Makefile index eeb457cddf4..a567b2e2839 100644 --- a/chat/irssi/Makefile +++ b/chat/irssi/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/10/21 03:40:21 hubertf Exp $ +# $NetBSD: Makefile,v 1.4 2001/11/27 16:10:10 wiz Exp $ DISTNAME= irssi-0.7.98.4 PKGNAME= ${DISTNAME}nb1 @@ -12,7 +12,7 @@ COMMENT= Secure and modular IRC client with text mode user interf GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-perl=no \ - --with-ncurses=${LOCALBASE} + --with-ncurses=${BUILDLINK_DIR} USE_BUILDLINK_ONLY= yes USE_CONFIG_WRAPPER= yes diff --git a/chat/irssi/distinfo b/chat/irssi/distinfo index 5372d4c56d4..53316b7c395 100644 --- a/chat/irssi/distinfo +++ b/chat/irssi/distinfo @@ -1,6 +1,8 @@ -$NetBSD: distinfo,v 1.1.1.1 2001/09/16 16:14:09 hubertf Exp $ +$NetBSD: distinfo,v 1.2 2001/11/27 16:10:10 wiz Exp $ SHA1 (irssi-0.7.98.4.tar.gz) = 6d3b6524c3f69c88de02edc2d8efd9c958d8e293 Size (irssi-0.7.98.4.tar.gz) = 852619 bytes SHA1 (patch-aa) = 57d67436f1928b34f1cafec4c91583ae2e82beb2 SHA1 (patch-ab) = 32f124bccb9096ef98cc217cdc9e0da138bd4565 +SHA1 (patch-ac) = 7029603478a06615426e9b933f41c5a0a3fa181a +SHA1 (patch-ad) = 59f4746ef23e116c4d2a6ab15c391d6e98ec6fd4 diff --git a/chat/irssi/patches/patch-ac b/chat/irssi/patches/patch-ac new file mode 100644 index 00000000000..0389df57084 --- /dev/null +++ b/chat/irssi/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2001/11/27 16:10:10 wiz Exp $ + +--- src/fe-text/Makefile.am.orig Mon Feb 19 07:23:03 2001 ++++ src/fe-text/Makefile.am +@@ -10,8 +10,6 @@ + $(CURSES_INCLUDEDIR) \ + -DLOCALEDIR=\""$(datadir)/locale"\" + +-irssi_DEPENDENCIES = @COMMON_LIBS@ +- + irssi_LDADD = \ + @COMMON_LIBS@ \ + @PERL_LINK_LIBS@ \ diff --git a/chat/irssi/patches/patch-ad b/chat/irssi/patches/patch-ad new file mode 100644 index 00000000000..5014b94562d --- /dev/null +++ b/chat/irssi/patches/patch-ad @@ -0,0 +1,12 @@ +$NetBSD: patch-ad,v 1.1 2001/11/27 16:10:10 wiz Exp $ + +--- src/fe-text/Makefile.in.orig Sun Mar 18 14:34:53 2001 ++++ src/fe-text/Makefile.in +@@ -121,7 +121,6 @@ + INCLUDES = $(GLIB_CFLAGS) -I$(top_srcdir)/src -I$(top_srcdir)/src/core/ -I$(top_srcdir)/src/irc/core/ -I$(top_srcdir)/src/fe-common/core/ -I$(top_srcdir)/src/fe-common/irc/ $(CURSES_INCLUDEDIR) -DLOCALEDIR=\""$(datadir)/locale"\" + + +-irssi_DEPENDENCIES = @COMMON_LIBS@ + + irssi_LDADD = @COMMON_LIBS@ @PERL_LINK_LIBS@ @PERL_FE_LINK_LIBS@ $(PROG_LIBS) $(CURSES_LIBS) + |