diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2005-05-17 13:55:38 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2005-05-17 13:55:38 +0000 |
commit | 9f110e5f16fecc5fc794599590411f3bea599b8c (patch) | |
tree | fad14299c32d4556d369f9389c0642550cd98919 /dev-tcltk/tcllib/tcllib-1.6.1-r1.ebuild | |
parent | Stable on sparc (diff) | |
download | gentoo-2-9f110e5f16fecc5fc794599590411f3bea599b8c.tar.gz gentoo-2-9f110e5f16fecc5fc794599590411f3bea599b8c.tar.bz2 gentoo-2-9f110e5f16fecc5fc794599590411f3bea599b8c.zip |
Fixed french language problem, Bug 69885.
(Portage version: 2.0.51.19)
Diffstat (limited to 'dev-tcltk/tcllib/tcllib-1.6.1-r1.ebuild')
-rw-r--r-- | dev-tcltk/tcllib/tcllib-1.6.1-r1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-tcltk/tcllib/tcllib-1.6.1-r1.ebuild b/dev-tcltk/tcllib/tcllib-1.6.1-r1.ebuild new file mode 100644 index 000000000000..1b297fb12603 --- /dev/null +++ b/dev-tcltk/tcllib/tcllib-1.6.1-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/tcllib-1.6.1-r1.ebuild,v 1.1 2005/05/17 13:55:38 matsuu Exp $ + +inherit eutils + +DESCRIPTION="Tcl Standard Library." +HOMEPAGE="http://www.tcl.tk/software/tcllib/" +SRC_URI="mirror://sourceforge/tcllib/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +IUSE="" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ~ia64 ~s390" + +DEPEND=">=dev-lang/tcl-8.3.1" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${P}-fr.msg.patch +} + +src_compile() { + econf || die + # emake || die +} + +src_install() { + make DESTDIR=${D} install || die + + dodoc ChangeLog PACKAGES* README STATUS *.txt +} |