mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
- update to 0.16 - add LICENSE_FILE - add dependency on net-im/py-nbxmpp - remove local patch for host/nslookup issue - the proper solution was implemented upstream - remove dirrms from pkg-plist Changelog: https://bugs.launchpad.net/ubuntu/+source/gajim/+bug/1377589 - cherrypicking changes from ports/188651 [1]: - sort knobs - add missing GUPNP option description - explicitly define intltool dependency - beautify commandline in pre-build target - add pkg-message with crypto plugins information PR: 188651 Submitted by: nemysis [1]
43 lines
1.4 KiB
Text
43 lines
1.4 KiB
Text
--- src/Makefile.in.orig 2014-10-04 21:38:15 UTC
|
|
+++ src/Makefile.in
|
|
@@ -314,12 +314,26 @@
|
|
gajimsrcdir = $(gajim_srcdir)
|
|
nobase_dist_gajimsrc_PYTHON = \
|
|
$(srcdir)/*.py \
|
|
+ $(srcdir)/*.pyc \
|
|
+ $(srcdir)/*.pyo \
|
|
$(srcdir)/common/*.py \
|
|
+ $(srcdir)/common/*.pyc \
|
|
+ $(srcdir)/common/*.pyo \
|
|
$(srcdir)/common/protocol/*.py \
|
|
+ $(srcdir)/common/protocol/*.pyc \
|
|
+ $(srcdir)/common/protocol/*.pyo \
|
|
$(srcdir)/common/zeroconf/*.py \
|
|
+ $(srcdir)/common/zeroconf/*.pyc \
|
|
+ $(srcdir)/common/zeroconf/*.pyo \
|
|
$(srcdir)/command_system/*.py \
|
|
+ $(srcdir)/command_system/*.pyc \
|
|
+ $(srcdir)/command_system/*.pyo \
|
|
$(srcdir)/command_system/implementation/*.py \
|
|
- $(srcdir)/plugins/*.py
|
|
+ $(srcdir)/command_system/implementation/*.pyc \
|
|
+ $(srcdir)/command_system/implementation/*.pyo \
|
|
+ $(srcdir)/plugins/*.py \
|
|
+ $(srcdir)/plugins/*.pyc \
|
|
+ $(srcdir)/plugins/*.pyo
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
all: all-am
|
|
@@ -379,11 +393,7 @@
|
|
$(MKDIR_P) "$(DESTDIR)$(gajimsrcdir)/$$dir"; }; \
|
|
echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(gajimsrcdir)/$$dir'"; \
|
|
$(INSTALL_DATA) $$xfiles "$(DESTDIR)$(gajimsrcdir)/$$dir" || exit $$?; }; \
|
|
- done; \
|
|
- if test -n "$$dlist"; then \
|
|
- $(am__py_compile) --destdir "$(DESTDIR)" \
|
|
- --basedir "$(gajimsrcdir)" $$dlist; \
|
|
- else :; fi; }
|
|
+ done; }
|
|
|
|
uninstall-nobase_dist_gajimsrcPYTHON:
|
|
@$(NORMAL_UNINSTALL)
|