diff options
author | Caleb Tennis <caleb@gentoo.org> | 2007-07-20 19:07:01 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2007-07-20 19:07:01 +0000 |
commit | f537bfa67f9a504ba3b173b97cc80b4307aae6be (patch) | |
tree | 9e997955eaaa73e5d09c4272a09357626ec8a088 /dev-python/IcePy/files | |
parent | Remove generation 1 ebuild. (diff) | |
download | historical-f537bfa67f9a504ba3b173b97cc80b4307aae6be.tar.gz historical-f537bfa67f9a504ba3b173b97cc80b4307aae6be.tar.bz2 historical-f537bfa67f9a504ba3b173b97cc80b4307aae6be.zip |
version bump from Sam Jacobson (#185972)
Package-Manager: portage-2.1.2.7
Diffstat (limited to 'dev-python/IcePy/files')
-rw-r--r-- | dev-python/IcePy/files/digest-IcePy-3.2.0 | 3 | ||||
-rw-r--r-- | dev-python/IcePy/files/icepy-3.2.0-makefile.patch | 112 |
2 files changed, 115 insertions, 0 deletions
diff --git a/dev-python/IcePy/files/digest-IcePy-3.2.0 b/dev-python/IcePy/files/digest-IcePy-3.2.0 new file mode 100644 index 000000000000..a2c74e03bf9a --- /dev/null +++ b/dev-python/IcePy/files/digest-IcePy-3.2.0 @@ -0,0 +1,3 @@ +MD5 e3ccb5040449c73c5da380b62fefa7cd IcePy-3.2.0.tar.gz 169214 +RMD160 e61b0c79c019232099263831239dc0e44190c0b6 IcePy-3.2.0.tar.gz 169214 +SHA256 236cebc50b27552099fc2c1004baf4b908be04ce402c7a4541a17de115a76bf5 IcePy-3.2.0.tar.gz 169214 diff --git a/dev-python/IcePy/files/icepy-3.2.0-makefile.patch b/dev-python/IcePy/files/icepy-3.2.0-makefile.patch new file mode 100644 index 000000000000..65827e45505e --- /dev/null +++ b/dev-python/IcePy/files/icepy-3.2.0-makefile.patch @@ -0,0 +1,112 @@ +diff -rU5 IcePy-3.2.0-orig/Makefile IcePy-3.2.0/Makefile +--- IcePy-3.2.0-orig/Makefile 2007-03-02 08:11:25.000000000 +1300 ++++ IcePy-3.2.0/Makefile 2007-07-20 22:54:53.000000000 +1200 +@@ -38,10 +38,11 @@ + echo "making $@ in $$subdir"; \ + ( cd $$subdir && $(MAKE) $@ ) || exit 1; \ + done + + install:: +- $(call installdata,ICE_LICENSE,$(prefix)) +- $(call installdata,LICENSE,$(prefix)) ++ mkdir -p $(install_slicedir) ++ $(call installdata,ICE_LICENSE,$(install_slicedir)) ++ $(call installdata,LICENSE,$(install_slicedir)) + + test:: + @python $(top_srcdir)/allTests.py +diff -rU5 IcePy-3.2.0-orig/config/Make.rules IcePy-3.2.0/config/Make.rules +--- IcePy-3.2.0-orig/config/Make.rules 2007-03-02 08:11:25.000000000 +1300 ++++ IcePy-3.2.0/config/Make.rules 2007-07-20 22:46:28.000000000 +1200 +@@ -16,17 +16,17 @@ + # + # Select an installation base directory. The directory will be created + # if it does not exist. + # + +-prefix = /opt/IcePy-$(VERSION) ++prefix = $(DESTDIR)/usr + + # + # The "root directory" for runpath embedded in executables. Can be unset + # to avoid adding a runpath to Ice executables. + # +-embedded_runpath_prefix ?= /opt/Ice-$(VERSION_MAJOR).$(VERSION_MINOR) ++#embedded_runpath_prefix ?= /opt/Ice-$(VERSION_MAJOR).$(VERSION_MINOR) + + # + # Define OPTIMIZE as yes if you want to build with optimization. + # Otherwise the Ice extension is built with debug information. + # +@@ -99,12 +99,12 @@ + VERSION_MINOR = 2 + VERSION = 3.2.0 + SOVERSION = 32 + libdir = $(top_srcdir)/python + +-install_slicedir = $(prefix)/slice +-install_pythondir = $(prefix)/python ++install_slicedir = $(prefix)/share/icepy-$(VERSION)/slice ++install_pythondir = $(prefix)/lib/$(PYTHON_VERSION)/site-packages + + INSTALL = cp -fp + INSTALL_PROGRAM = ${INSTALL} + INSTALL_LIBRARY = ${INSTALL} + INSTALL_DATA = ${INSTALL} +@@ -136,22 +136,22 @@ + endif + + ifneq ($(ICE_HOME),) + slicedir = $(ICE_HOME)/slice + else +- slicedir = /usr/share/Ice-$(VERSION)/slice ++ slicedir = /usr/share/Ice/slice + endif + +-install_libdir = $(prefix)/python ++install_libdir = $(prefix)/lib + +-ifneq ($(embedded_runpath_prefix),) +- ifeq ($(LP64),yes) +- runpath_libdir := $(embedded_runpath_prefix)/lib$(lp64suffix) +- else +- runpath_libdir := $(embedded_runpath_prefix)/lib +- endif +-endif ++#ifneq ($(embedded_runpath_prefix),) ++# ifeq ($(LP64),yes) ++# runpath_libdir := $(embedded_runpath_prefix)/lib$(lp64suffix) ++# else ++# runpath_libdir := $(embedded_runpath_prefix)/lib ++# endif ++#endif + + CPPFLAGS = + ICECPPFLAGS = -I$(slicedir) + SLICE2PYFLAGS = $(ICECPPFLAGS) + +@@ -198,11 +198,11 @@ + installprogram = $(INSTALL_PROGRAM) $(1) $(2); \ + chmod a+rx $(2)/$(notdir $(1)) + endif + + ifeq ($(mkdir),) +- mkdir = mkdir $(1) ; \ ++ mkdir = mkdir -p $(1) ; \ + chmod a+rx $(1) + endif + + # + # A Python extension library cannot have a "lib" prefix, so Python-specific +diff -rU5 IcePy-3.2.0-orig/modules/IcePy/Makefile IcePy-3.2.0/modules/IcePy/Makefile +--- IcePy-3.2.0-orig/modules/IcePy/Makefile 2007-01-09 08:25:09.000000000 +1300 ++++ IcePy-3.2.0/modules/IcePy/Makefile 2007-07-20 23:03:25.000000000 +1200 +@@ -51,7 +51,8 @@ + rm -f $@ + ln -s $(SONAME) $@ + + install:: all + $(call installlib,$(install_libdir),$(libdir),$(LIBFILENAME),$(SONAME),$(LIBNAME)) ++ ln -s $(install_libdir)/$(SONAME) $(install_pythondir)/$(LIBNAME) + + include .depend |