diff options
author | Neel Chauhan <nc@FreeBSD.org> | 2021-03-15 17:38:14 +0000 |
---|---|---|
committer | Neel Chauhan <nc@FreeBSD.org> | 2021-03-15 17:38:14 +0000 |
commit | 10cd35070489725bf0500e8389414e64668a156d (patch) | |
tree | 6ca8412d48a718cbc75956e1124c8e00c3115da5 /irc/irssi/files/patch-perl-Makefile | |
parent | security/py-pycryptodome: Update to 3.10.1 (diff) |
irc/irssi: Revert to 1.2.2
The reason for the revert is complaints on IRC and questions to the maintainer
via email.
This commit:
- Restores the port to what it was before 1.3
- Bumps PORTEPOCH and PORTREVISION to 2
- These were both at 1 on the previous 1.2.2 package
- Fixes a minor issue when compiling with OTR (--with-otr being passed twice)
- Includes a patch for a glib related issue where pushing ctrl+space could break the client
This commit brings the port back inline with the current release version of
irssi as advertised on their download page (1.2.2 client + glib patch).
PR: 254237
Submitted by: David O'Rourke <dor.bsd@xm0.uk> (maintainer)
Diffstat (limited to 'irc/irssi/files/patch-perl-Makefile')
-rw-r--r-- | irc/irssi/files/patch-perl-Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/irc/irssi/files/patch-perl-Makefile b/irc/irssi/files/patch-perl-Makefile new file mode 100644 index 000000000000..7979e1cd5451 --- /dev/null +++ b/irc/irssi/files/patch-perl-Makefile @@ -0,0 +1,22 @@ +--- src/perl/Makefile.am.orig 2019-02-11 17:27:58 UTC ++++ src/perl/Makefile.am +@@ -145,7 +145,7 @@ all-local: + + install-exec-local: + for dir in $(perl_dirs); do \ +- cd $$dir && $(MAKE) install && cd ..; \ ++ cd $$dir && $(MAKE) pure_install && cd ..; \ + done + + clean-generic: +--- src/perl/Makefile.in.orig 2019-02-11 17:35:32 UTC ++++ src/perl/Makefile.in +@@ -898,7 +898,7 @@ all-local: + + install-exec-local: + for dir in $(perl_dirs); do \ +- cd $$dir && $(MAKE) install && cd ..; \ ++ cd $$dir && $(MAKE) pure_install && cd ..; \ + done + + clean-generic: |