mirror of
https://github.com/dguglielmi/sunny-overlay.git
synced 2025-12-06 13:52:40 +01:00
- Bump grilo, grilo-plugins, gom and slot libmediaart.
This commit is contained in:
3
media-libs/libmediaart/Manifest
Normal file
3
media-libs/libmediaart/Manifest
Normal file
@@ -0,0 +1,3 @@
|
||||
AUX libmediaart-qt-version-automagic-fix.patch 1776 SHA256 97f5b5e052e41689147406e6a22de122b1003f90baec7db78ddf204c0a6d6dd9 SHA512 6c9b0b34ad7ac640e8c43657c45793a4fadb1bac0b0a67d2ad01c3cf5db3ef0d07707ae71b57489b83879295f8c15e03a2ff4b5e1dc559b7d5b8882fef28b784 WHIRLPOOL 63257ae08744e9501a8ed00dc7bde86a4d628b1877272142542a394726b121bf422b438c63fb41381b4c0ec21cb0c504d08729a1a45b748e7636c97bd1f11d8a
|
||||
DIST libmediaart-1.9.0.tar.xz 5814844 SHA256 94668adb29d4dc3115b0fd105942ebd5ca6f5f9dbb2afa8a191a73a747dd506f SHA512 fcfdad1d62710a39ea21daf23b13eb0b6d64a521f359153bb79247bae8e91fde3d879f807ed2528f3476425f5214cae755b117b4d06d78ee3af41bcc9a3b3ab4 WHIRLPOOL a78cf905853873d5f778b7ae157b2b260a55e3b07ff59d93fa7f95efb53f2b2adb918bb1a5eecc8a66e6d59ee172e9dea04bbadca4bdc20766d710127b1fef79
|
||||
EBUILD libmediaart-1.9.0.ebuild 1614 SHA256 af03e9a9063f1f069ef027543d2304809f386865e2e6abd1bbeff98fc70e0cbf SHA512 d96127603712d3b501c33a93c28b61825d655b8db707aa9eceecdd290372011e10615401cf9e231690693b20ee0b4e2e3b0f0471cff247411bba57f5ea9c6479 WHIRLPOOL 547b592557caa327d495c31daf2a3338126e1b138027da34b76a2ac2cd7a0cc6f6cf0a587ece6833204925d2acd365dbd835f07f6d03571a5bd5bf1ae76375f5
|
||||
@@ -0,0 +1,47 @@
|
||||
Solves automagic selection of Qt version.
|
||||
|
||||
https://bugs.gentoo.org/show_bug.cgi?id=523122
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=737174
|
||||
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index e9ead09..3ee710a 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -206,6 +206,10 @@ AC_ARG_ENABLE(qt,
|
||||
AS_HELP_STRING([--enable-qt],
|
||||
[enable Qt support, (MP3 album art) [[default=auto]]]),,
|
||||
[enable_qt=auto])
|
||||
+AC_ARG_WITH(qt-version,
|
||||
+ AS_HELP_STRING([--with-qt-version=major],
|
||||
+ [Force specific Qt version [[default=auto]]]),,
|
||||
+ [with_qt_version=auto])
|
||||
|
||||
selected_for_media_art="no (disabled)"
|
||||
|
||||
@@ -218,14 +222,18 @@ if test "x$enable_qt" == "xyes" && test "x$enable_gdkpixbuf" == "xyes"; then
|
||||
fi
|
||||
|
||||
if test "x$enable_qt" != "xno" && test "x$enable_gdkpixbuf" != "xyes"; then
|
||||
- PKG_CHECK_MODULES(QT5,
|
||||
- [Qt5Gui >= $QT5_REQUIRED],
|
||||
- [have_qt5=yes],
|
||||
- [have_qt5=no])
|
||||
- PKG_CHECK_MODULES(QT4,
|
||||
- [QtGui >= $QT4_REQUIRED],
|
||||
- [have_qt4=yes],
|
||||
- [have_qt4=no])
|
||||
+ if test "x$with_qt_version" == "xauto" || test "x$with_qt_version" == "x5"; then
|
||||
+ PKG_CHECK_MODULES(QT5,
|
||||
+ [Qt5Gui >= $QT5_REQUIRED],
|
||||
+ [have_qt5=yes],
|
||||
+ [have_qt5=no])
|
||||
+ fi
|
||||
+ if test "x$with_qt_version" == "xauto" || test "x$with_qt_version" == "x4"; then
|
||||
+ PKG_CHECK_MODULES(QT4,
|
||||
+ [QtGui >= $QT4_REQUIRED],
|
||||
+ [have_qt4=yes],
|
||||
+ [have_qt4=no])
|
||||
+ fi
|
||||
|
||||
if test "x$have_qt5" = "xyes"; then
|
||||
BACKEND_CFLAGS="$QT5_CFLAGS -fPIC"
|
||||
67
media-libs/libmediaart/libmediaart-1.9.0.ebuild
Normal file
67
media-libs/libmediaart/libmediaart-1.9.0.ebuild
Normal file
@@ -0,0 +1,67 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmediaart/libmediaart-0.7.0.ebuild,v 1.7 2015/03/15 13:28:53 pacho Exp $
|
||||
|
||||
EAPI="5"
|
||||
GCONF_DEBUG="no"
|
||||
VALA_USE_DEPEND="vapigen"
|
||||
VALA_MIN_API_VERSION="0.16"
|
||||
|
||||
inherit autotools gnome2 vala virtualx
|
||||
|
||||
DESCRIPTION="Manages, extracts and handles media art caches"
|
||||
HOMEPAGE="https://github.com/GNOME/libmediaart"
|
||||
|
||||
LICENSE="LGPL-2.1+"
|
||||
SLOT="2.0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ppc ppc64 ~sparc ~x86"
|
||||
IUSE="gtk +introspection qt4 qt5 vala"
|
||||
REQUIRED_USE="
|
||||
?? ( gtk qt4 qt5 )
|
||||
vala? ( introspection )
|
||||
"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-libs/glib-2.38.0:2
|
||||
gtk? ( >=x11-libs/gdk-pixbuf-2.12:2 )
|
||||
introspection? ( >=dev-libs/gobject-introspection-1.30 )
|
||||
qt4? ( dev-qt/qtgui:4 )
|
||||
qt5? ( dev-qt/qtgui:5 )
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
>=dev-util/gtk-doc-am-1.8
|
||||
virtual/pkgconfig
|
||||
vala? ( $(vala_depend) )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
|
||||
sed -i 's#DOC_MODULE=libmediaart#DOC_MODULE=libmediaart2#1' ${S}/docs/reference/libmediaart/Makefile.am
|
||||
|
||||
use vala && vala_src_prepare
|
||||
epatch "${FILESDIR}/${PN}-qt-version-automagic-fix.patch" #523122
|
||||
eautoreconf
|
||||
gnome2_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf=""
|
||||
if use qt4 ; then
|
||||
myconf="${myconf} --enable-qt --with-qt-version=4"
|
||||
elif use qt5 ; then
|
||||
myconf="${myconf} --enable-qt --with-qt-version=5"
|
||||
else
|
||||
myconf="${myconf} --disable-qt"
|
||||
fi
|
||||
|
||||
gnome2_src_configure \
|
||||
--enable-unit-tests \
|
||||
$(use_enable gtk gdkpixbuf) \
|
||||
$(use_enable introspection) \
|
||||
$(use_enable vala) \
|
||||
${myconf}
|
||||
}
|
||||
|
||||
src_test() {
|
||||
dbus-launch Xemake check #513502
|
||||
}
|
||||
Reference in New Issue
Block a user