forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-tv/kodi: 18.0_rc3 version bump
Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Craig Andrews <[email protected]>
- Loading branch information
Showing
2 changed files
with
321 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,320 @@ | ||
# Copyright 1999-2018 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
: ${CMAKE_MAKEFILE_GENERATOR:=ninja} | ||
PYTHON_REQ_USE="libressl?,sqlite,ssl" | ||
LIBDVDCSS_VERSION="1.4.2-Leia-Beta-5" | ||
LIBDVDREAD_VERSION="6.0.0-Leia-Alpha-3" | ||
LIBDVDNAV_VERSION="6.0.0-Leia-Alpha-3" | ||
FFMPEG_VERSION="4.0.1" | ||
CODENAME="Leia" | ||
FFMPEG_KODI_VERSION="Alpha3-1" | ||
SRC_URI="https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz -> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz | ||
https://github.com/xbmc/libdvdread/archive/${LIBDVDREAD_VERSION}.tar.gz -> libdvdread-${LIBDVDREAD_VERSION}.tar.gz | ||
https://github.com/xbmc/libdvdnav/archive/${LIBDVDNAV_VERSION}.tar.gz -> libdvdnav-${LIBDVDNAV_VERSION}.tar.gz | ||
!system-ffmpeg? ( https://github.com/xbmc/FFmpeg/archive/${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz -> ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz )" | ||
|
||
if [[ ${PV} == *9999 ]] ; then | ||
PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) | ||
EGIT_REPO_URI="https://github.com/xbmc/xbmc.git" | ||
inherit git-r3 | ||
else | ||
PYTHON_COMPAT=( python2_7 ) | ||
MY_PV=${PV/_p/_r} | ||
MY_PV=${MY_PV/_alpha/a} | ||
MY_PV=${MY_PV/_beta/b} | ||
MY_PV=${MY_PV/_rc/rc} | ||
MY_P="${PN}-${MY_PV}" | ||
SRC_URI+=" https://github.com/xbmc/xbmc/archive/${MY_PV}-${CODENAME}.tar.gz -> ${MY_P}.tar.gz" | ||
KEYWORDS="~amd64 ~x86" | ||
S=${WORKDIR}/xbmc-${MY_PV}-${CODENAME} | ||
fi | ||
|
||
inherit autotools cmake-utils eutils gnome2-utils linux-info pax-utils python-single-r1 xdg-utils | ||
|
||
DESCRIPTION="A free and open source media-player and entertainment hub" | ||
HOMEPAGE="https://kodi.tv/ https://kodi.wiki/" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
# use flag is called libusb so that it doesn't fool people in thinking that | ||
# it is _required_ for USB support. Otherwise they'll disable udev and | ||
# that's going to be worse. | ||
IUSE="airplay alsa bluetooth bluray caps cec +css dbus debug dvd gbm gles lcms libressl libusb lirc mariadb mysql nfs +opengl pulseaudio samba systemd +system-ffmpeg test +udev udisks upnp upower vaapi vdpau wayland webserver +X +xslt zeroconf" | ||
REQUIRED_USE=" | ||
${PYTHON_REQUIRED_USE} | ||
|| ( gles opengl ) | ||
^^ ( gbm wayland X ) | ||
?? ( mariadb mysql ) | ||
udev? ( !libusb ) | ||
udisks? ( dbus ) | ||
upower? ( dbus ) | ||
" | ||
|
||
COMMON_DEPEND="${PYTHON_DEPS} | ||
airplay? ( | ||
>=app-pda/libplist-2.0.0 | ||
net-libs/shairplay | ||
) | ||
alsa? ( >=media-libs/alsa-lib-1.1.4.1 ) | ||
bluetooth? ( net-wireless/bluez ) | ||
bluray? ( >=media-libs/libbluray-1.0.2 ) | ||
caps? ( sys-libs/libcap ) | ||
dbus? ( sys-apps/dbus ) | ||
dev-db/sqlite | ||
dev-libs/expat | ||
dev-libs/flatbuffers | ||
>=dev-libs/fribidi-0.19.7 | ||
cec? ( >=dev-libs/libcec-4.0 ) | ||
dev-libs/libpcre[cxx] | ||
>=dev-libs/libinput-1.10.5 | ||
>=dev-libs/libxml2-2.9.4 | ||
>=dev-libs/lzo-2.04 | ||
dev-libs/tinyxml[stl] | ||
dev-python/pillow[${PYTHON_USEDEP}] | ||
$(python_gen_cond_dep 'dev-python/pycryptodome[${PYTHON_USEDEP}]' 'python3*') | ||
>=dev-libs/libcdio-0.94 | ||
dev-libs/libfmt | ||
dev-libs/libfstrcmp | ||
gbm? ( media-libs/mesa[gbm] ) | ||
gles? ( media-libs/mesa[gles2] ) | ||
lcms? ( media-libs/lcms:2 ) | ||
libusb? ( virtual/libusb:1 ) | ||
virtual/ttf-fonts | ||
media-fonts/roboto | ||
>=media-libs/fontconfig-2.12.4 | ||
>=media-libs/freetype-2.8 | ||
>=media-libs/libass-0.13.4 | ||
media-libs/mesa[egl] | ||
>=media-libs/taglib-1.11.1 | ||
system-ffmpeg? ( | ||
>=media-video/ffmpeg-${FFMPEG_VERSION}:=[encode,postproc] | ||
libressl? ( media-video/ffmpeg[libressl,-openssl] ) | ||
!libressl? ( media-video/ffmpeg[-libressl,openssl] ) | ||
) | ||
mysql? ( dev-db/mysql-connector-c:= ) | ||
mariadb? ( dev-db/mariadb-connector-c:= ) | ||
>=net-misc/curl-7.56.1 | ||
nfs? ( >=net-fs/libnfs-2.0.0:= ) | ||
opengl? ( media-libs/glu ) | ||
!libressl? ( >=dev-libs/openssl-1.0.2l:0= ) | ||
libressl? ( dev-libs/libressl:0= ) | ||
pulseaudio? ( media-sound/pulseaudio ) | ||
samba? ( >=net-fs/samba-3.4.6[smbclient(+)] ) | ||
>=sys-libs/zlib-1.2.11 | ||
udev? ( virtual/udev ) | ||
vaapi? ( | ||
x11-libs/libva:= | ||
opengl? ( x11-libs/libva[opengl] ) | ||
system-ffmpeg? ( media-video/ffmpeg[vaapi] ) | ||
vdpau? ( x11-libs/libva[vdpau] ) | ||
wayland? ( x11-libs/libva[wayland] ) | ||
X? ( x11-libs/libva[X] ) | ||
) | ||
virtual/libiconv | ||
vdpau? ( | ||
|| ( >=x11-libs/libvdpau-1.1 >=x11-drivers/nvidia-drivers-180.51 ) | ||
system-ffmpeg? ( media-video/ffmpeg[vdpau] ) | ||
) | ||
wayland? ( | ||
>=dev-cpp/waylandpp-0.2.3:= | ||
media-libs/mesa[wayland] | ||
>=dev-libs/wayland-protocols-1.7 | ||
>=x11-libs/libxkbcommon-0.4.1 | ||
) | ||
webserver? ( >=net-libs/libmicrohttpd-0.9.55[messages] ) | ||
X? ( | ||
x11-libs/libX11 | ||
x11-libs/libXrandr | ||
x11-libs/libXrender | ||
system-ffmpeg? ( media-video/ffmpeg[X] ) | ||
) | ||
x11-libs/libdrm | ||
xslt? ( dev-libs/libxslt ) | ||
zeroconf? ( net-dns/avahi[dbus] ) | ||
" | ||
RDEPEND="${COMMON_DEPEND} | ||
lirc? ( app-misc/lirc ) | ||
!media-tv/xbmc | ||
udisks? ( sys-fs/udisks:2 ) | ||
upower? ( sys-power/upower ) | ||
" | ||
DEPEND="${COMMON_DEPEND} | ||
app-arch/bzip2 | ||
app-arch/xz-utils | ||
dev-lang/swig | ||
dev-libs/crossguid | ||
dev-libs/rapidjson | ||
dev-util/cmake | ||
dev-util/gperf | ||
media-libs/giflib | ||
>=media-libs/libjpeg-turbo-1.5.1:= | ||
>=media-libs/libpng-1.6.26:0= | ||
test? ( dev-cpp/gtest ) | ||
virtual/pkgconfig | ||
virtual/jre | ||
x86? ( dev-lang/nasm ) | ||
" | ||
|
||
CONFIG_CHECK="~IP_MULTICAST" | ||
ERROR_IP_MULTICAST=" | ||
In some cases Kodi needs to access multicast addresses. | ||
Please consider enabling IP_MULTICAST under Networking options. | ||
" | ||
|
||
pkg_setup() { | ||
check_extra_config | ||
python-single-r1_pkg_setup | ||
} | ||
|
||
src_unpack() { | ||
if [[ ${PV} == *9999 ]] ; then | ||
if python_is_python3; then | ||
EGIT_BRANCH="feature_python3" | ||
ewarn "Using the experimental Python 3 branch!" | ||
ewarn "See https://kodi.wiki/view/Migration_to_Python_3 for more information." | ||
ewarn "To use the non-experimental Python 2 version:" | ||
ewarn "echo '~${CATEGORY}/${P} PYTHON_TARGETS: -* python2_7 PYTHON_SINGLE_TARGET: -* python2_7' >> /etc/portage/package.use" | ||
ewarn "then re-merge using: emerge -a =${CATEGORY}/${PF}" | ||
fi | ||
git-r3_src_unpack | ||
else | ||
default | ||
fi | ||
} | ||
|
||
src_prepare() { | ||
cmake-utils_src_prepare | ||
|
||
# avoid long delays when powerkit isn't running #348580 | ||
sed -i \ | ||
-e '/dbus_connection_send_with_reply_and_block/s:-1:3000:' \ | ||
xbmc/platform/linux/*.cpp || die | ||
|
||
# Prepare tools and libs witch are configured with autotools during compile time | ||
AUTOTOOLS_DIRS=( | ||
"${S}"/lib/cpluff | ||
"${S}"/tools/depends/native/TexturePacker/src | ||
"${S}"/tools/depends/native/JsonSchemaBuilder/src | ||
) | ||
|
||
local d | ||
for d in "${AUTOTOOLS_DIRS[@]}" ; do | ||
pushd ${d} >/dev/null || die | ||
AT_NOELIBTOOLIZE="yes" AT_TOPLEVEL_EAUTORECONF="yes" eautoreconf | ||
popd >/dev/null || die | ||
done | ||
elibtoolize | ||
|
||
# Prevent autoreconf rerun | ||
sed -e 's/autoreconf -vif/echo "autoreconf already done in src_prepare()"/' -i \ | ||
"${S}"/cmake/modules/FindCpluff.cmake \ | ||
"${S}"/tools/depends/native/TexturePacker/src/autogen.sh \ | ||
"${S}"/tools/depends/native/JsonSchemaBuilder/src/autogen.sh \ | ||
|| die | ||
} | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-Ddocdir="${EPREFIX}/usr/share/doc/${PF}" | ||
-DENABLE_LDGOLD=OFF # https://bugs.gentoo.org/show_bug.cgi?id=606124 | ||
-DENABLE_ALSA=$(usex alsa) | ||
-DENABLE_AIRTUNES=$(usex airplay) | ||
-DENABLE_AVAHI=$(usex zeroconf) | ||
-DENABLE_BLUETOOTH=$(usex bluetooth) | ||
-DENABLE_BLURAY=$(usex bluray) | ||
-DENABLE_CCACHE=OFF | ||
-DENABLE_CEC=$(usex cec) | ||
-DENABLE_DBUS=$(usex dbus) | ||
-DENABLE_DVDCSS=$(usex css) | ||
-DENABLE_INTERNAL_CROSSGUID=OFF | ||
-DENABLE_INTERNAL_FFMPEG="$(usex !system-ffmpeg)" | ||
-DENABLE_INTERNAL_FSTRCMP=OFF | ||
-DENABLE_CAP=$(usex caps) | ||
-DENABLE_LCMS2=$(usex lcms) | ||
-DENABLE_LIRCCLIENT=$(usex lirc) | ||
-DENABLE_MARIADBCLIENT=$(usex mariadb) | ||
-DENABLE_MYSQLCLIENT=$(usex mysql) | ||
-DENABLE_MICROHTTPD=$(usex webserver) | ||
-DENABLE_MYSQLCLIENT=$(usex mysql) | ||
-DENABLE_NFS=$(usex nfs) | ||
-DENABLE_OPENGLES=$(usex gles) | ||
-DENABLE_OPENGL=$(usex opengl) | ||
-DENABLE_OPTICAL=$(usex dvd) | ||
-DENABLE_PLIST=$(usex airplay) | ||
-DENABLE_PULSEAUDIO=$(usex pulseaudio) | ||
-DENABLE_SMBCLIENT=$(usex samba) | ||
-DENABLE_UDEV=$(usex udev) | ||
-DENABLE_UPNP=$(usex upnp) | ||
-DENABLE_VAAPI=$(usex vaapi) | ||
-DENABLE_VDPAU=$(usex vdpau) | ||
-DENABLE_XSLT=$(usex xslt) | ||
-Dlibdvdread_URL="${DISTDIR}/libdvdread-${LIBDVDREAD_VERSION}.tar.gz" | ||
-Dlibdvdnav_URL="${DISTDIR}/libdvdnav-${LIBDVDNAV_VERSION}.tar.gz" | ||
-Dlibdvdcss_URL="${DISTDIR}/libdvdcss-${LIBDVDCSS_VERSION}.tar.gz" | ||
) | ||
|
||
use libusb && mycmakeargs+=( -DENABLE_LIBUSB=$(usex libusb) ) | ||
|
||
if use system-ffmpeg; then | ||
mycmakeargs+=( -DWITH_FFMPEG="yes" ) | ||
else | ||
mycmakeargs+=( -DFFMPEG_URL="${DISTDIR}/ffmpeg-${PN}-${FFMPEG_VERSION}-${CODENAME}-${FFMPEG_KODI_VERSION}.tar.gz" ) | ||
fi | ||
|
||
if use gbm; then | ||
mycmakeargs+=( | ||
-DCORE_PLATFORM_NAME="gbm" | ||
-DGBM_RENDER_SYSTEM="$(usex opengl gl gles)" | ||
) | ||
fi | ||
|
||
if use wayland; then | ||
mycmakeargs+=( | ||
-DCORE_PLATFORM_NAME="wayland" | ||
-DWAYLAND_RENDER_SYSTEM="$(usex opengl gl gles)" | ||
) | ||
fi | ||
|
||
if use X; then | ||
mycmakeargs+=( -DCORE_PLATFORM_NAME="x11" ) | ||
fi | ||
|
||
cmake-utils_src_configure | ||
} | ||
|
||
src_compile() { | ||
cmake-utils_src_compile all | ||
use test && emake -C "${BUILD_DIR}" kodi-test | ||
} | ||
|
||
src_test() { | ||
emake -C "${BUILD_DIR}" test | ||
} | ||
|
||
src_install() { | ||
cmake-utils_src_install | ||
|
||
pax-mark Em "${ED%/}"/usr/$(get_libdir)/${PN}/${PN}.bin | ||
|
||
newicon media/icon48x48.png kodi.png | ||
|
||
rm "${ED%/}"/usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf || die | ||
dosym ../../../../fonts/roboto/Roboto-Thin.ttf \ | ||
usr/share/kodi/addons/skin.estuary/fonts/Roboto-Thin.ttf | ||
|
||
python_domodule tools/EventClients/lib/python/xbmcclient.py | ||
python_newscript "tools/EventClients/Clients/KodiSend/kodi-send.py" kodi-send | ||
} | ||
|
||
pkg_postinst() { | ||
gnome2_icon_cache_update | ||
xdg_desktop_database_update | ||
} | ||
|
||
pkg_postrm() { | ||
gnome2_icon_cache_update | ||
xdg_desktop_database_update | ||
} |