diff options
author | 2014-11-09 12:41:57 +0000 | |
---|---|---|
committer | 2014-11-09 12:41:57 +0000 | |
commit | 35a0b551be3b5bfc4af9b5872db00b7e9a1392ee (patch) | |
tree | e203133c6d377391ea630e4ea294bdf1bc9a4d02 /media-libs/libsixel | |
parent | version bump, with adjusted patch (diff) | |
download | gentoo-2-35a0b551be3b5bfc4af9b5872db00b7e9a1392ee.tar.gz gentoo-2-35a0b551be3b5bfc4af9b5872db00b7e9a1392ee.tar.bz2 gentoo-2-35a0b551be3b5bfc4af9b5872db00b7e9a1392ee.zip |
new upstream release
(Portage version: 2.2.8-r2/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
Diffstat (limited to 'media-libs/libsixel')
-rw-r--r-- | media-libs/libsixel/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/libsixel/libsixel-1.3.4.ebuild | 48 |
2 files changed, 54 insertions, 1 deletions
diff --git a/media-libs/libsixel/ChangeLog b/media-libs/libsixel/ChangeLog index aa53f47e4338..e0bb16702872 100644 --- a/media-libs/libsixel/ChangeLog +++ b/media-libs/libsixel/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libsixel # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/ChangeLog,v 1.4 2014/11/09 06:09:05 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/ChangeLog,v 1.5 2014/11/09 12:41:57 hattya Exp $ + +*libsixel-1.3.4 (09 Nov 2014) + + 09 Nov 2014; Akinori Hattori <hattya@gentoo.org> +libsixel-1.3.4.ebuild: + new upstream release *libsixel-1.3.3 (09 Nov 2014) diff --git a/media-libs/libsixel/libsixel-1.3.4.ebuild b/media-libs/libsixel/libsixel-1.3.4.ebuild new file mode 100644 index 000000000000..f51e1fe41d22 --- /dev/null +++ b/media-libs/libsixel/libsixel-1.3.4.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/libsixel-1.3.4.ebuild,v 1.1 2014/11/09 12:41:57 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 +} |