diff options
author | garga <garga@FreeBSD.org> | 2017-06-29 18:55:30 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2017-06-29 18:55:30 +0800 |
commit | f3b12b9896db127629ddf5639a57f085e596fec7 (patch) | |
tree | ce46ecbaa5723c720aec6861a0a01b7ea62235c6 /irc | |
parent | 2d40f2f78a491326777aed5183d2c2fbf86e935f (diff) | |
download | freebsd-ports-gnome-f3b12b9896db127629ddf5639a57f085e596fec7.tar.gz freebsd-ports-gnome-f3b12b9896db127629ddf5639a57f085e596fec7.tar.zst freebsd-ports-gnome-f3b12b9896db127629ddf5639a57f085e596fec7.zip |
Add patches missed on last commit and fix build without python
Diffstat (limited to 'irc')
-rw-r--r-- | irc/bitlbee/Makefile | 2 | ||||
-rw-r--r-- | irc/bitlbee/files/patch-configure | 18 | ||||
-rw-r--r-- | irc/bitlbee/files/patch-doc_Makefile | 10 |
3 files changed, 29 insertions, 1 deletions
diff --git a/irc/bitlbee/Makefile b/irc/bitlbee/Makefile index c5a4d19bfd00..2f43a5f143ef 100644 --- a/irc/bitlbee/Makefile +++ b/irc/bitlbee/Makefile @@ -2,7 +2,7 @@ PORTNAME= bitlbee PORTVERSION= 3.5.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= irc MASTER_SITES= http://get.bitlbee.org/src/ \ LOCAL/brix diff --git a/irc/bitlbee/files/patch-configure b/irc/bitlbee/files/patch-configure new file mode 100644 index 000000000000..adc8931b7321 --- /dev/null +++ b/irc/bitlbee/files/patch-configure @@ -0,0 +1,18 @@ +--- configure.orig 2017-01-30 20:45:59 UTC ++++ configure +@@ -743,15 +743,7 @@ if [ -z "$PYTHON" ]; then + fi + + if [ "$doc" = "1" ]; then +- # check this here just in case someone tries to install it in python2.4... +- if ! $PYTHON -m xml.etree.ElementTree > /dev/null 2>&1; then +- echo +- echo 'ERROR: Python (>=2.5 or 3.x) is required to generate docs' +- echo "(Use the PYTHON environment variable if it's in a weird location)" +- exit 1 +- fi + echo "DOC=1" >> Makefile.settings +- echo "PYTHON=$PYTHON" >> Makefile.settings + fi + + get_version diff --git a/irc/bitlbee/files/patch-doc_Makefile b/irc/bitlbee/files/patch-doc_Makefile new file mode 100644 index 000000000000..f41a7cd49b59 --- /dev/null +++ b/irc/bitlbee/files/patch-doc_Makefile @@ -0,0 +1,10 @@ +--- doc/Makefile.orig 2017-01-30 20:45:59 UTC ++++ doc/Makefile +@@ -4,7 +4,6 @@ _SRCDIR_ := $(_SRCDIR_)doc/ + endif + + all: +- $(MAKE) -C user-guide + + install: + mkdir -p $(DESTDIR)$(MANDIR)/man8/ $(DESTDIR)$(MANDIR)/man5/ |