diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2006-09-24 06:27:36 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2006-09-24 06:27:36 +0000 |
commit | 102c49dc3afe1d4ac7e442c826c3f95de07889ce (patch) | |
tree | 0bc9b86a7cc065dc229b304e363306e7d6286aef /dev-tcltk/tix/tix-8.4.0.ebuild | |
parent | version bump (diff) | |
download | historical-102c49dc3afe1d4ac7e442c826c3f95de07889ce.tar.gz historical-102c49dc3afe1d4ac7e442c826c3f95de07889ce.tar.bz2 historical-102c49dc3afe1d4ac7e442c826c3f95de07889ce.zip |
Version bumped.
Package-Manager: portage-2.1.1
Diffstat (limited to 'dev-tcltk/tix/tix-8.4.0.ebuild')
-rw-r--r-- | dev-tcltk/tix/tix-8.4.0.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-tcltk/tix/tix-8.4.0.ebuild b/dev-tcltk/tix/tix-8.4.0.ebuild new file mode 100644 index 000000000000..2d326d79802a --- /dev/null +++ b/dev-tcltk/tix/tix-8.4.0.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/tix/tix-8.4.0.ebuild,v 1.1 2006/09/24 06:27:36 matsuu Exp $ + +inherit eutils + +DESCRIPTION="A widget library for Tcl/Tk. Has been ported to Python and Perl, too." +HOMEPAGE="http://tix.sourceforge.net/" +SRC_URI="mirror://sourceforge/tix/${P}.tar.gz" + +IUSE="" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +RESTRICT="test" + +DEPEND=">=sys-apps/portage-2.0.47-r10 + >=sys-apps/sed-4 + dev-lang/tk" + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i -e "s/relid'/relid/" configure tclconfig/tcl.m4 || die +} + +src_install() { + emake DESTDIR="${D}" install || die + + dodoc ChangeLog README.txt +} |