diff options
author | Caleb Tennis <caleb@gentoo.org> | 2006-10-16 14:13:40 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2006-10-16 14:13:40 +0000 |
commit | 2c99b5f888c3d1ce7e1171841d326198519bc207 (patch) | |
tree | 1de402ee077464aa9c3772554588a0d800fb4c8b /dev-python/IcePy/files | |
parent | Add me as maintainer and commit kernel/userland ABI patch from bug 133382 tha... (diff) | |
download | gentoo-2-2c99b5f888c3d1ce7e1171841d326198519bc207.tar.gz gentoo-2-2c99b5f888c3d1ce7e1171841d326198519bc207.tar.bz2 gentoo-2-2c99b5f888c3d1ce7e1171841d326198519bc207.zip |
version bump
(Portage version: 2.1.2_pre2-r9)
Diffstat (limited to 'dev-python/IcePy/files')
-rw-r--r-- | dev-python/IcePy/files/digest-IcePy-3.1.1 | 3 | ||||
-rw-r--r-- | dev-python/IcePy/files/icepy-3.1.1-makefile.patch | 74 |
2 files changed, 77 insertions, 0 deletions
diff --git a/dev-python/IcePy/files/digest-IcePy-3.1.1 b/dev-python/IcePy/files/digest-IcePy-3.1.1 new file mode 100644 index 000000000000..7a14bdeb7b3a --- /dev/null +++ b/dev-python/IcePy/files/digest-IcePy-3.1.1 @@ -0,0 +1,3 @@ +MD5 96023adfb1449fd633d57e4dc1d5a876 IcePy-3.1.1.tar.gz 399743 +RMD160 d0bf996b20bacc563e60766047224e2f55c42b05 IcePy-3.1.1.tar.gz 399743 +SHA256 e0e104f4bfc19d97ed9ab11e34a7365055a6cb9a7f8aa0d95b60bd469285c20b IcePy-3.1.1.tar.gz 399743 diff --git a/dev-python/IcePy/files/icepy-3.1.1-makefile.patch b/dev-python/IcePy/files/icepy-3.1.1-makefile.patch new file mode 100644 index 000000000000..350470860f8e --- /dev/null +++ b/dev-python/IcePy/files/icepy-3.1.1-makefile.patch @@ -0,0 +1,74 @@ +--- config/Make.rules.orig 2006-10-16 09:46:19.000000000 -0400 ++++ config/Make.rules 2006-10-16 09:49:52.000000000 -0400 +@@ -16,13 +16,13 @@ + # 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. +@@ -127,7 +127,7 @@ + ifeq ($(shell test -d $(top_srcdir)/slice && echo 0),0) + slicedir = $(top_srcdir)/slice + else +- slicedir = $(ICE_HOME)/slice ++ slicedir = $(prefix)/share/icepy-$(VERSION)/slice + endif + + ifeq ($(LP64),yes) +@@ -135,9 +135,9 @@ + # TODO: Where should the shared library be installed if it is a 64 bit + # build. + # +- install_libdir = $(prefix)/python ++ install_libdir = $(prefix)/lib$(lp64suffix) + else +- install_libdir = $(prefix)/python ++ install_libdir = $(prefix)/lib + endif + + ifeq ($(LP64),yes) +@@ -203,7 +203,7 @@ + endif + + ifeq ($(mkdir),) +- mkdir = mkdir $(1) ; \ ++ mkdir = mkdir -p $(1) ; \ + chmod a+rx $(1) + endif + +--- Makefile.orig 2006-10-16 09:50:17.000000000 -0400 ++++ Makefile 2006-10-16 09:50:49.000000000 -0400 +@@ -69,8 +69,8 @@ + fi + + install:: +- $(call installdata,ICE_LICENSE,$(prefix)) +- $(call installdata,LICENSE,$(prefix)) ++ $(call installdata,ICE_LICENSE,$(install_slicedir)) ++ $(call installdata,LICENSE,$(install_slicedir)) + + test:: + @python $(top_srcdir)/allTests.py +--- config/Make.rules.orig 2006-10-16 10:02:00.000000000 -0400 ++++ config/Make.rules 2006-10-16 10:04:04.000000000 -0400 +@@ -96,8 +96,8 @@ + SOVERSION = $(VERSION_MAJOR)$(VERSION_MINOR) + 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} |