diff options
author | 2006-05-03 16:36:57 +0000 | |
---|---|---|
committer | 2006-05-03 16:36:57 +0000 | |
commit | fb3ebfd20178ee0521914265296f8d87569ef6c7 (patch) | |
tree | afa98e0317dd3ec001551443eba9283679844526 | |
parent | Fix for bug #132129. Add -r1, with a patch to work with .17, and make it dep... (diff) | |
download | historical-fb3ebfd20178ee0521914265296f8d87569ef6c7.tar.gz historical-fb3ebfd20178ee0521914265296f8d87569ef6c7.tar.bz2 historical-fb3ebfd20178ee0521914265296f8d87569ef6c7.zip |
- version bump and fixed bug with ebuild handling stripping directly
Package-Manager: portage-2203-svn
-rw-r--r-- | dev-tcltk/tclpython/ChangeLog | 10 | ||||
-rw-r--r-- | dev-tcltk/tclpython/Manifest | 16 | ||||
-rw-r--r-- | dev-tcltk/tclpython/files/digest-tclpython-4.1 | 1 | ||||
-rw-r--r-- | dev-tcltk/tclpython/tclpython-3.1.ebuild | 6 | ||||
-rw-r--r-- | dev-tcltk/tclpython/tclpython-4.1.ebuild | 33 |
5 files changed, 49 insertions, 17 deletions
diff --git a/dev-tcltk/tclpython/ChangeLog b/dev-tcltk/tclpython/ChangeLog index 5664d92e34e3..d430a2d867c4 100644 --- a/dev-tcltk/tclpython/ChangeLog +++ b/dev-tcltk/tclpython/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-tcltk/tclpython -# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/ChangeLog,v 1.6 2005/12/21 20:48:10 marienz Exp $ +# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/ChangeLog,v 1.7 2006/05/03 16:36:57 solar Exp $ + +*tclpython-4.1 (03 May 2006) + + 03 May 2006; <solar@gentoo.org> tclpython-3.1.ebuild, + +tclpython-4.1.ebuild: + - version bump and fixed bug with ebuild handling stripping directly 21 Dec 2005; Marien Zwart <marienz@gentoo.org> tclpython-3.1.ebuild: Correct homepage. diff --git a/dev-tcltk/tclpython/Manifest b/dev-tcltk/tclpython/Manifest index 4949c00df283..ddb41af532c5 100644 --- a/dev-tcltk/tclpython/Manifest +++ b/dev-tcltk/tclpython/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - -MD5 34cf6594598494ab8dbc0df6cf901900 ChangeLog 667 +MD5 7226d59665d30af93f7034576cdec1b9 ChangeLog 848 MD5 5c569f146cf737cefa30e7f583b306a2 files/digest-tclpython-3.1 63 +MD5 cf3550c80338c09bdcdb94bac67cf2fa files/digest-tclpython-4.1 65 MD5 dffd46174e78b327c834fc3e4b1cf848 metadata.xml 160 -MD5 7479f4178e443008771258f91b52f42d tclpython-3.1.ebuild 872 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFDqb+aW78445TWHXcRAjs5AKCM3zODOH1EAcN5aSlv3CIBci3zKACglb8d -D1PoS/RMLfmj0fP/x8sRaWA= -=IEJa ------END PGP SIGNATURE----- +MD5 32ac78125e4eafd3e2753d9ba729a937 tclpython-3.1.ebuild 867 +MD5 7319617463181a954170b272ce0f171b tclpython-4.1.ebuild 945 diff --git a/dev-tcltk/tclpython/files/digest-tclpython-4.1 b/dev-tcltk/tclpython/files/digest-tclpython-4.1 new file mode 100644 index 000000000000..8c26f8602226 --- /dev/null +++ b/dev-tcltk/tclpython/files/digest-tclpython-4.1 @@ -0,0 +1 @@ +MD5 3f4bd4000c35ccbf2152dde9fcb0efe4 tclpython-4.1.tar.bz2 10580 diff --git a/dev-tcltk/tclpython/tclpython-3.1.ebuild b/dev-tcltk/tclpython/tclpython-3.1.ebuild index e463e5f02763..b83a4252c2de 100644 --- a/dev-tcltk/tclpython/tclpython-3.1.ebuild +++ b/dev-tcltk/tclpython/tclpython-3.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/tclpython-3.1.ebuild,v 1.6 2005/12/21 20:48:10 marienz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/tclpython-3.1.ebuild,v 1.7 2006/05/03 16:36:57 solar Exp $ inherit distutils toolchain-funcs @@ -18,7 +18,7 @@ DEPEND=">=dev-lang/tcl-8.0 src_compile() { distutils_python_version - $(tc-getCC) -shared -o tclpython.so.${PV} -s -fPIC ${CFLAGS} -Wall -I/usr/include/python${PYVER} tclpython.c `python-config` -lpthread -lutil || die + $(tc-getCC) -shared -o tclpython.so.${PV} -fPIC ${CFLAGS} -Wall -I/usr/include/python${PYVER} tclpython.c `python-config` -lpthread -lutil || die } src_install() { diff --git a/dev-tcltk/tclpython/tclpython-4.1.ebuild b/dev-tcltk/tclpython/tclpython-4.1.ebuild new file mode 100644 index 000000000000..1e2e4df20440 --- /dev/null +++ b/dev-tcltk/tclpython/tclpython-4.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tclpython/tclpython-4.1.ebuild,v 1.1 2006/05/03 16:36:57 solar Exp $ + +inherit distutils toolchain-funcs + +DESCRIPTION="a Python package for Tcl" +HOMEPAGE="http://jfontain.free.fr/tclpython.htm" +SRC_URI="http://jfontain.free.fr/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND=">=dev-lang/tcl-8.0 + >=virtual/python-2.2" + +src_compile() { + distutils_python_version + $(tc-getCC) -shared -o tclpython.so.${PV} -fPIC ${CFLAGS} -Wall -I/usr/include/python${PYVER} tcl{python,thread}.c `python-config` -lpthread -lutil || die +} + +src_install() { + exeinto /usr/lib/tclpython + doexe tclpython.so.${PV} || die "lib" + doexe pkgIndex.tcl || die "tcl" + + dodoc CHANGES INSTALL README + dohtml tclpython.htm + cd ${D}/usr/lib/tclpython + ln -sf tclpython.so.${PV} tclpython.so +} |