diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2004-09-27 23:02:09 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2004-09-27 23:02:09 +0000 |
commit | a894cae5bd6fe7842f59ed94bc6975d1d38a7572 (patch) | |
tree | 464f02caf33a3d8e0d0d39e00e1596f037da6e07 /dev-tcltk | |
parent | Added to ~amd64. (diff) | |
download | historical-a894cae5bd6fe7842f59ed94bc6975d1d38a7572.tar.gz historical-a894cae5bd6fe7842f59ed94bc6975d1d38a7572.tar.bz2 historical-a894cae5bd6fe7842f59ed94bc6975d1d38a7572.zip |
Version bumped.
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/tcllib/ChangeLog | 7 | ||||
-rw-r--r-- | dev-tcltk/tcllib/files/digest-tcllib-1.6.1 | 1 | ||||
-rw-r--r-- | dev-tcltk/tcllib/tcllib-1.6.1.ebuild | 25 |
3 files changed, 32 insertions, 1 deletions
diff --git a/dev-tcltk/tcllib/ChangeLog b/dev-tcltk/tcllib/ChangeLog index 7716231684b6..345c40ad9680 100644 --- a/dev-tcltk/tcllib/ChangeLog +++ b/dev-tcltk/tcllib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-tcltk/tcllib # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.8 2004/06/25 02:08:49 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.9 2004/09/27 23:02:09 matsuu Exp $ + +*tcllib-1.6.1 (28 Sep 2004) + + 28 Sep 2004; MATSUU Takuto <matsuu@gentoo.org> +tcllib-1.6.1.ebuild: + Version bumped. 03 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> tcllib-1.6.ebuild: Stable on alpha. diff --git a/dev-tcltk/tcllib/files/digest-tcllib-1.6.1 b/dev-tcltk/tcllib/files/digest-tcllib-1.6.1 new file mode 100644 index 000000000000..bd092413ec51 --- /dev/null +++ b/dev-tcltk/tcllib/files/digest-tcllib-1.6.1 @@ -0,0 +1 @@ +MD5 498335f8c5b3093f502d6bd0ab74abff tcllib-1.6.1.tar.gz 1441607 diff --git a/dev-tcltk/tcllib/tcllib-1.6.1.ebuild b/dev-tcltk/tcllib/tcllib-1.6.1.ebuild new file mode 100644 index 000000000000..372b740e2bd5 --- /dev/null +++ b/dev-tcltk/tcllib/tcllib-1.6.1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2004 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.ebuild,v 1.1 2004/09/27 23:02:09 matsuu Exp $ + +DESCRIPTION="Tcl Standard Library." +HOMEPAGE="http://www.tcl.tk/software/tcllib/" +SRC_URI="mirror://sourceforge/tcllib/${P}.tar.gz" +IUSE="X doc" +SLOT="0" +LICENSE="BSD" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ~ia64 ~s390" + +DEPEND=">=dev-lang/tcl-8.3.3 + X? ( >=dev-lang/tk-8.3.3 )" + +src_compile() { + econf || die + make || die +} + +src_install() { + einstall || die + dodoc ChangeLog README license.terms + use doc && dohtml -r doc/html/* +} |