aboutsummaryrefslogtreecommitdiffstats
path: root/irc/irssi/files
diff options
context:
space:
mode:
authorvanilla <vanilla@FreeBSD.org>2001-04-27 00:57:09 +0800
committervanilla <vanilla@FreeBSD.org>2001-04-27 00:57:09 +0800
commitfe65cd99d34af270727dd6d37406f5a24edc355a (patch)
tree3b0c6f1ad46f2dd943c38474397c35e294365846 /irc/irssi/files
parentad70f55c523c73af8b3e043fb6b5e6c535972d73 (diff)
downloadfreebsd-ports-gnome-fe65cd99d34af270727dd6d37406f5a24edc355a.tar.gz
freebsd-ports-gnome-fe65cd99d34af270727dd6d37406f5a24edc355a.tar.zst
freebsd-ports-gnome-fe65cd99d34af270727dd6d37406f5a24edc355a.zip
Fix perl module's path, and bump version.
Diffstat (limited to 'irc/irssi/files')
-rw-r--r--irc/irssi/files/patch-src_perl_Makefile.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/irc/irssi/files/patch-src_perl_Makefile.in b/irc/irssi/files/patch-src_perl_Makefile.in
new file mode 100644
index 000000000000..1d45946c5098
--- /dev/null
+++ b/irc/irssi/files/patch-src_perl_Makefile.in
@@ -0,0 +1,11 @@
+--- src/perl/Makefile.in.orig Thu Apr 26 10:31:06 2001
++++ src/perl/Makefile.in Thu Apr 26 10:32:04 2001
+@@ -473,7 +473,7 @@
+ cat $(top_srcdir)/docs/signals.txt | $(perlpath) $(srcdir)/get-signals.pl > perl-signals-list.h
+
+ all-local:
+- for dir in common irc; do cd $$dir && if [ ! -f Makefile ]; then if [ "x$(PERL_LIB_DIR)" = "x" ]; then $(perlpath) Makefile.PL; else $(perlpath) Makefile.PL LIB=$(PERL_LIB_DIR) PREFIX=$(PERL_LIB_DIR); fi; fi && ($(MAKE) || $(MAKE)) && cd ..; done
++ for dir in common irc; do cd $$dir && if [ ! -f Makefile ]; then if [ "x$(PERL_LIB_DIR)" = "x" ]; then $(perlpath) Makefile.PL; else $(perlpath) Makefile.PL ; fi; fi && ($(MAKE) || $(MAKE)) && cd ..; done
+
+ install-exec-local:
+ for dir in common irc; do cd $$dir && $(MAKE) install && cd ..; done