mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 08:40:39 -04:00
Changes from [*]: - Update Ice to 3.5.1. - Stageify all three ports. - Convert py-ice and php5-ice to slave ports. - Use ICONV_LIB, so it builds ok with native iconv [1]. - Workaround for FreeBSD 10's static destructor order disaster [2]. - Install man pages. - Allow package build for non-root users. [1] http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/using-iconv.html [2] http://lists.freebsd.org/pipermail/freebsd-ports/2013-June/084580.html Changes from [3]: - Convert LIB_DEPENDS to new syntax. - USE_GMAKE -> USES - list Berkeley DB 6 invalid, requires upstream changes, but upstream is loathe to make those due to licensing change in BDB - remove BDB 2 and 3 from invalid listing, we no longer have these ports PR: ports/184453 [*] PR: ports/185569 [3] Submitted by: Michael Gmelin (maintainer) [*] Submitted by: mandree [3] Approved by: Michael Gmelin (maintainer) [3]
16 lines
660 B
Text
16 lines
660 B
Text
--- py/python/Makefile.orig 2010-07-11 13:05:38.000000000 +1000
|
|
+++ py/python/Makefile 2012-09-11 00:09:09.000000000 +2000
|
|
@@ -118,10 +118,11 @@
|
|
|
|
install:: $(ALL_SRCS)
|
|
@echo "Installing generated code"
|
|
- $(INSTALL_DATA) *.py $(DESTDIR)$(install_pythondir)
|
|
+ $(INSTALL_DATA) *.py* $(DESTDIR)$(install_pythondir)
|
|
@for i in $(PACKAGES) ; \
|
|
do \
|
|
- $(INSTALL_DATA) -r $$i $(DESTDIR)$(install_pythondir) ; \
|
|
+ mkdir -p $(DESTDIR)$(install_pythondir)/$$i ; \
|
|
+ $(INSTALL_DATA) $$i/*.py* $(DESTDIR)$(install_pythondir)/$$i ; \
|
|
done
|
|
|
|
depend:: $(ICE_SLICE) $(GLACIER2_SLICE) $(ICEBOX_SLICE) $(ICEGRID_SLICE) $(ICEPATCH2_SLICE) $(ICESTORM_SLICE)
|