* [gentoo-commits] proj/gnome:gnome-next commit in: media-libs/libopenraw/, media-libs/libopenraw/files/
@ 2011-09-13 22:31 Alexandre Restovtsev
0 siblings, 0 replies; 2+ messages in thread
From: Alexandre Restovtsev @ 2011-09-13 22:31 UTC (permalink / raw
To: gentoo-commits
commit: 9ff0551a189302ab075249064f14af5271fcc26b
Author: Priit Laes <plaes <AT> plaes <DOT> org>
AuthorDate: Tue Sep 13 09:37:45 2011 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Tue Sep 13 22:29:19 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=9ff0551a
media-libs/libopenraw: Fixes for gdk-pixbuf split
---
.../files/gnome-3-gdk-pixbuf-loader-path.patch | 35 ++++++++++++++++
media-libs/libopenraw/libopenraw-0.0.8-r1.ebuild | 43 ++++++++++++++++++++
2 files changed, 78 insertions(+), 0 deletions(-)
diff --git a/media-libs/libopenraw/files/gnome-3-gdk-pixbuf-loader-path.patch b/media-libs/libopenraw/files/gnome-3-gdk-pixbuf-loader-path.patch
new file mode 100644
index 0000000..8255787
--- /dev/null
+++ b/media-libs/libopenraw/files/gnome-3-gdk-pixbuf-loader-path.patch
@@ -0,0 +1,35 @@
+From 252cd9b20d7857091c0529955998b86d7a90e6c5 Mon Sep 17 00:00:00 2001
+From: Hubert Figuiere <hub@figuiere.net>
+Date: Thu, 22 Jul 2010 07:04:54 +0000
+Subject: Install the GdkPixbuf in the right place. (Closes #29208) (Vincent Untz)
+
+---
+diff --git a/configure.in b/configure.in
+index 1d44b9c..c16a20c 100644
+--- a/configure.in
++++ b/configure.in
+@@ -137,8 +137,7 @@ if test x$enable_gnome = xyes ; then
+ if test x$HAVE_LIBGLIB = xyes ; then
+ PKG_CHECK_MODULES(LIBGDKPIXBUF, gdk-pixbuf-2.0 >= $LIBGDKPIXBUF_REQUIRED,
+ [AC_DEFINE(HAVE_LIBGDKPIXBUF, 1, [Define to 1 to enable libgdkpixbuf support])
+- GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
+- GDK_PIXBUF_DIR="gtk-2.0/$GTK_VERSION/loaders"
++ GDK_PIXBUF_DIR=`$PKG_CONFIG --variable=gdk_pixbuf_moduledir gdk-pixbuf-2.0`
+ AC_SUBST(GDK_PIXBUF_DIR)
+ HAVE_LIBGDKPIXBUF=yes],
+ [HAVE_LIBGDKPIXBUF=no])
+diff --git a/gnome/Makefile.am b/gnome/Makefile.am
+index ecfe27d..2c0bca5 100644
+--- a/gnome/Makefile.am
++++ b/gnome/Makefile.am
+@@ -16,7 +16,7 @@ pkgconfig_DATA = $(PKG_CONFIG_FILES)
+
+ lib_LTLIBRARIES = $(GNOME_TARGETS)
+
+-loaderdir = $(libdir)/$(GDK_PIXBUF_DIR)
++loaderdir = $(GDK_PIXBUF_DIR)
+ loader_LTLIBRARIES = $(GDK_PIXBUF_PLUGIN)
+
+ libopenrawgnome_la_LDFLAGS = \
+--
+cgit v0.9.0.2-2-gbebe
diff --git a/media-libs/libopenraw/libopenraw-0.0.8-r1.ebuild b/media-libs/libopenraw/libopenraw-0.0.8-r1.ebuild
new file mode 100644
index 0000000..b44280c
--- /dev/null
+++ b/media-libs/libopenraw/libopenraw-0.0.8-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libopenraw/libopenraw-0.0.8.ebuild,v 1.13 2011/03/28 17:18:16 ssuominen Exp $
+
+EAPI=2
+
+inherit autotools eutils
+
+DESCRIPTION="A decoding library for RAW image formats"
+HOMEPAGE="http://libopenraw.freedesktop.org"
+SRC_URI="http://${PN}.freedesktop.org/download/${P}.tar.gz"
+
+LICENSE="GPL-3 LGPL-3"
+SLOT="0"
+KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
+IUSE="gtk static-libs test"
+
+RDEPEND="virtual/jpeg
+ dev-libs/libxml2
+ gtk? ( >=x11-libs/gdk-pixbuf-2.23 )"
+DEPEND="${RDEPEND}
+ >=dev-libs/boost-1.35
+ dev-util/pkgconfig
+ test? ( net-misc/curl )"
+
+src_prepare() {
+ epatch "${FILESDIR}/gnome-3-gdk-pixbuf-loader-path.patch"
+ eautoreconf || die
+}
+
+src_configure() {
+ econf \
+ --disable-dependency-tracking \
+ $(use_enable static-libs static) \
+ $(use_enable gtk gnome)
+}
+
+src_install() {
+ emake DESTDIR="${D}" install || die
+ dodoc AUTHORS ChangeLog NEWS README TODO
+
+ find "${D}" -name '*.la' -exec rm -f {} +
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] proj/gnome:gnome-next commit in: media-libs/libopenraw/, media-libs/libopenraw/files/
@ 2011-09-18 23:01 Alexandre Restovtsev
0 siblings, 0 replies; 2+ messages in thread
From: Alexandre Restovtsev @ 2011-09-18 23:01 UTC (permalink / raw
To: gentoo-commits
commit: a813c045cdb3d25470fe55cb373dec6f06aa3562
Author: Priit Laes <plaes <AT> plaes <DOT> org>
AuthorDate: Thu Sep 15 15:21:41 2011 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Sun Sep 18 22:09:06 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=a813c045
media-libs/libopenraw: Moved to tree \o/
---
.../files/gnome-3-gdk-pixbuf-loader-path.patch | 35 ----------------
media-libs/libopenraw/libopenraw-0.0.8-r1.ebuild | 43 --------------------
2 files changed, 0 insertions(+), 78 deletions(-)
diff --git a/media-libs/libopenraw/files/gnome-3-gdk-pixbuf-loader-path.patch b/media-libs/libopenraw/files/gnome-3-gdk-pixbuf-loader-path.patch
deleted file mode 100644
index 8255787..0000000
--- a/media-libs/libopenraw/files/gnome-3-gdk-pixbuf-loader-path.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-From 252cd9b20d7857091c0529955998b86d7a90e6c5 Mon Sep 17 00:00:00 2001
-From: Hubert Figuiere <hub@figuiere.net>
-Date: Thu, 22 Jul 2010 07:04:54 +0000
-Subject: Install the GdkPixbuf in the right place. (Closes #29208) (Vincent Untz)
-
----
-diff --git a/configure.in b/configure.in
-index 1d44b9c..c16a20c 100644
---- a/configure.in
-+++ b/configure.in
-@@ -137,8 +137,7 @@ if test x$enable_gnome = xyes ; then
- if test x$HAVE_LIBGLIB = xyes ; then
- PKG_CHECK_MODULES(LIBGDKPIXBUF, gdk-pixbuf-2.0 >= $LIBGDKPIXBUF_REQUIRED,
- [AC_DEFINE(HAVE_LIBGDKPIXBUF, 1, [Define to 1 to enable libgdkpixbuf support])
-- GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0`
-- GDK_PIXBUF_DIR="gtk-2.0/$GTK_VERSION/loaders"
-+ GDK_PIXBUF_DIR=`$PKG_CONFIG --variable=gdk_pixbuf_moduledir gdk-pixbuf-2.0`
- AC_SUBST(GDK_PIXBUF_DIR)
- HAVE_LIBGDKPIXBUF=yes],
- [HAVE_LIBGDKPIXBUF=no])
-diff --git a/gnome/Makefile.am b/gnome/Makefile.am
-index ecfe27d..2c0bca5 100644
---- a/gnome/Makefile.am
-+++ b/gnome/Makefile.am
-@@ -16,7 +16,7 @@ pkgconfig_DATA = $(PKG_CONFIG_FILES)
-
- lib_LTLIBRARIES = $(GNOME_TARGETS)
-
--loaderdir = $(libdir)/$(GDK_PIXBUF_DIR)
-+loaderdir = $(GDK_PIXBUF_DIR)
- loader_LTLIBRARIES = $(GDK_PIXBUF_PLUGIN)
-
- libopenrawgnome_la_LDFLAGS = \
---
-cgit v0.9.0.2-2-gbebe
diff --git a/media-libs/libopenraw/libopenraw-0.0.8-r1.ebuild b/media-libs/libopenraw/libopenraw-0.0.8-r1.ebuild
deleted file mode 100644
index b44280c..0000000
--- a/media-libs/libopenraw/libopenraw-0.0.8-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libopenraw/libopenraw-0.0.8.ebuild,v 1.13 2011/03/28 17:18:16 ssuominen Exp $
-
-EAPI=2
-
-inherit autotools eutils
-
-DESCRIPTION="A decoding library for RAW image formats"
-HOMEPAGE="http://libopenraw.freedesktop.org"
-SRC_URI="http://${PN}.freedesktop.org/download/${P}.tar.gz"
-
-LICENSE="GPL-3 LGPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
-IUSE="gtk static-libs test"
-
-RDEPEND="virtual/jpeg
- dev-libs/libxml2
- gtk? ( >=x11-libs/gdk-pixbuf-2.23 )"
-DEPEND="${RDEPEND}
- >=dev-libs/boost-1.35
- dev-util/pkgconfig
- test? ( net-misc/curl )"
-
-src_prepare() {
- epatch "${FILESDIR}/gnome-3-gdk-pixbuf-loader-path.patch"
- eautoreconf || die
-}
-
-src_configure() {
- econf \
- --disable-dependency-tracking \
- $(use_enable static-libs static) \
- $(use_enable gtk gnome)
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
- dodoc AUTHORS ChangeLog NEWS README TODO
-
- find "${D}" -name '*.la' -exec rm -f {} +
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-09-18 23:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-18 23:01 [gentoo-commits] proj/gnome:gnome-next commit in: media-libs/libopenraw/, media-libs/libopenraw/files/ Alexandre Restovtsev
-- strict thread matches above, loose matches on Subject: below --
2011-09-13 22:31 Alexandre Restovtsev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox