public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/
Date: Tue, 27 Jun 2017 12:24:02 +0000 (UTC)	[thread overview]
Message-ID: <1498566236.ec901e01a4918e587a9a720935688388ac1880b3.kensington@gentoo> (raw)

commit:     ec901e01a4918e587a9a720935688388ac1880b3
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 27 12:23:45 2017 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Tue Jun 27 12:23:56 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec901e01

media-libs/libopenraw: version bump 0.1.2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/libopenraw/Manifest                |  1 +
 media-libs/libopenraw/libopenraw-0.1.2.ebuild | 54 +++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/media-libs/libopenraw/Manifest b/media-libs/libopenraw/Manifest
index 07f0a5546d8..0a0aa4ae916 100644
--- a/media-libs/libopenraw/Manifest
+++ b/media-libs/libopenraw/Manifest
@@ -1,3 +1,4 @@
 DIST libopenraw-0.0.9.tar.bz2 478687 SHA256 49fd1adf0a0228c7a17a79bf98d8d03664195feae1e50f4ddd1b20162626e18f SHA512 88d475d27719212686a0a5a08da04d6879fd456ec8f7531f401217df97f4f3d4c52dc8c4fb1c6ca88c12d6a67ecd516b151c5e9dceba9cbfcd13150fe81d6db5 WHIRLPOOL 52d407b1d443fe7c38c59274b3267feb4dffeca9114a39cad925c346ae21d1378cbceba4ce1973657073f8890bf50a18c476ba3451d806fe7f50824bb935c559
 DIST libopenraw-0.1.0.tar.bz2 525449 SHA256 4dede1db9b85c9c22a1ddaf37839f2713746a00b81a6d4623d66556000cb76cf SHA512 f3b867d831d03350e487a98f08cadf6a24d5e4296129a401c0066cfdf0e628663e821ed0b7e42613d1533513a9c36a1693d6c3cbbd918246dbdfbb111b5a470a WHIRLPOOL 4101f34e20d4f73560086ed849b5c648eb3f399610ee77285361a13f1343255d2f95bd6b045b80505695e4f0125d491cec37e0f8c525d953a7bf12009f031875
 DIST libopenraw-0.1.1.tar.bz2 561718 SHA256 bbba7fccb2b8ef12c0fa405f6830fa7c9a91c71ea5e97564833d09a1078aa357 SHA512 ac8195fddc165d32337f518cc89297b91a8c2805132e380a261e9855f88ecbe074d6090f1f7b547c18fd2016b313a19e04e0428f9ba85b18928115b9dc0c1bc2 WHIRLPOOL 1af884c6e2119e134cf50792e0a54bc2f315ee4b7aabb84fd9ba0d6becc0eb5908ba4708f6447a3abf08ca3be413ebb4dc88af457df9477b827a284989ed8b59
+DIST libopenraw-0.1.2.tar.bz2 563981 SHA256 d15e86141add6a652f316ab8884895d8399d37c17510b34f61e266f906a99683 SHA512 edd7e5a71feecbce1d5a20622bd3c7111acd2d4792038fd19920367ebb55d2cc7614627b9739512bbe34d6b5ae2eb65a4da9cee70c400b5cb846bf5fff08efc8 WHIRLPOOL 1b882a034dff8e7cc6df627d4c4c198e50a23e1619c1cc3ab43d3e8d318401888aeea9df5dcd1b29587693736226cdeff09e4a026f3b09e9a6a1b2aec60f3dea

