summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2016-04-10 22:05:01 +0900
committerAkinori Hattori <hattya@gentoo.org>2016-04-10 22:05:01 +0900
commite48be9b29388f6fd692df225ec67c3edba757950 (patch)
tree51f760491aa7fd445c52687f700d0e90f285d480 /media-libs/libsixel
parentdev-python/bibtexparser: Remove unnecessary ${FILESDIR} (diff)
downloadgentoo-e48be9b29388f6fd692df225ec67c3edba757950.tar.gz
gentoo-e48be9b29388f6fd692df225ec67c3edba757950.tar.bz2
gentoo-e48be9b29388f6fd692df225ec67c3edba757950.zip
media-libs/libsixel: drop old
Package-Manager: portage-2.2.26
Diffstat (limited to 'media-libs/libsixel')
-rw-r--r--media-libs/libsixel/Manifest1
-rw-r--r--media-libs/libsixel/files/libsixel-gd.patch11
-rw-r--r--media-libs/libsixel/libsixel-1.5.2.ebuild51
3 files changed, 0 insertions, 63 deletions
diff --git a/media-libs/libsixel/Manifest b/media-libs/libsixel/Manifest
index c613eb2864f0..7a060f79db26 100644
--- a/media-libs/libsixel/Manifest
+++ b/media-libs/libsixel/Manifest
@@ -1,2 +1 @@
-DIST libsixel-1.5.2.tar.gz 4731977 SHA256 f83a187a59753873dad630609bd895a33ef566df43ec93c0f8e2605d50ca60d1 SHA512 32d2c2683dcd7ec247d88552204e0bfc2d543565363a85ed965039ce26f8cb98b1d0b18ce5f0a621d161cee52b707d82f40626752490cf8d5ebca3e3e959f289 WHIRLPOOL 089d89e01785600c7b7851d484e142ba305f0d687ab506879283adffc3eb4dfd4c54d999f1590371127731dcb3789c4cc8419c6a3166511cf5bc8ea0a0298d54
DIST libsixel-1.6.0.tar.gz 4744476 SHA256 06bf22621112f7313d8f5f8a8bec80268969166acae988e449b7cb33883b15c0 SHA512 5e8cfaf67bf8b6b18173f69c230fa75fe7f56448345287ad95716f1e0f45d08a289703eab62897d947c13c13acbf4c08e9ff8fd177452a7ed11dbb6efc7490ea WHIRLPOOL fbd3d94e47bb0aa2dfe6ce2aa9add5e3ed9b5abf84f39f142c093229628d3ea7ac9553c8fa4c555935aed71a4939ce76ba349d7ece58a4e34c81363381a923d7
diff --git a/media-libs/libsixel/files/libsixel-gd.patch b/media-libs/libsixel/files/libsixel-gd.patch
deleted file mode 100644
index 6c947490a0c5..000000000000
--- a/media-libs/libsixel/files/libsixel-gd.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/configure.ac
-+++ b/configure.ac
-@@ -354,7 +354,7 @@
- [gdImageCreateFromGifPtr],
- [AC_CHECK_DECLS([gdImageCreateFromGifPtr], [], [], [ #include <gd.h> ])])
- AC_CHECK_LIB([gd],
-- [gdImageCreateFromBmpPtr],
-+ [gdImageCreateFromPngPtr],
- [AC_CHECK_DECLS([gdImageCreateFromPngPtr], [], [], [ #include <gd.h> ])])
- AC_CHECK_LIB([gd],
- [gdImageCreateFromBmpPtr],
diff --git a/media-libs/libsixel/libsixel-1.5.2.ebuild b/media-libs/libsixel/libsixel-1.5.2.ebuild
deleted file mode 100644
index 076be8b219ff..000000000000
--- a/media-libs/libsixel/libsixel-1.5.2.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit autotools bash-completion-r1 eutils
-
-DESCRIPTION="A lightweight, fast implementation of DEC SIXEL graphics codec"
-HOMEPAGE="https://github.com/saitoha/libsixel"
-SRC_URI="https://github.com/saitoha/libsixel/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
-IUSE="curl gd gtk jpeg png"
-
-RDEPEND="curl? ( net-misc/curl )
- gd? ( media-libs/gd )
- gtk? ( x11-libs/gdk-pixbuf:2 )
- jpeg? ( virtual/jpeg:0 )
- png? ( media-libs/libpng:0 )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-gd.patch
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-python \
- --with-bashcompletiondir=$(get_bashcompdir) \
- $(use_with curl libcurl) \
- $(use_with gd) \
- $(use_with gtk gdk-pixbuf2) \
- $(use_with jpeg) \
- $(use_with png)
-}
-
-src_test() {
- emake test
-}
-
-src_install() {
- default
-
- docompress -x /usr/share/doc/${PF}/images
- dodoc -r images
-}