diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2004-01-24 02:33:02 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2004-01-24 02:33:02 +0000 |
commit | dd41a6bbcf0ee689fe171afff6d62e86ce126e59 (patch) | |
tree | 674456c599c22e4c31ede21578466f1a7161188a /dev-tcltk/tcllib | |
parent | Updated einfo (the .gz missing in the doc) and metadata (diff) | |
download | gentoo-2-dd41a6bbcf0ee689fe171afff6d62e86ce126e59.tar.gz gentoo-2-dd41a6bbcf0ee689fe171afff6d62e86ce126e59.tar.bz2 gentoo-2-dd41a6bbcf0ee689fe171afff6d62e86ce126e59.zip |
pull in Tk, only if X is in USE. Closes bug #39147 by Miguel Ventura <hal9000@netcabo.pt>
Diffstat (limited to 'dev-tcltk/tcllib')
-rw-r--r-- | dev-tcltk/tcllib/ChangeLog | 6 | ||||
-rw-r--r-- | dev-tcltk/tcllib/tcllib-1.3.ebuild | 10 |
2 files changed, 11 insertions, 5 deletions
diff --git a/dev-tcltk/tcllib/ChangeLog b/dev-tcltk/tcllib/ChangeLog index 6906e68f5754..4fb516e6cbd3 100644 --- a/dev-tcltk/tcllib/ChangeLog +++ b/dev-tcltk/tcllib/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-tcltk/tcllib # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.3 2004/01/15 03:58:44 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/ChangeLog,v 1.4 2004/01/24 02:33:02 seemant Exp $ + + 23 Jan 2004; Seemant Kulleen <seemant@gentoo.org> tcllib-1.3.ebuild: + pull in Tk, only if X is in USE. Closes bug #39147 by Miguel Ventura + <hal9000@netcabo.pt> 14 Jan 2004; Aron Griffis <agriffis@gentoo.org> tcllib-1.3.ebuild: add ~alpha diff --git a/dev-tcltk/tcllib/tcllib-1.3.ebuild b/dev-tcltk/tcllib/tcllib-1.3.ebuild index 7c142b4182a1..deb75c1a8143 100644 --- a/dev-tcltk/tcllib/tcllib-1.3.ebuild +++ b/dev-tcltk/tcllib/tcllib-1.3.ebuild @@ -1,17 +1,19 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/tcllib-1.3.ebuild,v 1.5 2004/01/15 03:58:44 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tcllib/tcllib-1.3.ebuild,v 1.6 2004/01/24 02:33:02 seemant Exp $ + +IUSE="X" DESCRIPTION="Tcl Standard Library." HOMEPAGE="http://www.tcl.tk/software/tcllib/" SRC_URI="mirror://sourceforge/tcllib/${P}.tar.gz" -LICENSE="BSD" SLOT="0" -KEYWORDS="x86 ~alpha" +LICENSE="BSD" +KEYWORDS="x86 ~ppc ~sparc ~alpha ~hppa ~mips ~amd64 ~ia64" DEPEND=">=dev-lang/tcl-8.3.3 - >=dev-lang/tk-8.3.3" + X? ( >=dev-lang/tk-8.3.3 )" src_compile() { econf || die |