* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/files/, media-video/gxine/
@ 2021-01-07 10:08 David Seifert
0 siblings, 0 replies; only message in thread
From: David Seifert @ 2021-01-07 10:08 UTC (permalink / raw
To: gentoo-commits
commit: df7f71485a7a8c730799e7cdedf490d432a76f2b
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Thu Jan 7 10:08:21 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Thu Jan 7 10:08:21 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df7f7148
media-video/gxine: Port to EAPI 7
Closes: https://bugs.gentoo.org/709306
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
.../gxine/files/gxine-0.5.909-fno-common.patch | 22 +++++++
media-video/gxine/gxine-0.5.909-r1.ebuild | 71 ++++++++++++++++++++++
2 files changed, 93 insertions(+)
diff --git a/media-video/gxine/files/gxine-0.5.909-fno-common.patch b/media-video/gxine/files/gxine-0.5.909-fno-common.patch
new file mode 100644
index 00000000000..32ad6c3770b
--- /dev/null
+++ b/media-video/gxine/files/gxine-0.5.909-fno-common.patch
@@ -0,0 +1,22 @@
+https://bugs.gentoo.org/709306
+--- a/src/main.c
++++ b/src/main.c
+@@ -75,6 +75,7 @@
+ * globals
+ */
+
++extern int gxine_init_count;
+ int verbosity;
+ GtkWidget *app = NULL;
+ const char *plugindir, *bindir, *logodir, *pixmapdir, *icondir, *miscdir, *confdir;
+--- a/src/utils.h
++++ b/src/utils.h
+@@ -108,7 +108,7 @@ void do_pending_events (void);
+
+ const char *get_copyright_notice (void);
+
+-int gxine_init_count;
++extern int gxine_init_count;
+ static inline void gxine_init_add (GSourceFunc func, gpointer data)
+ {
+ ++gxine_init_count;
diff --git a/media-video/gxine/gxine-0.5.909-r1.ebuild b/media-video/gxine/gxine-0.5.909-r1.ebuild
new file mode 100644
index 00000000000..5c596580769
--- /dev/null
+++ b/media-video/gxine/gxine-0.5.909-r1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools xdg
+
+DESCRIPTION="GTK+ Front-End for libxine"
+HOMEPAGE="http://xine.sourceforge.net/"
+SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="l10n_cs l10n_de lirc nls udev xinerama"
+
+DEPEND="
+ media-libs/xine-lib[gtk]
+ x11-libs/gtk+:2
+ dev-lang/spidermonkey:0
+ dev-libs/glib
+ x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXrender
+ x11-libs/libxcb
+ lirc? ( app-misc/lirc )
+ nls? ( virtual/libintl )
+ udev? ( dev-libs/libgudev:= )
+ xinerama? ( x11-libs/libXinerama )"
+RDEPEND="${DEPEND}"
+BDEPEND="
+ virtual/pkgconfig
+ nls? ( sys-devel/gettext )"
+
+PATCHES=( "${FILESDIR}"/${P}-fno-common.patch )
+
+src_prepare() {
+ default
+ # need to disable calling of xine-list when running without
+ # userpriv, otherwise we get sandbox violations (bug #233847)
+ if [[ ${EUID} == 0 ]]; then
+ sed -i -e 's:^XINE_LIST=.*$:XINE_LIST=:' configure.ac || die
+ fi
+
+ eautoreconf
+}
+
+src_configure() {
+ econf \
+ --enable-watchdog \
+ --with-xcb \
+ --without-browser-plugin \
+ --without-dbus \
+ --without-hal \
+ $(use_enable nls) \
+ $(use_enable lirc) \
+ $(use_with udev gudev) \
+ $(use_with xinerama)
+}
+
+src_install() {
+ emake DESTDIR="${D}" \
+ docdir="${EPREFIX}"/usr/share/doc/${PF} \
+ docsdir="${EPREFIX}"/usr/share/doc/${PF} \
+ install
+
+ dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO
+
+ use l10n_cs && dodoc README.cs
+ use l10n_de && dodoc README.de
+}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-01-07 10:08 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-01-07 10:08 [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/files/, media-video/gxine/ David Seifert
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox