diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2006-01-09 02:07:54 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2006-01-09 02:07:54 +0000 |
commit | 2c2e0646ef63914766c6864163fd150899e323a6 (patch) | |
tree | 9bf599e5b424a0cc5eb3838b7b817725a02678ad /dev-tcltk | |
parent | Fixed fails with bash-3.1, Bug 116342. (diff) | |
download | historical-2c2e0646ef63914766c6864163fd150899e323a6.tar.gz historical-2c2e0646ef63914766c6864163fd150899e323a6.tar.bz2 historical-2c2e0646ef63914766c6864163fd150899e323a6.zip |
Fixed fails with bash-3.1.
Package-Manager: portage-2.0.53
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/itk/ChangeLog | 9 | ||||
-rw-r--r-- | dev-tcltk/itk/Manifest | 4 | ||||
-rw-r--r-- | dev-tcltk/itk/files/digest-itk-3.3-r1 | 1 | ||||
-rw-r--r-- | dev-tcltk/itk/itk-3.3-r1.ebuild | 35 |
4 files changed, 46 insertions, 3 deletions
diff --git a/dev-tcltk/itk/ChangeLog b/dev-tcltk/itk/ChangeLog index e6fed7d5e347..ff1f3d87904e 100644 --- a/dev-tcltk/itk/ChangeLog +++ b/dev-tcltk/itk/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-tcltk/itk -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/itk/ChangeLog,v 1.4 2005/12/29 19:16:30 blubb Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/itk/ChangeLog,v 1.5 2006/01/09 02:07:54 matsuu Exp $ + +*itk-3.3-r1 (09 Jan 2006) + + 09 Jan 2006; MATSUU Takuto <matsuu@gentoo.org> +itk-3.3-r1.ebuild: + Fixed fails with bash-3.1 29 Dec 2005; Simon Stelling <blubb@gentoo.org> itk-3.3.ebuild: stable on amd64 diff --git a/dev-tcltk/itk/Manifest b/dev-tcltk/itk/Manifest index 922741049404..b2b1c5f9ace9 100644 --- a/dev-tcltk/itk/Manifest +++ b/dev-tcltk/itk/Manifest @@ -1,4 +1,6 @@ -MD5 bcdb2e29bae4a739a621c14370d6b548 ChangeLog 834 +MD5 e9747718ec257d76232eefd238cc8efc ChangeLog 960 MD5 af7c69b54bd11d39937c736403e21fc6 files/digest-itk-3.3 58 +MD5 af7c69b54bd11d39937c736403e21fc6 files/digest-itk-3.3-r1 58 +MD5 4bd52b027411bec944553829604b14bf itk-3.3-r1.ebuild 851 MD5 b9f3b505cb8a309441c53481f80f2e41 itk-3.3.ebuild 749 MD5 43e377139ff5f3b7415b94a8c8d5260d metadata.xml 158 diff --git a/dev-tcltk/itk/files/digest-itk-3.3-r1 b/dev-tcltk/itk/files/digest-itk-3.3-r1 new file mode 100644 index 000000000000..09b2e1271aad --- /dev/null +++ b/dev-tcltk/itk/files/digest-itk-3.3-r1 @@ -0,0 +1 @@ +MD5 a97c17f3cfa5e377f43073c653c501b5 itk3.3.tar.gz 211722 diff --git a/dev-tcltk/itk/itk-3.3-r1.ebuild b/dev-tcltk/itk/itk-3.3-r1.ebuild new file mode 100644 index 000000000000..ce7feffc08d0 --- /dev/null +++ b/dev-tcltk/itk/itk-3.3-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/itk/itk-3.3-r1.ebuild,v 1.1 2006/01/09 02:07:54 matsuu Exp $ + +MY_P="${PN}${PV}" +DESCRIPTION="Object Oriented Enhancements for Tcl/Tk" +HOMEPAGE="http://incrtcl.sourceforge.net/" +SRC_URI="mirror://sourceforge/incrtcl/${MY_P}.tar.gz" + +IUSE="" +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~sparc ~x86" + +DEPEND="dev-lang/tk + ~dev-tcltk/itcl-${PV}" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i -e "s/relid'/relid/" configure tclconfig/tcl.m4 || die +} + +src_compile() { + econf || die "econf failed" + emake CFLAGS_DEFAULT="${CFLAGS}" || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc CHANGES ChangeLog INCOMPATIBLE README TODO +} |