summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2022-08-12 22:33:31 +0900
committerAkinori Hattori <hattya@gentoo.org>2022-08-12 22:34:13 +0900
commit02d62632d4041817e5ed564c7d50942c0033cf3a (patch)
tree7d39726930e41dabb0aaea2424cb50e3d9535206 /media-libs/libsixel
parentdev-libs/libutf8proc: drop old (diff)
downloadgentoo-02d62632d4041817e5ed564c7d50942c0033cf3a.tar.gz
gentoo-02d62632d4041817e5ed564c7d50942c0033cf3a.tar.bz2
gentoo-02d62632d4041817e5ed564c7d50942c0033cf3a.zip
media-libs/libsixel: drop old
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Akinori Hattori <hattya@gentoo.org>
Diffstat (limited to 'media-libs/libsixel')
-rw-r--r--media-libs/libsixel/Manifest1
-rw-r--r--media-libs/libsixel/libsixel-1.8.6.ebuild87
2 files changed, 0 insertions, 88 deletions
diff --git a/media-libs/libsixel/Manifest b/media-libs/libsixel/Manifest
index de4f62e90230..4eb122615413 100644
--- a/media-libs/libsixel/Manifest
+++ b/media-libs/libsixel/Manifest
@@ -1,2 +1 @@
DIST libsixel-1.10.3.tar.gz 4272940 BLAKE2B f65d9a3bdd54917f5746b7b1650dfca7084c64b505ea9cae07863c476d1189114d9fb303ec01d8fa209542e891f1d359ec6dbdc9babc4313b06b709813fab020 SHA512 ef16f9ccecec8289728ec84ce9f24145648f8a38184c1ec3df8ead3499c6cf7d3e0a0c738f8bfcb1093e16ee8ae7ce5e46d3890707c8104752ce4ab7eb3bc7ac
-DIST libsixel-1.8.6.tar.gz 4791628 BLAKE2B 5fa197d0d759eecd4040c4c1101e6d85fb9af7405ccdff75be571b3ac6b2b0aab6415bc3fdbb37157795f89190fcc1d0fea1bdf705e83a34762e2b05f5588c69 SHA512 460a5d46bada705b4a7ec2e250e2bde7f4b8ba155281fa5a102d1121f79c1c79145f042cd1f4bf93a2fc29e784e89afd539e963470663fc659d4fe72ea49fdaf
diff --git a/media-libs/libsixel/libsixel-1.8.6.ebuild b/media-libs/libsixel/libsixel-1.8.6.ebuild
deleted file mode 100644
index 0cb049507e88..000000000000
--- a/media-libs/libsixel/libsixel-1.8.6.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-PYTHON_COMPAT=( python3_{7..10} )
-DISTUTILS_OPTIONAL="1"
-
-inherit bash-completion-r1 distutils-r1
-
-DESCRIPTION="A lightweight, fast implementation of DEC SIXEL graphics codec"
-HOMEPAGE="https://github.com/saitoha/libsixel"
-SRC_URI="https://github.com/saitoha/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT public-domain"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 x86"
-IUSE="curl gd gtk jpeg png python static-libs"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="curl? ( net-misc/curl )
- gd? ( media-libs/gd )
- gtk? ( x11-libs/gdk-pixbuf:2 )
- jpeg? ( virtual/jpeg:0 )
- png? ( media-libs/libpng:0 )
- python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig
- python? (
- ${PYTHON_DEPS}
- dev-python/setuptools[${PYTHON_USEDEP}]
- )"
-
-src_prepare() {
- default
- if use python; then
- cd python || die
- distutils-r1_src_prepare
- cd - >/dev/null || die
- fi
-}
-
-src_configure() {
- econf \
- $(use_with curl libcurl) \
- $(use_with gd) \
- $(use_with gtk gdk-pixbuf2) \
- $(use_with jpeg) \
- $(use_with png) \
- $(use_enable static-libs static) \
- --with-bashcompletiondir=$(get_bashcompdir) \
- --disable-python
- if use python; then
- cd python || die
- distutils-r1_src_configure
- cd - >/dev/null || die
- fi
-}
-
-src_compile() {
- default
- if use python; then
- cd python || die
- distutils-r1_src_compile
- cd - >/dev/null || die
- fi
-}
-
-src_test() {
- emake test
-}
-
-src_install() {
- default
- use static-libs || find "${ED}" -name '*.la' -delete || die
-
- cd images || die
- docompress -x /usr/share/doc/${PF}/images
- docinto images
- dodoc egret.jpg map{8,16}.png snake.jpg vimperator3.png
- cd - >/dev/null || die
-
- if use python; then
- cd python || die
- distutils-r1_src_install
- cd - >/dev/null || die
- fi
-}