Gentoo Archives: gentoo-commits

From: "Akinori Hattori (hattya)" <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libsixel: libsixel-1.4.4.ebuild ChangeLog
Date: Mon, 29 Dec 2014 12:46:05
Message-Id: 20141229124600.A4292E6B4@oystercatcher.gentoo.org
1 hattya 14/12/29 12:46:00
2
3 Modified: ChangeLog
4 Added: libsixel-1.4.4.ebuild
5 Log:
6 new upstream release
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EC917A6D)
9
10 Revision Changes Path
11 1.8 media-libs/libsixel/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libsixel/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 29 Nov 2014 13:00:23 -0000 1.7
24 +++ ChangeLog 29 Dec 2014 12:46:00 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libsixel
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/ChangeLog,v 1.7 2014/11/29 13:00:23 hattya Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/ChangeLog,v 1.8 2014/12/29 12:46:00 hattya Exp $
30 +
31 +*libsixel-1.4.4 (29 Dec 2014)
32 +
33 + 29 Dec 2014; Akinori Hattori <hattya@g.o> +libsixel-1.4.4.ebuild:
34 + new upstream release
35
36 *libsixel-1.3.6 (29 Nov 2014)
37
38
39
40
41 1.1 media-libs/libsixel/libsixel-1.4.4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/libsixel-1.4.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libsixel/libsixel-1.4.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libsixel-1.4.4.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libsixel/libsixel-1.4.4.ebuild,v 1.1 2014/12/29 12:46:00 hattya Exp $
51
52 EAPI="5"
53
54 inherit bash-completion-r1
55
56 DESCRIPTION="A lightweight, fast implementation of DEC SIXEL graphics codec"
57 HOMEPAGE="https://github.com/saitoha/libsixel"
58 SRC_URI="https://github.com/saitoha/libsixel/archive/v${PV}.tar.gz -> ${P}.tar.gz"
59
60 LICENSE="MIT public-domain"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE="curl gd gtk jpeg png zsh-completion"
64
65 RDEPEND="curl? ( net-misc/curl )
66 gd? ( media-libs/gd )
67 gtk? ( x11-libs/gdk-pixbuf:2 )
68 jpeg? ( virtual/jpeg:0 )
69 png? ( media-libs/libpng )
70 zsh-completion? ( app-shells/zsh )"
71 DEPEND="${RDEPEND}
72 virtual/pkgconfig"
73
74 src_configure() {
75 econf \
76 --with-bashcompletiondir=$(get_bashcompdir) \
77 $(use_with curl libcurl) \
78 $(use_with gd) \
79 $(use_with gtk gdk-pixbuf2) \
80 $(use_with jpeg) \
81 $(use_with png)
82 }
83
84 src_test() {
85 emake test
86 }
87
88 src_install() {
89 default
90
91 docompress -x /usr/share/doc/${PF}/images
92 dodoc -r images
93
94 use zsh-completion || rm -rf "${ED}"/usr/share/zsh
95 }