mirror of
https://git.freebsd.org/ports.git
synced 2025-06-16 10:10:31 -04:00
Change maintainer email Sort plist while I'm here PR: ports/151829 Submitted by: Denis Shaposhnikov (maintainer)
44 lines
1.5 KiB
Text
44 lines
1.5 KiB
Text
--- src/Makefile.in.orig 2010-10-26 17:30:57.000000000 +0200
|
|
+++ src/Makefile.in 2010-10-30 13:13:42.000000000 +0200
|
|
@@ -239,12 +239,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/xmpp/*.py \
|
|
+ $(srcdir)/common/xmpp/*.pyc \
|
|
+ $(srcdir)/common/xmpp/*.pyo \
|
|
$(srcdir)/common/zeroconf/*.py \
|
|
+ $(srcdir)/common/zeroconf/*.pyc \
|
|
+ $(srcdir)/common/zeroconf/*.pyo \
|
|
$(srcdir)/command_system/*.py \
|
|
- $(srcdir)/command_system/implementation/*.py
|
|
+ $(srcdir)/command_system/*.pyc \
|
|
+ $(srcdir)/command_system/*.pyo \
|
|
+ $(srcdir)/command_system/implementation/*.py \
|
|
+ $(srcdir)/command_system/implementation/*.pyc \
|
|
+ $(srcdir)/command_system/implementation/*.pyo
|
|
|
|
MAINTAINERCLEANFILES = Makefile.in
|
|
all: all-am
|
|
@@ -301,13 +315,6 @@
|
|
$(MKDIR_P) "$(DESTDIR)$(gajimsrcdir)/$$dir"; }; \
|
|
echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(gajimsrcdir)/$$dir'"; \
|
|
$(INSTALL_DATA) $$xfiles "$(DESTDIR)$(gajimsrcdir)/$$dir" || exit $$?; }; \
|
|
- if test -n "$$dlist"; then \
|
|
- if test -z "$(DESTDIR)"; then \
|
|
- PYTHON=$(PYTHON) $(py_compile) --basedir "$(gajimsrcdir)" $$dlist; \
|
|
- else \
|
|
- PYTHON=$(PYTHON) $(py_compile) --destdir "$(DESTDIR)" --basedir "$(gajimsrcdir)" $$dlist; \
|
|
- fi; \
|
|
- else :; fi \
|
|
done
|
|
|
|
uninstall-nobase_dist_gajimsrcPYTHON:
|