diff options
Diffstat (limited to 'media-libs/libsixel/libsixel-1.4.5.ebuild')
-rw-r--r-- | media-libs/libsixel/libsixel-1.4.5.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/media-libs/libsixel/libsixel-1.4.5.ebuild b/media-libs/libsixel/libsixel-1.4.5.ebuild new file mode 100644 index 000000000000..67499c3a3494 --- /dev/null +++ b/media-libs/libsixel/libsixel-1.4.5.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/libsixel-1.4.5.ebuild,v 1.1 2015/01/08 12:20:01 hattya Exp $ + +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 ~x86" +IUSE="curl gd gtk jpeg png zsh-completion" + +RDEPEND="curl? ( net-misc/curl ) + gd? ( media-libs/gd ) + gtk? ( x11-libs/gdk-pixbuf:2 ) + jpeg? ( virtual/jpeg:0 ) + png? ( media-libs/libpng ) + zsh-completion? ( app-shells/zsh )" +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 + + use zsh-completion || rm -rf "${ED}"/usr/share/zsh +} |