From: "Lars Wendler" <polynomial-c@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/xine-lib/
Date: Sat, 13 Jan 2018 12:47:04 +0000 (UTC) [thread overview]
Message-ID: <1515847618.3d25e7e077af29a85d1c462405a146a5314cb9e2.polynomial-c@gentoo> (raw)
commit: 3d25e7e077af29a85d1c462405a146a5314cb9e2
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 13 12:46:58 2018 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat Jan 13 12:46:58 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d25e7e0
media-libs/xine-lib: Minor ebuild improvements.
Package-Manager: Portage-2.3.19, Repoman-2.3.6
media-libs/xine-lib/xine-lib-1.2.9.ebuild | 152 ++++++++++++++-------------
media-libs/xine-lib/xine-lib-1.2.9999.ebuild | 149 +++++++++++++-------------
2 files changed, 152 insertions(+), 149 deletions(-)
diff --git a/media-libs/xine-lib/xine-lib-1.2.9.ebuild b/media-libs/xine-lib/xine-lib-1.2.9.ebuild
index b5083eb0033..993b8a7a53e 100644
--- a/media-libs/xine-lib/xine-lib-1.2.9.ebuild
+++ b/media-libs/xine-lib/xine-lib-1.2.9.ebuild
@@ -3,11 +3,11 @@
EAPI=6
-inherit autotools flag-o-matic libtool multilib eutils
+inherit flag-o-matic libtool multilib
if [[ ${PV} == *9999* ]]; then
EHG_REPO_URI="http://hg.debian.org/hg/xine-lib/xine-lib-1.2"
- inherit mercurial eutils
+ inherit autotools mercurial
unset NLS_IUSE
NLS_DEPEND="sys-devel/gettext"
NLS_RDEPEND="virtual/libintl"
@@ -30,11 +30,6 @@ RDEPEND="${NLS_RDEPEND}
dev-libs/libxdg-basedir
media-libs/libdvdnav
sys-libs/zlib
- !libav? ( media-video/ffmpeg:0= )
- libav? (
- media-libs/libpostproc:0=
- media-video/libav:0=
- )
virtual/libiconv
a52? ( media-libs/a52dec )
aac? ( media-libs/faad2 )
@@ -51,6 +46,11 @@ RDEPEND="${NLS_RDEPEND}
imagemagick? ( virtual/imagemagick-tools )
jack? ( >=media-sound/jack-audio-connection-kit-0.100 )
jpeg? ( virtual/jpeg:0 )
+ !libav? ( media-video/ffmpeg:0= )
+ libav? (
+ media-libs/libpostproc:0=
+ media-video/libav:0=
+ )
libcaca? ( media-libs/libcaca )
mad? ( media-libs/libmad )
mng? ( media-libs/libmng )
@@ -124,7 +124,11 @@ src_prepare() {
sed -i -e '/define VDR_ABS_FIFO_DIR/s|".*"|"/var/vdr/xine"|' src/vdr/input_vdr.c || die
- eautoreconf
+ if [[ "${PV}" = *9999* ]] ; then
+ eautoreconf
+ else
+ elibtoolize
+ fi
local x
for x in 0 1 2 3; do
@@ -142,70 +146,74 @@ src_configure() {
win32dir=/usr/$(get_libdir)/win32
fi
- local myconf=()
- [[ ${PV} == *9999* ]] || myconf=( $(use_enable nls) )
+ local myconf=(
+ --disable-gnomevfs
+ --disable-optimizations
+ --disable-real-codecs
+ --disable-v4l
+ --disable-w32dll
+ --with-external-dvdnav
+ --with-real-codecs-path=/usr/$(get_libdir)/codecs
+ --with-w32-path=${win32dir}
+ --with-xv-path=/usr/$(get_libdir)
+ --without-esound
+ $(use_enable a52 a52dec)
+ $(use_enable aac faad)
+ $(use_enable aalib)
+ $(use_enable altivec)
+ $(use_enable bluray)
+ $(use_enable directfb)
+ $(use_enable dts)
+ $(use_enable dvb)
+ $(use_enable dxr3)
+ $(use_enable fbcon fb)
+ $(use_enable gtk gdkpixbuf)
+ $(use_enable ipv6)
+ $(use_enable jpeg libjpeg)
+ $(use_enable mad)
+ $(use_enable mmap)
+ $(use_enable mng)
+ $(use_enable modplug)
+ $(use_enable musepack)
+ $(use_enable opengl)
+ $(use_enable opengl glu)
+ $(use_enable oss)
+ $(use_enable samba)
+ $(use_enable v4l libv4l)
+ $(use_enable v4l v4l2)
+ $(use_enable vaapi)
+ $(use_enable vdpau)
+ $(use_enable vis)
+ $(use_enable vidix)
+ $(use_enable xinerama)
+ $(use_enable xvmc)
+ $(use_enable vcd)
+ $(use_enable vdr)
+ $(use_enable vpx)
+ $(use_with alsa)
+ $(use_with flac libflac)
+ $(use_with fusionsound)
+ $(use_with imagemagick)
+ $(use_with jack)
+ $(use_with libcaca caca)
+ $(use_with pulseaudio)
+ $(use_with sdl)
+ $(use_with speex)
+ $(use_with theora)
+ $(use_with truetype fontconfig)
+ $(use_with truetype freetype)
+ $(use_with vorbis)
+ $(use_with wavpack)
+ $(use_with X x)
+ $(use_with xcb)
+ )
+ [[ ${PV} == *9999* ]] || myconf+=( $(use_enable nls) )
if ! use libav && has_version '>=media-video/ffmpeg-2.2:0'; then
myconf+=( --enable-avformat ) #507474
fi
- econf \
- $(use_enable ipv6) \
- $(use_enable altivec) \
- $(use_enable vis) \
- --disable-optimizations \
- $(use_enable mmap) \
- $(use_enable oss) \
- $(use_enable aalib) \
- $(use_enable directfb) \
- $(use_enable dxr3) \
- $(use_enable fbcon fb) \
- $(use_enable opengl) $(use_enable opengl glu) \
- $(use_enable vidix) \
- $(use_enable xinerama) \
- $(use_enable xvmc) \
- $(use_enable vdpau) \
- $(use_enable vaapi) \
- $(use_enable dvb) \
- --disable-gnomevfs \
- $(use_enable samba) \
- --disable-v4l $(use_enable v4l v4l2) $(use_enable v4l libv4l) \
- $(use_enable vcd) \
- $(use_enable vdr) \
- $(use_enable bluray) \
- $(use_enable a52 a52dec) \
- $(use_enable aac faad) \
- $(use_enable gtk gdkpixbuf) \
- $(use_enable jpeg libjpeg) \
- $(use_enable dts) \
- $(use_enable mad) \
- $(use_enable modplug) \
- $(use_enable musepack) \
- $(use_enable mng) \
- --disable-real-codecs \
- --disable-w32dll \
- $(use_enable vpx) \
- $(use_with truetype freetype) $(use_with truetype fontconfig) \
- $(use_with X x) \
- $(use_with alsa) \
- --without-esound \
- $(use_with fusionsound) \
- $(use_with jack) \
- $(use_with pulseaudio) \
- $(use_with libcaca caca) \
- $(use_with sdl) \
- $(use_with xcb) \
- --with-xv-path=/usr/$(get_libdir) \
- $(use_with imagemagick) \
- --with-external-dvdnav \
- $(use_with flac libflac) \
- $(use_with speex) \
- $(use_with theora) \
- $(use_with vorbis) \
- --with-real-codecs-path=/usr/$(get_libdir)/codecs \
- --with-w32-path=${win32dir} \
- $(use_with wavpack) \
- "${myconf[@]}"
+ econf "${myconf[@]}"
}
src_compile() {
@@ -214,13 +222,9 @@ src_compile() {
}
src_install() {
- emake \
- DESTDIR="${D}" \
- docdir="/usr/share/doc/${PF}" \
- htmldir="/usr/share/doc/${PF}/html" \
- install
+ emake DESTDIR="${D}" install
rm -f \
- "${ED}"usr/lib*/libxine*.la \
- "${ED}"usr/share/doc/${PF}/COPYING
+ "${ED%/}"usr/lib*/libxine*.la \
+ "${ED%/}"usr/share/doc/${PF}/COPYING
}
diff --git a/media-libs/xine-lib/xine-lib-1.2.9999.ebuild b/media-libs/xine-lib/xine-lib-1.2.9999.ebuild
index a7d83b367fa..8e2f4aec796 100644
--- a/media-libs/xine-lib/xine-lib-1.2.9999.ebuild
+++ b/media-libs/xine-lib/xine-lib-1.2.9999.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=6
@@ -7,7 +7,7 @@ inherit flag-o-matic libtool multilib
if [[ ${PV} == *9999* ]]; then
EHG_REPO_URI="http://hg.debian.org/hg/xine-lib/xine-lib-1.2"
- inherit autotools mercurial eutils
+ inherit autotools mercurial
unset NLS_IUSE
NLS_DEPEND="sys-devel/gettext"
NLS_RDEPEND="virtual/libintl"
@@ -30,11 +30,6 @@ RDEPEND="${NLS_RDEPEND}
dev-libs/libxdg-basedir
media-libs/libdvdnav
sys-libs/zlib
- !libav? ( media-video/ffmpeg:0= )
- libav? (
- media-libs/libpostproc:0=
- media-video/libav:0=
- )
virtual/libiconv
a52? ( media-libs/a52dec )
aac? ( media-libs/faad2 )
@@ -51,6 +46,11 @@ RDEPEND="${NLS_RDEPEND}
imagemagick? ( virtual/imagemagick-tools )
jack? ( >=media-sound/jack-audio-connection-kit-0.100 )
jpeg? ( virtual/jpeg:0 )
+ !libav? ( media-video/ffmpeg:0= )
+ libav? (
+ media-libs/libpostproc:0=
+ media-video/libav:0=
+ )
libcaca? ( media-libs/libcaca )
mad? ( media-libs/libmad )
mng? ( media-libs/libmng )
@@ -120,8 +120,7 @@ src_prepare() {
sed -i -e '/define VDR_ABS_FIFO_DIR/s|".*"|"/var/vdr/xine"|' src/vdr/input_vdr.c || die
- if [[ ${PV} == *9999* ]]; then
- epatch_user
+ if [[ "${PV}" = *9999* ]] ; then
eautoreconf
else
elibtoolize
@@ -143,70 +142,74 @@ src_configure() {
win32dir=/usr/$(get_libdir)/win32
fi
- local myconf=()
- [[ ${PV} == *9999* ]] || myconf=( $(use_enable nls) )
+ local myconf=(
+ --disable-gnomevfs
+ --disable-optimizations
+ --disable-real-codecs
+ --disable-v4l
+ --disable-w32dll
+ --with-external-dvdnav
+ --with-real-codecs-path=/usr/$(get_libdir)/codecs
+ --with-w32-path=${win32dir}
+ --with-xv-path=/usr/$(get_libdir)
+ --without-esound
+ $(use_enable a52 a52dec)
+ $(use_enable aac faad)
+ $(use_enable aalib)
+ $(use_enable altivec)
+ $(use_enable bluray)
+ $(use_enable directfb)
+ $(use_enable dts)
+ $(use_enable dvb)
+ $(use_enable dxr3)
+ $(use_enable fbcon fb)
+ $(use_enable gtk gdkpixbuf)
+ $(use_enable ipv6)
+ $(use_enable jpeg libjpeg)
+ $(use_enable mad)
+ $(use_enable mmap)
+ $(use_enable mng)
+ $(use_enable modplug)
+ $(use_enable musepack)
+ $(use_enable opengl)
+ $(use_enable opengl glu)
+ $(use_enable oss)
+ $(use_enable samba)
+ $(use_enable v4l libv4l)
+ $(use_enable v4l v4l2)
+ $(use_enable vaapi)
+ $(use_enable vdpau)
+ $(use_enable vis)
+ $(use_enable vidix)
+ $(use_enable xinerama)
+ $(use_enable xvmc)
+ $(use_enable vcd)
+ $(use_enable vdr)
+ $(use_enable vpx)
+ $(use_with alsa)
+ $(use_with flac libflac)
+ $(use_with fusionsound)
+ $(use_with imagemagick)
+ $(use_with jack)
+ $(use_with libcaca caca)
+ $(use_with pulseaudio)
+ $(use_with sdl)
+ $(use_with speex)
+ $(use_with theora)
+ $(use_with truetype fontconfig)
+ $(use_with truetype freetype)
+ $(use_with vorbis)
+ $(use_with wavpack)
+ $(use_with X x)
+ $(use_with xcb)
+ )
+ [[ ${PV} == *9999* ]] || myconf+=( $(use_enable nls) )
if ! use libav && has_version '>=media-video/ffmpeg-2.2:0'; then
myconf+=( --enable-avformat ) #507474
fi
- econf \
- $(use_enable ipv6) \
- $(use_enable altivec) \
- $(use_enable vis) \
- --disable-optimizations \
- $(use_enable mmap) \
- $(use_enable oss) \
- $(use_enable aalib) \
- $(use_enable directfb) \
- $(use_enable dxr3) \
- $(use_enable fbcon fb) \
- $(use_enable opengl) $(use_enable opengl glu) \
- $(use_enable vidix) \
- $(use_enable xinerama) \
- $(use_enable xvmc) \
- $(use_enable vdpau) \
- $(use_enable vaapi) \
- $(use_enable dvb) \
- --disable-gnomevfs \
- $(use_enable samba) \
- --disable-v4l $(use_enable v4l v4l2) $(use_enable v4l libv4l) \
- $(use_enable vcd) \
- $(use_enable vdr) \
- $(use_enable bluray) \
- $(use_enable a52 a52dec) \
- $(use_enable aac faad) \
- $(use_enable gtk gdkpixbuf) \
- $(use_enable jpeg libjpeg) \
- $(use_enable dts) \
- $(use_enable mad) \
- $(use_enable modplug) \
- $(use_enable musepack) \
- $(use_enable mng) \
- --disable-real-codecs \
- --disable-w32dll \
- $(use_enable vpx) \
- $(use_with truetype freetype) $(use_with truetype fontconfig) \
- $(use_with X x) \
- $(use_with alsa) \
- --without-esound \
- $(use_with fusionsound) \
- $(use_with jack) \
- $(use_with pulseaudio) \
- $(use_with libcaca caca) \
- $(use_with sdl) \
- $(use_with xcb) \
- --with-xv-path=/usr/$(get_libdir) \
- $(use_with imagemagick) \
- --with-external-dvdnav \
- $(use_with flac libflac) \
- $(use_with speex) \
- $(use_with theora) \
- $(use_with vorbis) \
- --with-real-codecs-path=/usr/$(get_libdir)/codecs \
- --with-w32-path=${win32dir} \
- $(use_with wavpack) \
- "${myconf[@]}"
+ econf "${myconf[@]}"
}
src_compile() {
@@ -215,13 +218,9 @@ src_compile() {
}
src_install() {
- emake \
- DESTDIR="${D}" \
- docdir="/usr/share/doc/${PF}" \
- htmldir="/usr/share/doc/${PF}/html" \
- install
+ emake DESTDIR="${D}" install
rm -f \
- "${ED}"usr/lib*/libxine*.la \
- "${ED}"usr/share/doc/${PF}/COPYING
+ "${ED%/}"usr/lib*/libxine*.la \
+ "${ED%/}"usr/share/doc/${PF}/COPYING
}
next reply other threads:[~2018-01-13 12:47 UTC|newest]
Thread overview: 79+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-13 12:47 Lars Wendler [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-25 1:21 [gentoo-commits] repo/gentoo:master commit in: media-libs/xine-lib/ Ionen Wolkens
2025-03-12 10:14 Ionen Wolkens
2024-11-24 23:15 Sam James
2023-06-01 6:58 Jakov Smolić
2023-06-01 6:45 Sam James
2023-06-01 6:22 Sam James
2023-06-01 5:22 Sam James
2023-04-17 1:25 Matt Turner
2023-04-17 1:25 Matt Turner
2023-01-26 6:29 Sam James
2022-11-12 17:48 Matt Turner
2022-11-12 17:48 Matt Turner
2022-11-12 16:06 Arthur Zamarin
2022-11-12 16:06 Arthur Zamarin
2022-11-05 2:07 Sam James
2022-09-05 3:56 Sam James
2022-09-03 5:27 Sam James
2022-09-03 5:27 Sam James
2022-07-20 20:26 Matt Turner
2022-07-15 7:58 David Seifert
2022-07-14 18:50 David Seifert
2022-05-19 22:46 Sam James
2022-05-05 9:50 Agostino Sarubbo
2022-05-03 17:48 Arthur Zamarin
2022-05-03 17:48 Arthur Zamarin
2022-05-03 17:48 Arthur Zamarin
2022-05-02 19:03 Sam James
2022-03-15 13:27 Alexis Ballier
2021-08-25 0:10 Marek Szuba
2021-05-16 18:58 Sam James
2021-03-06 21:38 Sergei Trofimovich
2021-03-06 21:38 Sergei Trofimovich
2021-03-05 7:32 Agostino Sarubbo
2021-03-05 7:27 Agostino Sarubbo
2021-03-04 1:45 Sam James
2020-12-20 16:40 Thomas Deutschmann
2020-12-18 10:25 Sergei Trofimovich
2020-12-17 7:48 Sam James
2020-12-17 5:32 Sam James
2020-12-06 20:26 Sam James
2020-12-06 19:49 Sam James
2020-09-04 16:47 Alexis Ballier
2020-04-26 12:05 David Seifert
2020-01-23 19:18 Matt Turner
2019-07-24 20:56 Aaron Bauman
2018-08-13 21:40 Andreas Sturmlechner
2018-08-13 21:40 Andreas Sturmlechner
2018-08-13 21:40 Andreas Sturmlechner
2018-08-13 21:40 Andreas Sturmlechner
2018-08-13 21:40 Andreas Sturmlechner
2018-08-13 21:40 Andreas Sturmlechner
2018-08-13 21:40 Andreas Sturmlechner
2018-08-13 21:40 Andreas Sturmlechner
2018-08-13 21:40 Andreas Sturmlechner
2018-08-13 21:40 Andreas Sturmlechner
2018-06-16 18:03 Pacho Ramos
2018-05-09 7:46 Lars Wendler
2018-03-22 22:54 Sergei Trofimovich
2018-03-18 22:52 Sergei Trofimovich
2018-02-25 18:21 Thomas Deutschmann
2018-02-22 9:15 Jason Zaman
2018-02-14 20:07 Pacho Ramos
2018-02-06 16:24 Thomas Deutschmann
2018-01-13 12:16 Alexis Ballier
2017-12-28 12:40 Sergei Trofimovich
2017-12-27 23:45 Sergei Trofimovich
2017-12-19 5:16 Jason Zaman
2017-07-03 9:12 Alexis Ballier
2017-06-26 16:21 Alexis Ballier
2017-03-04 13:37 Alexis Ballier
2017-02-28 11:52 Lars Wendler
2017-02-11 16:33 Pacho Ramos
2016-12-30 12:07 Pacho Ramos
2016-11-27 20:03 Pacho Ramos
2016-08-11 19:19 Lars Wendler
2016-07-22 8:53 Lars Wendler
2016-06-21 19:42 Michał Górny
2016-05-02 7:51 Lars Wendler
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=1515847618.3d25e7e077af29a85d1c462405a146a5314cb9e2.polynomial-c@gentoo \
--to=polynomial-c@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