diff options
author | 2003-10-29 04:45:39 +0000 | |
---|---|---|
committer | 2003-10-29 04:45:39 +0000 | |
commit | f78c9787ee062c191e491163a4f02e6f94b6abba (patch) | |
tree | 0958c72d377205fdc2aaf79f5a5842208d37e768 /dev-tcltk/iwidgets/iwidgets-4.0.1.ebuild | |
parent | add new ebuild as it's a PDEPEND for the new itcl (diff) | |
download | gentoo-2-f78c9787ee062c191e491163a4f02e6f94b6abba.tar.gz gentoo-2-f78c9787ee062c191e491163a4f02e6f94b6abba.tar.bz2 gentoo-2-f78c9787ee062c191e491163a4f02e6f94b6abba.zip |
add new ebuild as it's a PDEPEND for the new itcl
Diffstat (limited to 'dev-tcltk/iwidgets/iwidgets-4.0.1.ebuild')
-rw-r--r-- | dev-tcltk/iwidgets/iwidgets-4.0.1.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-tcltk/iwidgets/iwidgets-4.0.1.ebuild b/dev-tcltk/iwidgets/iwidgets-4.0.1.ebuild new file mode 100644 index 000000000000..84882b1e10f0 --- /dev/null +++ b/dev-tcltk/iwidgets/iwidgets-4.0.1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +MY_P=${PN}${PV} +S=${WORKDIR}/${MY_P} + +ITCL_MY_PN="itcl" +ITCL_MY_PV="3.2.1" +ITCL_MY_P="${ITCL_MY_PN}${ITCL_MY_PV}" + +DESCRIPTION="Widget collection for incrTcl/incrTk" +SRC_URI="mirror://sourceforge/incrtcl/${MY_P}.tar.gz + mirror://sourceforge/incrtcl/${ITCL_MY_P}_src.tgz" +HOMEPAGE="http://www.tcltk.com/${PN}/" + +SLOT="0" +LICENSE="as-is BSD" +KEYWORDS="~x86 ~ppc ~sparc" +DEPEND=">=dev-tcltk/itcl-3.2.1" +PDEPEND="dev-tcltk/iwidgets" + +src_compile() { + local myconf + myconf="${myconf} --with-itcl=${WORKDIR}/${ITCL_MY_P}" + econf ${myconf} || die "configure failed" + # we don't need to compile anything +} + +src_install() { + einstall || "einstall failed" + dodoc CHANGES ChangeLog README license.terms + doman doc/*.n +} |