diff options
author | Tim Harder <radhermit@gentoo.org> | 2018-07-01 11:02:29 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2018-07-01 11:06:49 -0400 |
commit | 7653fef78c95b11169860de40462f600199b3625 (patch) | |
tree | bba0453860a2022f645c550f12fe73ce1fc0898d /media-gfx | |
parent | media-gfx/qiv: version bump to 2.3.2 (diff) | |
download | gentoo-7653fef78c95b11169860de40462f600199b3625.tar.gz gentoo-7653fef78c95b11169860de40462f600199b3625.tar.bz2 gentoo-7653fef78c95b11169860de40462f600199b3625.zip |
media-gfx/qiv: remove old
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/qiv/Manifest | 2 | ||||
-rw-r--r-- | media-gfx/qiv/qiv-2.2.4.ebuild | 43 | ||||
-rw-r--r-- | media-gfx/qiv/qiv-2.3.1.ebuild | 63 |
3 files changed, 0 insertions, 108 deletions
diff --git a/media-gfx/qiv/Manifest b/media-gfx/qiv/Manifest index 7d53b345f3ed..b1a72d480ccf 100644 --- a/media-gfx/qiv/Manifest +++ b/media-gfx/qiv/Manifest @@ -1,3 +1 @@ -DIST qiv-2.2.4.tgz 98874 BLAKE2B 150ea07881d8225801156d395696cef397210e1f5c2f974d08197f3429e1a7e19ebf283037b92cec40a973aa6748f1562dbeba1a6e854438cf069c70781e1561 SHA512 744014ff70c9397d7a90e60740f482976713c9e5ff295a03684ae7b50ae70b86589d9e9066702fd43241bf2767c3537f582aab5ebbde25caea1663ec825f76a5 -DIST qiv-2.3.1.tgz 130621 BLAKE2B 7aa3a63fb83094d4b0a15c4d6422ccf35f34a16df2f0e644a2068c520024b2a22f724ed117ef90292359fb8372969511863b6b0a2ccb0d208bad12649333f993 SHA512 5a9b8ac082c78071c903e2f10a98effc412c0b6b940437b6592077978de03b5c7b6192e4d696f0389c12e99e0d3b5ca40c3be54ca2dfa5439121af2415f32812 DIST qiv-2.3.2.tar.gz 135164 BLAKE2B b6b82c3007cd3214bb0b812026d22ab0a3c7fce87e51c1f2e19634fe131656f7adc1e92d2e1fcdcc563f1fd8b7c298307e48823bb26e077b336a6983f31894ac SHA512 a6750ecf26bc5b78fbebfdfcfd7a8ab0a5d3ba4e4b19c4a5563e1631dfaf8cc98f7a0bc9449956bc06f8b98cb307b31f78178676ddc9df4fa03429fa31c174e8 diff --git a/media-gfx/qiv/qiv-2.2.4.ebuild b/media-gfx/qiv/qiv-2.2.4.ebuild deleted file mode 100644 index f26a883e40e5..000000000000 --- a/media-gfx/qiv/qiv-2.2.4.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 -inherit toolchain-funcs - -DESCRIPTION="Quick Image Viewer" -HOMEPAGE="http://spiegl.de/qiv/" -SRC_URI="http://spiegl.de/qiv/download/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~mips ~x86" -IUSE="xinerama" - -RDEPEND=">=x11-libs/gtk+-2.12:2 - media-libs/imlib2[X] - !<media-gfx/pqiv-0.11 - xinerama? ( x11-libs/libXinerama )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - sed -i \ - -e 's:$(CC) $(CFLAGS):$(CC) $(LDFLAGS) $(CFLAGS):' \ - Makefile || die - - if ! use xinerama; then - sed -i \ - -e 's:-DGTD_XINERAMA::' \ - Makefile || die - fi -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" -} - -src_install() { - dobin qiv - doman qiv.1 - dodoc Changelog qiv-command.example README README.TODO -} diff --git a/media-gfx/qiv/qiv-2.3.1.ebuild b/media-gfx/qiv/qiv-2.3.1.ebuild deleted file mode 100644 index 99141eb1eca7..000000000000 --- a/media-gfx/qiv/qiv-2.3.1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit eutils gnome2-utils toolchain-funcs xdg-utils - -DESCRIPTION="Quick Image Viewer" -HOMEPAGE="http://spiegl.de/qiv/" -SRC_URI="http://spiegl.de/qiv/download/${P}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~mips ~x86" -IUSE="exif lcms magic" - -RDEPEND=">=x11-libs/gtk+-2.12:2 - media-libs/imlib2[X] - exif? ( media-libs/libexif ) - lcms? ( media-libs/lcms:2 ) - magic? ( sys-apps/file )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - sed -i \ - -e 's:$(CC) $(CFLAGS):$(CC) $(LDFLAGS) $(CFLAGS):' \ - Makefile || die - - if ! use exif ; then - sed -i 's/^EXIF =/#\0/' Makefile || die - fi - - if ! use lcms ; then - sed -i 's/^LCMS =/#\0/' Makefile || die - fi - - if ! use magic ; then - sed -i 's/^MAGIC =/#\0/' Makefile || die - fi -} - -src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" -} - -src_install() { - dobin qiv - doman qiv.1 - dodoc Changelog contrib/qiv-command.example README README.TODO - - domenu qiv.desktop - doicon qiv.png -} - -pkg_postinst() { - xdg_desktop_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - xdg_desktop_database_update - gnome2_icon_cache_update -} |