diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-02-14 17:17:39 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-02-14 17:17:39 +0000 |
commit | 77b8276d91b5bf9176c3551ba398207e1c887ba4 (patch) | |
tree | c9462cd6d070ffcfde06df949ee5bdb987943b5d /dev-tcltk/itk/itk-4.0.0.ebuild | |
parent | Fixed for wrong R_HOME variable (bug #457502) and removing a file which wasn'... (diff) | |
download | gentoo-2-77b8276d91b5bf9176c3551ba398207e1c887ba4.tar.gz gentoo-2-77b8276d91b5bf9176c3551ba398207e1c887ba4.tar.bz2 gentoo-2-77b8276d91b5bf9176c3551ba398207e1c887ba4.zip |
dev-tcltk/itk: Version Bump
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'dev-tcltk/itk/itk-4.0.0.ebuild')
-rw-r--r-- | dev-tcltk/itk/itk-4.0.0.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/dev-tcltk/itk/itk-4.0.0.ebuild b/dev-tcltk/itk/itk-4.0.0.ebuild new file mode 100644 index 000000000000..9f2ee458a98a --- /dev/null +++ b/dev-tcltk/itk/itk-4.0.0.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/itk/itk-4.0.0.ebuild,v 1.1 2013/02/14 17:17:38 jlec Exp $ + +EAPI=5 + +inherit autotools eutils multilib versionator + +MY_PV=${PV/_beta/b} +ITCL_VERSION="$(get_version_component_range 1-2)" + +DESCRIPTION="Object Oriented Enhancements for Tcl/Tk" +HOMEPAGE="http://incrtcl.sourceforge.net/" +SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/Itcl%20${MY_PV}/${PN}${MY_PV}.tar.gz" +#SRC_URI="mirror://sourceforge/%5Bincr%20Tcl_Tk%5D-4-source/Itcl%20${MY_PV}/${PN}${MY_PV}.tar.gz" + +IUSE="" +SLOT="0" +LICENSE="BSD" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" + +DEPEND=" + >=dev-lang/tk-8.6 + =dev-tcltk/itcl-${ITCL_VERSION}*" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}${MY_PV}" + +src_prepare() { +# epatch "${FILESDIR}"/${P}-install_data.patch + AT_M4DIR=.. eautoconf + sed 's:-pipe::g' -i configure || die +} + +src_configure() { + source "${EPREFIX}"/usr/$(get_libdir)/itcl${ITCL_VERSION}*/itclConfig.sh || die + econf \ + --with-tcl="${EPREFIX}"/usr/$(get_libdir) \ + --with-tk="${EPREFIX}"/usr/$(get_libdir) \ + --with-tclinclude="${EPREFIX}"/usr/include \ + --with-tkinclude="${EPREFIX}"/usr/include \ + --with-itcl="${ITCL_SRC_DIR}" \ + --with-x +} + +src_compile() { + emake CFLAGS_DEFAULT="${CFLAGS}" +} + +src_install() { + emake DESTDIR="${D}" install + + dodoc license.terms + + cat >> "${T}"/34${PN} <<- EOF + LDPATH="${EPREFIX}/usr/$(get_libdir)/${PN}${MY_PV}/" + EOF + doenvd "${T}"/34${PN} +} |