public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2017-01-15 17:36 David Seifert
  0 siblings, 0 replies; 16+ messages in thread
From: David Seifert @ 2017-01-15 17:36 UTC (permalink / raw
  To: gentoo-commits

commit:     e2e223f0f4f5ba0ca6ba5bedcd040fd0b139a096
Author:     Matija Skala <mskala <AT> gmx <DOT> com>
AuthorDate: Fri Jan  6 10:24:14 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 17:36:24 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e223f0

media-video/gxine: add missing RDEPEND variable

Closes: https://github.com/gentoo/gentoo/pull/3348

 media-video/gxine/{gxine-0.5.908.ebuild => gxine-0.5.908-r1.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-video/gxine/gxine-0.5.908.ebuild b/media-video/gxine/gxine-0.5.908-r1.ebuild
similarity index 98%
rename from media-video/gxine/gxine-0.5.908.ebuild
rename to media-video/gxine/gxine-0.5.908-r1.ebuild
index cea5adb..4d3dbb5 100644
--- a/media-video/gxine/gxine-0.5.908.ebuild
+++ b/media-video/gxine/gxine-0.5.908-r1.ebuild
@@ -32,6 +32,7 @@ COMMON_DEPEND=">=media-libs/xine-lib-1.1.20
 DEPEND="${COMMON_DEPEND}
 	virtual/pkgconfig
 	nls? ( sys-devel/gettext )"
+RDEPEND="${COMMON_DEPEND}"
 
 src_prepare() {
 	# ld: cannot find -ljs


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2021-01-20 10:13 David Seifert
  0 siblings, 0 replies; 16+ messages in thread
From: David Seifert @ 2021-01-20 10:13 UTC (permalink / raw
  To: gentoo-commits

commit:     7abd6b2ce757a55f6f608c98d8dece0e59d0beae
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Wed Jan 20 10:12:48 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Jan 20 10:12:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7abd6b2c

media-video/gxine: Remove old

Bug: https://bugs.gentoo.org/764281
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 media-video/gxine/gxine-0.5.909.ebuild | 88 ----------------------------------
 1 file changed, 88 deletions(-)

diff --git a/media-video/gxine/gxine-0.5.909.ebuild b/media-video/gxine/gxine-0.5.909.ebuild
deleted file mode 100644
index 76f6aac1d19..00000000000
--- a/media-video/gxine/gxine-0.5.909.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils gnome2-utils multilib nsplugins xdg-utils
-
-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 nsplugin udev xinerama"
-
-COMMON_DEPEND=">=media-libs/xine-lib-1.1.20[gtk]
-	x11-libs/gtk+:2
-	>=dev-libs/glib-2
-	>=dev-lang/spidermonkey-1.8.2.15:0
-	x11-libs/libX11
-	x11-libs/libXext
-	x11-libs/libXrender
-	x11-libs/libxcb
-	lirc? ( app-misc/lirc )
-	nls? ( virtual/libintl )
-	nsplugin? ( dev-libs/nspr
-		x11-libs/libXaw
-		x11-libs/libXt )
-	udev? ( dev-libs/libgudev:= )
-	xinerama? ( x11-libs/libXinerama )"
-DEPEND="${COMMON_DEPEND}
-	virtual/pkgconfig
-	nls? ( sys-devel/gettext )"
-RDEPEND="${COMMON_DEPEND}"
-
-src_prepare() {
-	# 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 \
-		$(use_enable nls) \
-		$(use_enable lirc) \
-		--enable-watchdog \
-		--with-xcb \
-		$(has_version '<dev-lang/spidermonkey-1.8.5' && echo --with-spidermonkey=/usr/include/js) \
-		$(use_with nsplugin browser-plugin) \
-		$(use_with udev gudev) \
-		--without-hal \
-		--without-dbus \
-		$(use_with xinerama)
-}
-
-src_install() {
-	emake DESTDIR="${D}" \
-		docdir=/usr/share/doc/${PF} \
-		docsdir=/usr/share/doc/${PF} \
-		install
-
-	dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO
-
-	use l10n_cs && dodoc README.cs
-	use l10n_de && dodoc README.de
-
-	use nsplugin && inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-	gnome2_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2021-01-20  1:20 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-01-20  1:20 UTC (permalink / raw
  To: gentoo-commits

commit:     9dc115f68c8772646ccb71e199c171a6a5692043
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 20 01:20:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jan 20 01:20:02 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dc115f6

media-video/gxine: Stabilize 0.5.909-r1 ppc64, #764281

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-video/gxine/gxine-0.5.909-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/gxine/gxine-0.5.909-r1.ebuild b/media-video/gxine/gxine-0.5.909-r1.ebuild
index 7d68ece3cc0..f8dca86551c 100644
--- a/media-video/gxine/gxine-0.5.909-r1.ebuild
+++ b/media-video/gxine/gxine-0.5.909-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="l10n_cs l10n_de lirc nls udev xinerama"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2021-01-18  2:55 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-01-18  2:55 UTC (permalink / raw
  To: gentoo-commits

commit:     812520fb1c6083d1d13ff548249d1be1897f9c5b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 02:55:05 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 02:55:05 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=812520fb

media-video/gxine: Stabilize 0.5.909-r1 ppc, #764281

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-video/gxine/gxine-0.5.909-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/gxine/gxine-0.5.909-r1.ebuild b/media-video/gxine/gxine-0.5.909-r1.ebuild
index c029855ac4d..7d68ece3cc0 100644
--- a/media-video/gxine/gxine-0.5.909-r1.ebuild
+++ b/media-video/gxine/gxine-0.5.909-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ppc ~ppc64 x86"
 IUSE="l10n_cs l10n_de lirc nls udev xinerama"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2021-01-18  2:54 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-01-18  2:54 UTC (permalink / raw
  To: gentoo-commits

commit:     5b2b0e019b81d8f2e6e9115718168ff293e2e392
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 02:54:16 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 02:54:16 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b2b0e01

media-video/gxine: Stabilize 0.5.909-r1 amd64, #764281

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-video/gxine/gxine-0.5.909-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/gxine/gxine-0.5.909-r1.ebuild b/media-video/gxine/gxine-0.5.909-r1.ebuild
index 43780582b43..c029855ac4d 100644
--- a/media-video/gxine/gxine-0.5.909-r1.ebuild
+++ b/media-video/gxine/gxine-0.5.909-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE="l10n_cs l10n_de lirc nls udev xinerama"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2021-01-18  1:52 Sam James
  0 siblings, 0 replies; 16+ messages in thread
From: Sam James @ 2021-01-18  1:52 UTC (permalink / raw
  To: gentoo-commits

commit:     1ca13bd84ab8f2234836a547cfb6bd16cd2705a3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 18 01:51:52 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jan 18 01:51:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ca13bd8

media-video/gxine: Stabilize 0.5.909-r1 x86, #764281

Signed-off-by: Sam James <sam <AT> gentoo.org>

 media-video/gxine/gxine-0.5.909-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/gxine/gxine-0.5.909-r1.ebuild b/media-video/gxine/gxine-0.5.909-r1.ebuild
index 5c596580769..43780582b43 100644
--- a/media-video/gxine/gxine-0.5.909-r1.ebuild
+++ b/media-video/gxine/gxine-0.5.909-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~ppc ~ppc64 x86"
 IUSE="l10n_cs l10n_de lirc nls udev xinerama"
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2020-12-02  0:32 Aaron Bauman
  0 siblings, 0 replies; 16+ messages in thread
From: Aaron Bauman @ 2020-12-02  0:32 UTC (permalink / raw
  To: gentoo-commits

commit:     138e5c7218755e4fe807520f7fa9821b05443545
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  1 23:52:53 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Wed Dec  2 00:31:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=138e5c72

media-video/gxine: drop old

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 media-video/gxine/Manifest                |   1 -
 media-video/gxine/gxine-0.5.907-r1.ebuild | 101 ------------------------------
 2 files changed, 102 deletions(-)

diff --git a/media-video/gxine/Manifest b/media-video/gxine/Manifest
index b57a69d7a9d..002400a072d 100644
--- a/media-video/gxine/Manifest
+++ b/media-video/gxine/Manifest
@@ -1,2 +1 @@
-DIST gxine-0.5.907.tar.xz 910528 BLAKE2B 6c45e1b1d9819bdf9f51fbb3c8be5265144ae62f4e419eb4ab002b14c9705b48f943b28a67ff826a90e945679d487f16c9188ed45f26aa8fda0b0b45ddfe7657 SHA512 dd35c8a8810c233e81a28e9f10504645662d60dc9609451e7c49c5d516bb041b61a3b9c8f330021af1e527064cf3f62f37bde98402df7426f501d0c78c571045
 DIST gxine-0.5.909.tar.xz 928544 BLAKE2B 4b649aca2602eafb5931f5f869d00d9e50f8e23c416bba0a661d895630f70840591cd3286626fc024deb45fe1484d8f640c2fb1412f536b665e6ff6b8091ce40 SHA512 87e65bb87fa416535f76253e4394447c6cd7dfaaa209b76c07b9aa81aeca0ca09399991bb2be8e6928fa3883ff61b155e173610c6c28aab10f5b1487e0699215

diff --git a/media-video/gxine/gxine-0.5.907-r1.ebuild b/media-video/gxine/gxine-0.5.907-r1.ebuild
deleted file mode 100644
index 105163c36e4..00000000000
--- a/media-video/gxine/gxine-0.5.907-r1.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils gnome2-utils multilib nsplugins xdg-utils
-
-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 nsplugin udev +xcb xinerama"
-
-COMMON_DEPEND=">=media-libs/xine-lib-1.1.20
-	x11-libs/gtk+:2
-	>=dev-libs/glib-2
-	>=dev-lang/spidermonkey-1.8.2.15:0
-	x11-libs/libX11
-	x11-libs/libXext
-	x11-libs/libXrender
-	lirc? ( app-misc/lirc )
-	nls? ( virtual/libintl )
-	nsplugin? ( dev-libs/nspr
-		x11-libs/libXaw
-		x11-libs/libXt )
-	udev? ( dev-libs/libgudev:= )
-	xcb? ( x11-libs/libxcb )
-	xinerama? ( x11-libs/libXinerama )"
-DEPEND="${COMMON_DEPEND}
-	virtual/pkgconfig
-	nls? ( sys-devel/gettext )"
-
-src_prepare() {
-	# ld: cannot find -ljs
-	sed -i -e '/JS_LIBS="`spidermonkey_locate_lib/s:js:mozjs:' m4/_js.m4 || die
-
-	if has_version '>=dev-lang/spidermonkey-1.8.7:0'; then
-		sed -i -e 's:mozjs185:mozjs187:' m4/_js.m4 || die #422983
-	fi
-
-	epatch \
-		"${FILESDIR}"/${PN}-0.5.905-desktop.patch \
-		"${FILESDIR}"/${PN}-0.5.905-fix-nspr-useage.patch \
-		"${FILESDIR}"/${PN}-0.5.906-endif.patch \
-		"${FILESDIR}"/${PN}-0.5.907-glib-2.31.patch \
-		"${FILESDIR}"/${PN}-0.5.907-underlinking.patch
-
-	# 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 \
-		$(use_enable nls) \
-		$(use_enable lirc) \
-		--enable-watchdog \
-		$(use_with xcb) \
-		$(has_version '<dev-lang/spidermonkey-1.8.5' && echo --with-spidermonkey=/usr/include/js) \
-		$(use_with nsplugin browser-plugin) \
-		$(use_with udev gudev) \
-		--without-hal \
-		--without-dbus \
-		$(use_with xinerama)
-}
-
-src_install() {
-	emake DESTDIR="${D}" \
-		docdir=/usr/share/doc/${PF} \
-		docsdir=/usr/share/doc/${PF} \
-		install
-
-	dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO
-
-	use l10n_cs && dodoc README.cs
-	use l10n_de && dodoc README.de
-
-	use nsplugin && inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-	gnome2_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2020-01-23 19:18 Matt Turner
  0 siblings, 0 replies; 16+ messages in thread
From: Matt Turner @ 2020-01-23 19:18 UTC (permalink / raw
  To: gentoo-commits

commit:     160cd68a1e66d8a0586f53a293a421e66c1010d5
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 23 19:13:19 2020 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Jan 23 19:17:59 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160cd68a

media-video/gxine: Drop IUSE=xcb

Closes: https://bugs.gentoo.org/705442
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 media-video/gxine/gxine-0.5.909.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-video/gxine/gxine-0.5.909.ebuild b/media-video/gxine/gxine-0.5.909.ebuild
index 6dbccad0720..9619bbb4e5b 100644
--- a/media-video/gxine/gxine-0.5.909.ebuild
+++ b/media-video/gxine/gxine-0.5.909.ebuild
@@ -11,7 +11,7 @@ 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 nsplugin udev +xcb xinerama"
+IUSE="l10n_cs l10n_de lirc nls nsplugin udev xinerama"
 
 COMMON_DEPEND=">=media-libs/xine-lib-1.1.20[gtk]
 	x11-libs/gtk+:2
@@ -20,13 +20,13 @@ COMMON_DEPEND=">=media-libs/xine-lib-1.1.20[gtk]
 	x11-libs/libX11
 	x11-libs/libXext
 	x11-libs/libXrender
+	x11-libs/libxcb
 	lirc? ( app-misc/lirc )
 	nls? ( virtual/libintl )
 	nsplugin? ( dev-libs/nspr
 		x11-libs/libXaw
 		x11-libs/libXt )
 	udev? ( dev-libs/libgudev:= )
-	xcb? ( x11-libs/libxcb )
 	xinerama? ( x11-libs/libXinerama )"
 DEPEND="${COMMON_DEPEND}
 	virtual/pkgconfig
@@ -48,7 +48,7 @@ src_configure() {
 		$(use_enable nls) \
 		$(use_enable lirc) \
 		--enable-watchdog \
-		$(use_with xcb) \
+		--with-xcb \
 		$(has_version '<dev-lang/spidermonkey-1.8.5' && echo --with-spidermonkey=/usr/include/js) \
 		$(use_with nsplugin browser-plugin) \
 		$(use_with udev gudev) \


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2019-05-19 15:48 Thomas Deutschmann
  0 siblings, 0 replies; 16+ messages in thread
From: Thomas Deutschmann @ 2019-05-19 15:48 UTC (permalink / raw
  To: gentoo-commits

commit:     75abd0b13bc03a6b0da4d2b31eb2a874f140ea6b
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun May 19 15:02:52 2019 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun May 19 15:02:52 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75abd0b1

media-video/gxine: x86 stable (bug #681488)

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 media-video/gxine/gxine-0.5.909.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/gxine/gxine-0.5.909.ebuild b/media-video/gxine/gxine-0.5.909.ebuild
index 9fc516948a8..832feba7de6 100644
--- a/media-video/gxine/gxine-0.5.909.ebuild
+++ b/media-video/gxine/gxine-0.5.909.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 IUSE="l10n_cs l10n_de lirc nls nsplugin udev +xcb xinerama"
 
 COMMON_DEPEND=">=media-libs/xine-lib-1.1.20[gtk]


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2019-04-19 17:58 Aaron Bauman
  0 siblings, 0 replies; 16+ messages in thread
From: Aaron Bauman @ 2019-04-19 17:58 UTC (permalink / raw
  To: gentoo-commits

commit:     4ef9016762f52f0a052cd0faf709a3697aab0667
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 17:57:38 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 17:57:38 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ef90167

media-video/gxine: amd64 stable wrt bug #681488

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

 media-video/gxine/gxine-0.5.909.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/gxine/gxine-0.5.909.ebuild b/media-video/gxine/gxine-0.5.909.ebuild
index 6dc406efbed..70bb68e471b 100644
--- a/media-video/gxine/gxine-0.5.909.ebuild
+++ b/media-video/gxine/gxine-0.5.909.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE="l10n_cs l10n_de lirc nls nsplugin udev +xcb xinerama"
 
 COMMON_DEPEND=">=media-libs/xine-lib-1.1.20[gtk]


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2019-04-19  7:22 Pacho Ramos
  0 siblings, 0 replies; 16+ messages in thread
From: Pacho Ramos @ 2019-04-19  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     7ab58257981444b49d25ef1bd4feab88849b0012
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 07:21:41 2019 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 07:21:53 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ab58257

media-video/gxine: Drop old

Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 media-video/gxine/Manifest                |   1 -
 media-video/gxine/gxine-0.5.908-r1.ebuild | 101 ------------------------------
 2 files changed, 102 deletions(-)

diff --git a/media-video/gxine/Manifest b/media-video/gxine/Manifest
index b2ddb7bceb9..b57a69d7a9d 100644
--- a/media-video/gxine/Manifest
+++ b/media-video/gxine/Manifest
@@ -1,3 +1,2 @@
 DIST gxine-0.5.907.tar.xz 910528 BLAKE2B 6c45e1b1d9819bdf9f51fbb3c8be5265144ae62f4e419eb4ab002b14c9705b48f943b28a67ff826a90e945679d487f16c9188ed45f26aa8fda0b0b45ddfe7657 SHA512 dd35c8a8810c233e81a28e9f10504645662d60dc9609451e7c49c5d516bb041b61a3b9c8f330021af1e527064cf3f62f37bde98402df7426f501d0c78c571045
-DIST gxine-0.5.908.tar.xz 917780 BLAKE2B ef5fc2e9003c6ff206d2655d1bdc127d3b7ca3994c015c0f275e987ea8356c38e1e2100118c2207b048603a2ed81db3c8a31059277e83be0c947fb66effb6bdc SHA512 6172f442948655178fde837a5fa9194fdb06b5cc50f8cbbfcd153b72f9a360a5497bd7ebd09c8f2340547fd7a0c834d5c673712a13202768bf0c762ee41c5454
 DIST gxine-0.5.909.tar.xz 928544 BLAKE2B 4b649aca2602eafb5931f5f869d00d9e50f8e23c416bba0a661d895630f70840591cd3286626fc024deb45fe1484d8f640c2fb1412f536b665e6ff6b8091ce40 SHA512 87e65bb87fa416535f76253e4394447c6cd7dfaaa209b76c07b9aa81aeca0ca09399991bb2be8e6928fa3883ff61b155e173610c6c28aab10f5b1487e0699215

diff --git a/media-video/gxine/gxine-0.5.908-r1.ebuild b/media-video/gxine/gxine-0.5.908-r1.ebuild
deleted file mode 100644
index 25fa1cc225e..00000000000
--- a/media-video/gxine/gxine-0.5.908-r1.ebuild
+++ /dev/null
@@ -1,101 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools eutils gnome2-utils multilib nsplugins xdg-utils
-
-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 nsplugin udev +xcb xinerama"
-
-COMMON_DEPEND=">=media-libs/xine-lib-1.1.20
-	x11-libs/gtk+:2
-	>=dev-libs/glib-2
-	>=dev-lang/spidermonkey-1.8.2.15:0
-	x11-libs/libX11
-	x11-libs/libXext
-	x11-libs/libXrender
-	lirc? ( app-misc/lirc )
-	nls? ( virtual/libintl )
-	nsplugin? ( dev-libs/nspr
-		x11-libs/libXaw
-		x11-libs/libXt )
-	udev? ( virtual/libgudev:= )
-	xcb? ( x11-libs/libxcb )
-	xinerama? ( x11-libs/libXinerama )"
-DEPEND="${COMMON_DEPEND}
-	virtual/pkgconfig
-	nls? ( sys-devel/gettext )"
-RDEPEND="${COMMON_DEPEND}"
-
-src_prepare() {
-	# ld: cannot find -ljs
-	sed -i -e '/JS_LIBS="`spidermonkey_locate_lib/s:js:mozjs:' m4/_js.m4 || die
-
-	if has_version '>=dev-lang/spidermonkey-1.8.7:0'; then
-		sed -i -e 's:mozjs185:mozjs187:' m4/_js.m4 || die #422983
-	fi
-
-	epatch \
-		"${FILESDIR}"/${PN}-0.5.905-desktop.patch \
-		"${FILESDIR}"/${PN}-0.5.905-fix-nspr-useage.patch \
-		"${FILESDIR}"/${PN}-0.5.906-endif.patch \
-		"${FILESDIR}"/${PN}-0.5.907-underlinking.patch
-
-	# 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 \
-		$(use_enable nls) \
-		$(use_enable lirc) \
-		--enable-watchdog \
-		$(use_with xcb) \
-		$(has_version '<dev-lang/spidermonkey-1.8.5' && echo --with-spidermonkey=/usr/include/js) \
-		$(use_with nsplugin browser-plugin) \
-		$(use_with udev gudev) \
-		--without-hal \
-		--without-dbus \
-		$(use_with xinerama)
-}
-
-src_install() {
-	emake DESTDIR="${D}" \
-		docdir=/usr/share/doc/${PF} \
-		docsdir=/usr/share/doc/${PF} \
-		install
-
-	dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO
-
-	use l10n_cs && dodoc README.cs
-	use l10n_de && dodoc README.de
-
-	use nsplugin && inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
-}
-
-pkg_preinst() {
-	gnome2_icon_savelist
-}
-
-pkg_postinst() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-	gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-	xdg_desktop_database_update
-	xdg_mimeinfo_database_update
-	gnome2_icon_cache_update
-}


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2019-04-19  7:22 Pacho Ramos
  0 siblings, 0 replies; 16+ messages in thread
From: Pacho Ramos @ 2019-04-19  7:22 UTC (permalink / raw
  To: gentoo-commits

commit:     1f381d57aaf4b85da9b79d584ee5b852f4770fd9
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 19 07:20:42 2019 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Fri Apr 19 07:21:52 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f381d57

media-video/gxine: Needs xine-lib[gtk] to build

Bug: https://bugs.gentoo.org/681488
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>

 media-video/gxine/gxine-0.5.909.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/gxine/gxine-0.5.909.ebuild b/media-video/gxine/gxine-0.5.909.ebuild
index d8154294cae..6dc406efbed 100644
--- a/media-video/gxine/gxine-0.5.909.ebuild
+++ b/media-video/gxine/gxine-0.5.909.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
 IUSE="l10n_cs l10n_de lirc nls nsplugin udev +xcb xinerama"
 
-COMMON_DEPEND=">=media-libs/xine-lib-1.1.20
+COMMON_DEPEND=">=media-libs/xine-lib-1.1.20[gtk]
 	x11-libs/gtk+:2
 	>=dev-libs/glib-2
 	>=dev-lang/spidermonkey-1.8.2.15:0


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2018-06-09 14:15 Aaron Bauman
  0 siblings, 0 replies; 16+ messages in thread
From: Aaron Bauman @ 2018-06-09 14:15 UTC (permalink / raw
  To: gentoo-commits

commit:     50c7fafc495df5984f0797cc992b6745ad3191c7
Author:     Marty E. Plummer <hanetzer <AT> startmail <DOT> com>
AuthorDate: Fri Jun  1 17:08:56 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sat Jun  9 14:15:36 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c7fafc

media-video/gxine: fdo-mime->xdg-utils

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 media-video/gxine/gxine-0.5.907-r1.ebuild | 10 +++++-----
 media-video/gxine/gxine-0.5.908-r1.ebuild | 10 +++++-----
 media-video/gxine/gxine-0.5.909.ebuild    | 10 +++++-----
 3 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/media-video/gxine/gxine-0.5.907-r1.ebuild b/media-video/gxine/gxine-0.5.907-r1.ebuild
index 7c7560b032e..cb6ef3322c2 100644
--- a/media-video/gxine/gxine-0.5.907-r1.ebuild
+++ b/media-video/gxine/gxine-0.5.907-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-inherit autotools eutils fdo-mime gnome2-utils multilib nsplugins
+inherit autotools eutils gnome2-utils multilib nsplugins xdg-utils
 
 DESCRIPTION="GTK+ Front-End for libxine"
 HOMEPAGE="http://xine.sourceforge.net/"
@@ -89,13 +89,13 @@ pkg_preinst() {
 }
 
 pkg_postinst() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
+	xdg_desktop_database_update
+	xdg_mimeinfo_database_update
 	gnome2_icon_cache_update
 }
 
 pkg_postrm() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
+	xdg_desktop_database_update
+	xdg_mimeinfo_database_update
 	gnome2_icon_cache_update
 }

diff --git a/media-video/gxine/gxine-0.5.908-r1.ebuild b/media-video/gxine/gxine-0.5.908-r1.ebuild
index de2ecd10783..25fa1cc225e 100644
--- a/media-video/gxine/gxine-0.5.908-r1.ebuild
+++ b/media-video/gxine/gxine-0.5.908-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-inherit autotools eutils fdo-mime gnome2-utils multilib nsplugins
+inherit autotools eutils gnome2-utils multilib nsplugins xdg-utils
 
 DESCRIPTION="GTK+ Front-End for libxine"
 HOMEPAGE="http://xine.sourceforge.net/"
@@ -89,13 +89,13 @@ pkg_preinst() {
 }
 
 pkg_postinst() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
+	xdg_desktop_database_update
+	xdg_mimeinfo_database_update
 	gnome2_icon_cache_update
 }
 
 pkg_postrm() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
+	xdg_desktop_database_update
+	xdg_mimeinfo_database_update
 	gnome2_icon_cache_update
 }

diff --git a/media-video/gxine/gxine-0.5.909.ebuild b/media-video/gxine/gxine-0.5.909.ebuild
index 59fb4ac46bf..d8154294cae 100644
--- a/media-video/gxine/gxine-0.5.909.ebuild
+++ b/media-video/gxine/gxine-0.5.909.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-inherit autotools eutils fdo-mime gnome2-utils multilib nsplugins
+inherit autotools eutils gnome2-utils multilib nsplugins xdg-utils
 
 DESCRIPTION="GTK+ Front-End for libxine"
 HOMEPAGE="http://xine.sourceforge.net/"
@@ -76,13 +76,13 @@ pkg_preinst() {
 }
 
 pkg_postinst() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
+	xdg_desktop_database_update
+	xdg_mimeinfo_database_update
 	gnome2_icon_cache_update
 }
 
 pkg_postrm() {
-	fdo-mime_desktop_database_update
-	fdo-mime_mime_database_update
+	xdg_desktop_database_update
+	xdg_mimeinfo_database_update
 	gnome2_icon_cache_update
 }


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2018-01-08 17:17 Ulrich Müller
  0 siblings, 0 replies; 16+ messages in thread
From: Ulrich Müller @ 2018-01-08 17:17 UTC (permalink / raw
  To: gentoo-commits

commit:     83d4e023bc9a44462b3b210b50c8378a5016fdc6
Author:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  8 17:16:43 2018 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Jan  8 17:17:21 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83d4e023

media-video/gxine: Migrate from LINGUAS to L10N.

Package-Manager: Portage-2.3.19, Repoman-2.3.6

 media-video/gxine/gxine-0.5.907-r1.ebuild | 8 ++++----
 media-video/gxine/gxine-0.5.908-r1.ebuild | 8 ++++----
 media-video/gxine/gxine-0.5.909.ebuild    | 8 ++++----
 3 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/media-video/gxine/gxine-0.5.907-r1.ebuild b/media-video/gxine/gxine-0.5.907-r1.ebuild
index 0b95f0fb329..7c7560b032e 100644
--- a/media-video/gxine/gxine-0.5.907-r1.ebuild
+++ b/media-video/gxine/gxine-0.5.907-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="linguas_cs linguas_de lirc nls nsplugin udev +xcb xinerama"
+IUSE="l10n_cs l10n_de lirc nls nsplugin udev +xcb xinerama"
 
 COMMON_DEPEND=">=media-libs/xine-lib-1.1.20
 	x11-libs/gtk+:2
@@ -78,8 +78,8 @@ src_install() {
 
 	dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO
 
-	use linguas_cs && dodoc README.cs
-	use linguas_de && dodoc README.de
+	use l10n_cs && dodoc README.cs
+	use l10n_de && dodoc README.de
 
 	use nsplugin && inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
 }

diff --git a/media-video/gxine/gxine-0.5.908-r1.ebuild b/media-video/gxine/gxine-0.5.908-r1.ebuild
index 9354f40efac..de2ecd10783 100644
--- a/media-video/gxine/gxine-0.5.908-r1.ebuild
+++ b/media-video/gxine/gxine-0.5.908-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE="linguas_cs linguas_de lirc nls nsplugin udev +xcb xinerama"
+IUSE="l10n_cs l10n_de lirc nls nsplugin udev +xcb xinerama"
 
 COMMON_DEPEND=">=media-libs/xine-lib-1.1.20
 	x11-libs/gtk+:2
@@ -78,8 +78,8 @@ src_install() {
 
 	dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO
 
-	use linguas_cs && dodoc README.cs
-	use linguas_de && dodoc README.de
+	use l10n_cs && dodoc README.cs
+	use l10n_de && dodoc README.de
 
 	use nsplugin && inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
 }

diff --git a/media-video/gxine/gxine-0.5.909.ebuild b/media-video/gxine/gxine-0.5.909.ebuild
index c03bbd61943..59fb4ac46bf 100644
--- a/media-video/gxine/gxine-0.5.909.ebuild
+++ b/media-video/gxine/gxine-0.5.909.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/xine/${P}.tar.xz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE="linguas_cs linguas_de lirc nls nsplugin udev +xcb xinerama"
+IUSE="l10n_cs l10n_de lirc nls nsplugin udev +xcb xinerama"
 
 COMMON_DEPEND=">=media-libs/xine-lib-1.1.20
 	x11-libs/gtk+:2
@@ -65,8 +65,8 @@ src_install() {
 
 	dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO
 
-	use linguas_cs && dodoc README.cs
-	use linguas_de && dodoc README.de
+	use l10n_cs && dodoc README.cs
+	use l10n_de && dodoc README.de
 
 	use nsplugin && inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
 }


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2017-08-26 14:33 Alexis Ballier
  0 siblings, 0 replies; 16+ messages in thread
From: Alexis Ballier @ 2017-08-26 14:33 UTC (permalink / raw
  To: gentoo-commits

commit:     d8a0457b47a8dbf8d1dbfc1e2ff3a2a01b018f75
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 26 14:21:14 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sat Aug 26 14:21:14 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8a0457b

media-video/gxine: bump to 0.5.909

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 media-video/gxine/Manifest             |  1 +
 media-video/gxine/gxine-0.5.909.ebuild | 88 ++++++++++++++++++++++++++++++++++
 2 files changed, 89 insertions(+)

diff --git a/media-video/gxine/Manifest b/media-video/gxine/Manifest
index 474f3e3795f..37cfb9c2d11 100644
--- a/media-video/gxine/Manifest
+++ b/media-video/gxine/Manifest
@@ -1,2 +1,3 @@
 DIST gxine-0.5.907.tar.xz 910528 SHA256 b5c925806a35cb23a24a80a39d494cefb529e22c957987741f269a994ab258d5 SHA512 dd35c8a8810c233e81a28e9f10504645662d60dc9609451e7c49c5d516bb041b61a3b9c8f330021af1e527064cf3f62f37bde98402df7426f501d0c78c571045 WHIRLPOOL 01037e358c515f01bd42ec48e54d92e7672162098a4d0a279f979dd01d9a6354dd37f7194f36f9dfc804a8730bd792676cef39e48b608104724a787bf9c51e57
 DIST gxine-0.5.908.tar.xz 917780 SHA256 832e47136ec68a573b22b6cc1c1d57607e78b05712ba9fb8e64464b5201ed9e7 SHA512 6172f442948655178fde837a5fa9194fdb06b5cc50f8cbbfcd153b72f9a360a5497bd7ebd09c8f2340547fd7a0c834d5c673712a13202768bf0c762ee41c5454 WHIRLPOOL 8e97e1f1d72a7b669c3346030522e4d2d755220fa337ad1a6486415f28d7ec375e4a5ae86fe2c7d3a4fb2ad84a76f5beb8d8c8ca7a4e06d9f1b0d1e01aebd00c
+DIST gxine-0.5.909.tar.xz 928544 SHA256 bd44816fac24353ec14bf0dea01176469bd7ce9b3c4277952056c24f71266ee9 SHA512 87e65bb87fa416535f76253e4394447c6cd7dfaaa209b76c07b9aa81aeca0ca09399991bb2be8e6928fa3883ff61b155e173610c6c28aab10f5b1487e0699215 WHIRLPOOL a3dd9d7ace2c29a33922b5c6b787ba27459ec0ae1f041ede0ae736fe138d2134c703072adaecb104782238329ab2e1af808e60725629790b21590e7a629c9eff

diff --git a/media-video/gxine/gxine-0.5.909.ebuild b/media-video/gxine/gxine-0.5.909.ebuild
new file mode 100644
index 00000000000..c03bbd61943
--- /dev/null
+++ b/media-video/gxine/gxine-0.5.909.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+inherit autotools eutils fdo-mime gnome2-utils multilib nsplugins
+
+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="linguas_cs linguas_de lirc nls nsplugin udev +xcb xinerama"
+
+COMMON_DEPEND=">=media-libs/xine-lib-1.1.20
+	x11-libs/gtk+:2
+	>=dev-libs/glib-2
+	>=dev-lang/spidermonkey-1.8.2.15:0
+	x11-libs/libX11
+	x11-libs/libXext
+	x11-libs/libXrender
+	lirc? ( app-misc/lirc )
+	nls? ( virtual/libintl )
+	nsplugin? ( dev-libs/nspr
+		x11-libs/libXaw
+		x11-libs/libXt )
+	udev? ( virtual/libgudev:= )
+	xcb? ( x11-libs/libxcb )
+	xinerama? ( x11-libs/libXinerama )"
+DEPEND="${COMMON_DEPEND}
+	virtual/pkgconfig
+	nls? ( sys-devel/gettext )"
+RDEPEND="${COMMON_DEPEND}"
+
+src_prepare() {
+	# 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 \
+		$(use_enable nls) \
+		$(use_enable lirc) \
+		--enable-watchdog \
+		$(use_with xcb) \
+		$(has_version '<dev-lang/spidermonkey-1.8.5' && echo --with-spidermonkey=/usr/include/js) \
+		$(use_with nsplugin browser-plugin) \
+		$(use_with udev gudev) \
+		--without-hal \
+		--without-dbus \
+		$(use_with xinerama)
+}
+
+src_install() {
+	emake DESTDIR="${D}" \
+		docdir=/usr/share/doc/${PF} \
+		docsdir=/usr/share/doc/${PF} \
+		install
+
+	dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO
+
+	use linguas_cs && dodoc README.cs
+	use linguas_de && dodoc README.de
+
+	use nsplugin && inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	fdo-mime_desktop_database_update
+	fdo-mime_mime_database_update
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	fdo-mime_desktop_database_update
+	fdo-mime_mime_database_update
+	gnome2_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 16+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/
@ 2015-09-08 15:41 Lars Wendler
  0 siblings, 0 replies; 16+ messages in thread
From: Lars Wendler @ 2015-09-08 15:41 UTC (permalink / raw
  To: gentoo-commits

commit:     063844057a979dd722ce8ca17d1e258969f28c13
Author:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  8 15:41:43 2015 +0000
Commit:     Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Tue Sep  8 15:41:43 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06384405

media-video/gxine: Bump to version 0.5.908

Package-Manager: portage-2.2.20.1
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>

 media-video/gxine/Manifest             |   1 +
 media-video/gxine/gxine-0.5.908.ebuild | 101 +++++++++++++++++++++++++++++++++
 2 files changed, 102 insertions(+)

diff --git a/media-video/gxine/Manifest b/media-video/gxine/Manifest
index 0392d7e..474f3e3 100644
--- a/media-video/gxine/Manifest
+++ b/media-video/gxine/Manifest
@@ -1 +1,2 @@
 DIST gxine-0.5.907.tar.xz 910528 SHA256 b5c925806a35cb23a24a80a39d494cefb529e22c957987741f269a994ab258d5 SHA512 dd35c8a8810c233e81a28e9f10504645662d60dc9609451e7c49c5d516bb041b61a3b9c8f330021af1e527064cf3f62f37bde98402df7426f501d0c78c571045 WHIRLPOOL 01037e358c515f01bd42ec48e54d92e7672162098a4d0a279f979dd01d9a6354dd37f7194f36f9dfc804a8730bd792676cef39e48b608104724a787bf9c51e57
+DIST gxine-0.5.908.tar.xz 917780 SHA256 832e47136ec68a573b22b6cc1c1d57607e78b05712ba9fb8e64464b5201ed9e7 SHA512 6172f442948655178fde837a5fa9194fdb06b5cc50f8cbbfcd153b72f9a360a5497bd7ebd09c8f2340547fd7a0c834d5c673712a13202768bf0c762ee41c5454 WHIRLPOOL 8e97e1f1d72a7b669c3346030522e4d2d755220fa337ad1a6486415f28d7ec375e4a5ae86fe2c7d3a4fb2ad84a76f5beb8d8c8ca7a4e06d9f1b0d1e01aebd00c

diff --git a/media-video/gxine/gxine-0.5.908.ebuild b/media-video/gxine/gxine-0.5.908.ebuild
new file mode 100644
index 0000000..cea5adb
--- /dev/null
+++ b/media-video/gxine/gxine-0.5.908.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools eutils fdo-mime gnome2-utils multilib nsplugins
+
+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="linguas_cs linguas_de lirc nls nsplugin udev +xcb xinerama"
+
+COMMON_DEPEND=">=media-libs/xine-lib-1.1.20
+	x11-libs/gtk+:2
+	>=dev-libs/glib-2
+	>=dev-lang/spidermonkey-1.8.2.15:0
+	x11-libs/libX11
+	x11-libs/libXext
+	x11-libs/libXrender
+	lirc? ( app-misc/lirc )
+	nls? ( virtual/libintl )
+	nsplugin? ( dev-libs/nspr
+		x11-libs/libXaw
+		x11-libs/libXt )
+	udev? ( virtual/libgudev:= )
+	xcb? ( x11-libs/libxcb )
+	xinerama? ( x11-libs/libXinerama )"
+DEPEND="${COMMON_DEPEND}
+	virtual/pkgconfig
+	nls? ( sys-devel/gettext )"
+
+src_prepare() {
+	# ld: cannot find -ljs
+	sed -i -e '/JS_LIBS="`spidermonkey_locate_lib/s:js:mozjs:' m4/_js.m4 || die
+
+	if has_version '>=dev-lang/spidermonkey-1.8.7:0'; then
+		sed -i -e 's:mozjs185:mozjs187:' m4/_js.m4 || die #422983
+	fi
+
+	epatch \
+		"${FILESDIR}"/${PN}-0.5.905-desktop.patch \
+		"${FILESDIR}"/${PN}-0.5.905-fix-nspr-useage.patch \
+		"${FILESDIR}"/${PN}-0.5.906-endif.patch \
+		"${FILESDIR}"/${PN}-0.5.907-underlinking.patch
+
+	# 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 \
+		$(use_enable nls) \
+		$(use_enable lirc) \
+		--enable-watchdog \
+		$(use_with xcb) \
+		$(has_version '<dev-lang/spidermonkey-1.8.5' && echo --with-spidermonkey=/usr/include/js) \
+		$(use_with nsplugin browser-plugin) \
+		$(use_with udev gudev) \
+		--without-hal \
+		--without-dbus \
+		$(use_with xinerama)
+}
+
+src_install() {
+	emake DESTDIR="${D}" \
+		docdir=/usr/share/doc/${PF} \
+		docsdir=/usr/share/doc/${PF} \
+		install
+
+	dodoc AUTHORS BUGS ChangeLog README{,_l10n} TODO
+
+	use linguas_cs && dodoc README.cs
+	use linguas_de && dodoc README.de
+
+	use nsplugin && inst_plugin /usr/$(get_libdir)/gxine/gxineplugin.so
+}
+
+pkg_preinst() {
+	gnome2_icon_savelist
+}
+
+pkg_postinst() {
+	fdo-mime_desktop_database_update
+	fdo-mime_mime_database_update
+	gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+	fdo-mime_desktop_database_update
+	fdo-mime_mime_database_update
+	gnome2_icon_cache_update
+}


^ permalink raw reply related	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2021-01-20 10:13 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-15 17:36 [gentoo-commits] repo/gentoo:master commit in: media-video/gxine/ David Seifert
  -- strict thread matches above, loose matches on Subject: below --
2021-01-20 10:13 David Seifert
2021-01-20  1:20 Sam James
2021-01-18  2:55 Sam James
2021-01-18  2:54 Sam James
2021-01-18  1:52 Sam James
2020-12-02  0:32 Aaron Bauman
2020-01-23 19:18 Matt Turner
2019-05-19 15:48 Thomas Deutschmann
2019-04-19 17:58 Aaron Bauman
2019-04-19  7:22 Pacho Ramos
2019-04-19  7:22 Pacho Ramos
2018-06-09 14:15 Aaron Bauman
2018-01-08 17:17 Ulrich Müller
2017-08-26 14:33 Alexis Ballier
2015-09-08 15:41 Lars Wendler

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox