diff options
Diffstat (limited to 'dev-tcltk/tkimg/tkimg-1.3.ebuild')
-rw-r--r-- | dev-tcltk/tkimg/tkimg-1.3.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/dev-tcltk/tkimg/tkimg-1.3.ebuild b/dev-tcltk/tkimg/tkimg-1.3.ebuild new file mode 100644 index 000000000000..863767fd72a9 --- /dev/null +++ b/dev-tcltk/tkimg/tkimg-1.3.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/tkimg-1.3.ebuild,v 1.1 2008/04/11 11:26:20 bicatali Exp $ + +inherit eutils autotools + +MY_P=${PN}${PV} +DESCRIPTION="Adds a lot of image formats to Tcl/Tk" +HOMEPAGE="http://sourceforge.net/projects/tkimg/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" + +IUSE="" +SLOT="0" +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-lang/tk + media-libs/libpng + media-libs/tiff" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${P}-m4.patch + epatch "${FILESDIR}"/${P}-syslibs.patch + epatch "${FILESDIR}"/${P}-makedeps.patch + epatch "${FILESDIR}"/${P}-warnings.patch + rm -f $(find . -name configure) + for i in $(find -type d); do + cd "${S}"/${i} + [[ -f configure.in ]] && eautoreconf + done +} + +src_install() { + emake \ + DESTDIR="${D}" \ + INSTALL_ROOT="${D}" \ + install || die "emake install failed" + doman doc/man/* + dodoc ChangeLog README Reorganization.Notes.txt changes ANNOUNCE || die + insinto /usr/share/doc/${PF} + doins -r demo + use doc && dohtml doc/html +} |