diff options
author | Arcady Genkin <agenkin@gentoo.org> | 2003-02-01 01:30:10 +0000 |
---|---|---|
committer | Arcady Genkin <agenkin@gentoo.org> | 2003-02-01 01:30:10 +0000 |
commit | de38bf800ced232771253c6e99ebfbbdd7d4a52b (patch) | |
tree | 13000f6c6eb795d092b510fee1735adea9bb8858 /dev-tcltk/tcllib/tcllib-1.3.ebuild | |
parent | new ebuild (diff) | |
download | gentoo-2-de38bf800ced232771253c6e99ebfbbdd7d4a52b.tar.gz gentoo-2-de38bf800ced232771253c6e99ebfbbdd7d4a52b.tar.bz2 gentoo-2-de38bf800ced232771253c6e99ebfbbdd7d4a52b.zip |
Initial version of the package.
Diffstat (limited to 'dev-tcltk/tcllib/tcllib-1.3.ebuild')
-rw-r--r-- | dev-tcltk/tcllib/tcllib-1.3.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/dev-tcltk/tcllib/tcllib-1.3.ebuild b/dev-tcltk/tcllib/tcllib-1.3.ebuild new file mode 100644 index 000000000000..d81b4b556fe8 --- /dev/null +++ b/dev-tcltk/tcllib/tcllib-1.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 2003 Arcady Genkin <agenkin@gentoo.org>. +# 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.1 2003/02/01 01:30:10 agenkin Exp $ + +DESCRIPTION="Tcl Standard Library." +HOMEPAGE="http://www.tcl.tk/software/tcllib/" + +DEPEND=">=dev-lang/tcl-8.3.3 + >=dev-lang/tk-8.3.3" + +LICENSE="BSD" +KEYWORDS="~x86" + +SLOT="0" +SRC_URI="mirror://sourceforge/tcllib/${P}.tar.gz" +S=${WORKDIR}/${P} + +src_compile() { + + econf || die + make || die + +} + +src_install() { + + einstall || die + + dodoc ChangeLog README license.terms + dohtml -r doc/html/* + +} |