diff options
author | Justin Lecher <jlec@gentoo.org> | 2014-01-14 14:12:33 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2014-01-14 14:12:33 +0000 |
commit | f2b081bd85e54bf4e948b5402231f685816d0246 (patch) | |
tree | e5789fbf68fe96eabf74b4e94e24528a2d0a53f9 /dev-tcltk | |
parent | dev-python/numexpr: Drop old (diff) | |
download | gentoo-2-f2b081bd85e54bf4e948b5402231f685816d0246.tar.gz gentoo-2-f2b081bd85e54bf4e948b5402231f685816d0246.tar.bz2 gentoo-2-f2b081bd85e54bf4e948b5402231f685816d0246.zip |
dev-tcltk/tkimg: Drop old
(Portage version: 2.2.8/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/tkimg/ChangeLog | 5 | ||||
-rw-r--r-- | dev-tcltk/tkimg/tkimg-1.4-r7.ebuild | 93 |
2 files changed, 4 insertions, 94 deletions
diff --git a/dev-tcltk/tkimg/ChangeLog b/dev-tcltk/tkimg/ChangeLog index 89da529db317..17d926bc5e08 100644 --- a/dev-tcltk/tkimg/ChangeLog +++ b/dev-tcltk/tkimg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-tcltk/tkimg # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/ChangeLog,v 1.62 2014/01/14 13:56:43 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/ChangeLog,v 1.63 2014/01/14 14:12:33 jlec Exp $ + + 14 Jan 2014; Justin Lecher <jlec@gentoo.org> -tkimg-1.4-r7.ebuild: + Drop old 14 Jan 2014; Agostino Sarubbo <ago@gentoo.org> tkimg-1.4-r9.ebuild: Stable for x86, wrt bug #497706 diff --git a/dev-tcltk/tkimg/tkimg-1.4-r7.ebuild b/dev-tcltk/tkimg/tkimg-1.4-r7.ebuild deleted file mode 100644 index 44da7c73528f..000000000000 --- a/dev-tcltk/tkimg/tkimg-1.4-r7.ebuild +++ /dev/null @@ -1,93 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkimg/tkimg-1.4-r7.ebuild,v 1.6 2012/11/21 11:28:15 ago Exp $ - -EAPI=4 - -VIRTUALX_USE=test - -inherit eutils multilib prefix toolchain-funcs virtualx - -MYP="${PN}${PV}" - -DESCRIPTION="Adds a lot of image formats to Tcl/Tk" -HOMEPAGE="http://tkimg.sourceforge.net/" -SRC_URI=" - http://dev.gentoo.org/~jlec/distfiles/${P}-gentoo+bundled-tiff.patch.xz - mirror://sourceforge/${PN}/${PV}/${MYP}.tar.bz2" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux" -IUSE="doc test static-libs" - -RDEPEND=" - dev-lang/tk - >=dev-tcltk/tcllib-1.11 - media-libs/tiff:0 - media-libs/libpng:0 - >=sys-libs/zlib-1.2.7 - x11-libs/libX11 - virtual/jpeg" -DEPEND="${RDEPEND} - test? ( - x11-apps/xhost - media-fonts/font-misc-misc - media-fonts/font-cursor-misc )" - -# Fails with jpeg-turbo silently, #386253 -RESTRICT="test" - -S="${WORKDIR}/${MYP}" - -src_prepare() { - epatch \ - "${WORKDIR}"/${P}-gentoo+bundled-tiff.patch \ - "${FILESDIR}"/${P}-jbig.patch \ - "${FILESDIR}"/${P}-zlib-1.2.6.patch \ - "${FILESDIR}"/${P}-libtiff.patch \ - "${FILESDIR}"/${P}-libtiff4.patch \ - "${FILESDIR}"/${P}-zlib127-gzgetc_fix.patch - - find compat/{libjpeg,libpng,zlib,libtiff} -delete - - sed \ - -e 's:-O2 -fomit-frame-pointer::g' \ - -e 's: -pipe::g' \ - -i */configure || die - - eprefixify */*.h - tc-export AR -} - -src_test() { - Xemake test || die "Xmake failed" -} - -src_install() { - local l bl - - emake \ - DESTDIR="${D}" \ - INSTALL_ROOT="${D}" \ - install - - if ! use static-libs; then - find "${ED}"/usr/$(get_libdir)/ -type f -name "*\.a" -delete || die - fi - - # Make library links - for l in "${ED}"/usr/lib*/Img*/*tcl*.so; do - bl=$(basename $l) - dosym Img1.4/${bl} /usr/$(get_libdir)/${bl} - done - - dodoc ChangeLog README Reorganization.Notes.txt changes ANNOUNCE - - if use doc; then - insinto /usr/share/doc/${PF} - doins demo.tcl - insinto /usr/share/doc/${PF}/html - doins -r doc/* - fi -} |