diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-03-29 11:32:45 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-03-29 11:32:45 +0000 |
commit | 3a439e2affc4583e990e1be61d70aeb5c12d3f17 (patch) | |
tree | 3ad4bc1b7dbb7565388ee289b954d307d46cb53e /dev-tcltk/tklib/tklib-0.5.ebuild | |
parent | clean up (diff) | |
download | gentoo-2-3a439e2affc4583e990e1be61d70aeb5c12d3f17.tar.gz gentoo-2-3a439e2affc4583e990e1be61d70aeb5c12d3f17.tar.bz2 gentoo-2-3a439e2affc4583e990e1be61d70aeb5c12d3f17.zip |
new ebuild per bug 311845
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'dev-tcltk/tklib/tklib-0.5.ebuild')
-rw-r--r-- | dev-tcltk/tklib/tklib-0.5.ebuild | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-tcltk/tklib/tklib-0.5.ebuild b/dev-tcltk/tklib/tklib-0.5.ebuild new file mode 100644 index 000000000000..3dd1033dc9a3 --- /dev/null +++ b/dev-tcltk/tklib/tklib-0.5.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tklib/tklib-0.5.ebuild,v 1.1 2010/03/29 11:32:45 jlec Exp $ + +DESCRIPTION="Collection of utility modules for Tk, and a companion to Tcllib" +HOMEPAGE="http://www.tcl.tk/software/tklib" +SRC_URI="mirror://sourceforge/project/tcllib/${PN}/${PV}/${P}.tar.bz2" + +SLOT="0" +KEYWORDS="~amd64 ~x86" +LICENSE="BSD" +IUSE="doc" + +RDEPEND="dev-lang/tk" +DEPEND="${RDEPEND}" + +src_install() { + emake DESTDIR="${D}" install || die + if use doc; then + emake DESTDIR="${D}" doc || die + dohtml doc/html/* || die + fi + dodoc ChangeLog DESCRIPTION.txt README* || die +} |