blob: 6358dc9ccd9593eedae9f7732310cc54435e2ba0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
inherit bash-completion-r1
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_configure() {
econf \
--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
}
|