media-libs/libsixel: new upstream release
authorAkinori Hattori <hattya@gentoo.org>
Mon, 23 Jul 2018 13:11:51 +0000 (22:11 +0900)
committerAkinori Hattori <hattya@gentoo.org>
Mon, 23 Jul 2018 13:15:33 +0000 (22:15 +0900)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

media-libs/libsixel/Manifest
media-libs/libsixel/libsixel-1.8.2.ebuild [new file with mode: 0644]
media-libs/libsixel/metadata.xml

index 8db93b899c413dc281a851e37cf0bf47e1265dfe..f8c6f73a02b0f236100f46b2fcc20602aac12a6f 100644 (file)
@@ -1,2 +1,3 @@
 DIST libsixel-1.7.3.tar.gz 4766335 BLAKE2B 5e546d31f9d66f5121301abe009677d05fbc1444e8a25a1feb6f9fed646a4bc543492376302b663569e0ddca99b665d5c81d9d35aa07349935b727ad581fb517 SHA512 f7b6b9748389f140ce2f6cf0eeb74ab5063c21455c72013a7e066981439bb1ada7b3e9b68a7b3b57c49205271f32ffb8d6d002a4f2af45b1381dd015873b4e91
 DIST libsixel-1.8.1.tar.gz 4777791 BLAKE2B de96029990acc00e0c5fa81e6f892153000a93841b8e152ecc2ae3db0e7ca1dbe5063fdbf69f79f23c82095b253206c7bea0f638ed7536ebcf3d0d23a1137965 SHA512 af38b47aac443bfb443aa7b12041ecc1496722afbc861ad8572e90c34c7c1ed4ee04241d5d5f3abb7d8be945fac2a1f718494c4fbd023a6a7b9f6d912f90554c
+DIST libsixel-1.8.2.tar.gz 4778776 BLAKE2B a43ff76e271b27337fa4144bd89170f33bfae535696f5107cc77b3adef370e89d9da950746621ec7002b201f68dba873f99463d8b2183c319b62f2574f0562a3 SHA512 f0287b7b7a190f0f964e27fc65aa816a78c09de5e50045a25eb05f9b430c74f779a7d5eb591b3430a82a06621d53719bf115bcdd0b99acc9afe3cb9ab6fde271
diff --git a/media-libs/libsixel/libsixel-1.8.2.ebuild b/media-libs/libsixel/libsixel-1.8.2.ebuild
new file mode 100644 (file)
index 0000000..c05386a
--- /dev/null
@@ -0,0 +1,49 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+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/${PN}/releases/download/v${PV}/${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
+       use static-libs || find "${ED}" -name '*.la' -delete || die
+
+       cd images
+       docompress -x /usr/share/doc/${PF}/images
+       docinto images
+       dodoc egret.jpg map{8,16}.png snake.jpg vimperator3.png
+}
index b9a0f9f649b5854a238facdaea5ad3c0f55c19e2..c6ef4c2f75ec38b3c1dde2b8f2e7f501c4361930 100644 (file)
@@ -1,10 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-  <maintainer type="person">
-    <email>hattya@gentoo.org</email>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">saitoha/libsixel</remote-id>
-  </upstream>
+       <maintainer type="person">
+               <email>hattya@gentoo.org</email>
+               <name>Akinori Hattori</name>
+       </maintainer>
+       <upstream>
+               <remote-id type="github">saitoha/libsixel</remote-id>
+       </upstream>
 </pkgmetadata>