diff --git a/media-libs/libopenraw/libopenraw-0.1.2.ebuild b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
new file mode 100644
index 00000000000..8e68d515706
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.1.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit gnome2-utils ltprune
+
+DESCRIPTION="A decoding library for RAW image formats"
+HOMEPAGE="https://libopenraw.freedesktop.org/wiki/"
+SRC_URI="https://${PN}.freedesktop.org/download/${P}.tar.bz2"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0/7"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
+IUSE="gtk static-libs test"
+
+RDEPEND="
+	dev-libs/libxml2
+	virtual/jpeg:0
+	gtk? (
+		dev-libs/glib:2
+		>=x11-libs/gdk-pixbuf-2.24.0:2
+	)
+"
+DEPEND="${RDEPEND}
+	>=dev-libs/boost-1.35
+	virtual/pkgconfig
+	test? ( net-misc/curl )
+"
+
+DOCS=( AUTHORS ChangeLog NEWS README TODO )
+
+src_configure() {
+	econf \
+		--with-boost="${EPREFIX}"/usr \
+		$(use_enable static-libs static) \
+		$(use_enable gtk gnome)
+}
+
+src_install() {
+	default
+	prune_libtool_files --all
+}
+
+pkg_preinst() {
+	use gtk && gnome2_gdk_pixbuf_savelist
+}
+
+pkg_postinst() {
+	use gtk && gnome2_gdk_pixbuf_update
+}
+
+pkg_postrm() {
+	use gtk && gnome2_gdk_pixbuf_update
+}


             reply	other threads:[~2017-06-27 12:24 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-27 12:24 Michael Palimaka [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-10-13 13:51 [gentoo-commits] repo/gentoo:master commit in: media-libs/libopenraw/ Andreas Sturmlechner
2024-10-12 16:22 Sam James
2024-10-04 21:40 Andreas Sturmlechner
2024-10-04 17:30 Arthur Zamarin
2024-10-04 14:12 Andreas Sturmlechner
2024-10-04  2:40 Sam James
2024-10-04  2:40 Sam James
2024-10-04  2:40 Sam James
2024-10-04  2:40 Sam James
2024-04-19 10:38 Sam James
2024-02-06 11:02 Michał Górny
2023-11-07 20:35 Sam James
2023-09-09  7:54 Andreas Sturmlechner
2023-09-09  7:32 Andreas Sturmlechner
2023-09-07 20:15 Sam James
2023-08-04  9:28 Sam James
2023-07-24 20:12 WANG Xuerui
2023-07-19  9:33 Sam James
2023-07-18 21:25 Sam James
2023-07-18 21:25 Sam James
2023-07-18 21:25 Sam James
2023-07-18 21:25 Sam James
2023-06-12  0:45 Sam James
2023-05-03  7:49 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-02-22 16:56 Sam James
2023-01-13 16:47 Sam James
2023-01-13 16:31 Arthur Zamarin
2023-01-13 13:37 Arthur Zamarin
2023-01-13 12:20 Arthur Zamarin
2022-12-31 23:09 Sam James
2022-12-31 23:09 Sam James
2022-12-18 20:33 Arthur Zamarin
2022-12-18 20:17 Arthur Zamarin
2022-11-29 15:58 WANG Xuerui
2022-10-29 20:17 Sam James
2022-10-29 20:16 Sam James
2021-08-23 22:59 Marek Szuba
2021-04-12 23:33 Sam James
2021-02-15  9:03 Andreas Sturmlechner
2021-02-15  0:38 Sam James
2021-02-05 12:29 Sam James
2021-02-03  3:11 Sam James
2021-02-02  4:19 Sam James
2021-02-01 22:15 Sam James
2021-02-01 22:15 Sam James
2021-02-01 17:31 Andreas Sturmlechner
2020-12-02  0:32 Aaron Bauman
2018-11-18  0:36 Gilles Dartiguelongue
2018-11-17 21:18 Gilles Dartiguelongue
2018-11-17 18:48 Gilles Dartiguelongue
2018-09-30 17:45 Andreas Sturmlechner
2018-07-20 22:24 Sergei Trofimovich
2018-03-31 18:01 Sebastian Pipping
2018-03-29  6:37 Sergei Trofimovich
2018-03-25 17:18 Markus Meier
2018-03-20  8:21 Sergei Trofimovich
2018-03-06 13:32 Tobias Klausmann
2018-02-21 18:48 Jason Zaman
2018-02-12 20:06 Sergei Trofimovich
2018-02-11 19:13 Thomas Deutschmann
2018-02-10 18:38 Sergei Trofimovich
2018-02-10 12:56 Jeroen Roovers
2018-01-20 23:03 Andreas Sturmlechner
2017-04-16 15:43 Gilles Dartiguelongue

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1498566236.ec901e01a4918e587a9a720935688388ac1880b3.kensington@gentoo \
    --to=kensington@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox