summaryrefslogtreecommitdiff
path: root/media-libs/libsixel/libsixel-1.7.3.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-08-04 08:53:53 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-08-04 08:53:53 +0100
commite3872864be25f7421015bef2732fa57c0c9fb726 (patch)
tree9cb29a544215119b5c5538e37211b994ce1c87ae /media-libs/libsixel/libsixel-1.7.3.ebuild
parent480486b52ea64765faf696c88b2c6a26a5a454d4 (diff)
gentoo resync : 04.08.2018
Diffstat (limited to 'media-libs/libsixel/libsixel-1.7.3.ebuild')
-rw-r--r--media-libs/libsixel/libsixel-1.7.3.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/media-libs/libsixel/libsixel-1.7.3.ebuild b/media-libs/libsixel/libsixel-1.7.3.ebuild
deleted file mode 100644
index 3d8e5d2dbd83..000000000000
--- a/media-libs/libsixel/libsixel-1.7.3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit bash-completion-r1 ltprune
-
-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 static-libs"
-
-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_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
-}
-
-src_test() {
- emake test
-}
-
-src_install() {
- default
- prune_libtool_files
-
- cd images
- docompress -x /usr/share/doc/${PF}/images
- docinto images
- dodoc egret.jpg map{8,16}.png snake.jpg vimperator3.png
-}