diff options
author | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
---|---|---|
committer | Carlo Landmeter <clandmeter@gmail.com> | 2016-08-25 15:26:24 +0200 |
commit | b6af1e02efe594039707cd882517663d5370f375 (patch) | |
tree | ff9c2d55873e051e82972ba64c017352d3a75d34 /unmaintained/kodi-platform | |
parent | a71346b7acebc600960a98c84fb32cfd72fe864b (diff) | |
download | aports-b6af1e02efe594039707cd882517663d5370f375.tar.bz2 aports-b6af1e02efe594039707cd882517663d5370f375.tar.xz |
testing/[multiple]: move unmaintained packages
This moves all packages from testing to unmaintained which have not been
updated for atleast 6 months. If you are affected by this commit please follow
this proceddure:
* make sure your packages build on all architectures
* move your pacakge(s) back to testing
* if you want to keep this package and can maintain it (or find somebody to
maintain it for you) for a minimum of 6 months ask it to be moved to community
Diffstat (limited to 'unmaintained/kodi-platform')
-rw-r--r-- | unmaintained/kodi-platform/APKBUILD | 52 | ||||
-rw-r--r-- | unmaintained/kodi-platform/check-for-glibc.patch | 11 |
2 files changed, 63 insertions, 0 deletions
diff --git a/unmaintained/kodi-platform/APKBUILD b/unmaintained/kodi-platform/APKBUILD new file mode 100644 index 0000000000..e6d6fadbf9 --- /dev/null +++ b/unmaintained/kodi-platform/APKBUILD @@ -0,0 +1,52 @@ +# Contributor: Carlo Landmeter <clandmeter@gmail.com> +# Maintainer: +pkgname=kodi-platform +pkgver=20150323 +_git_hash=68315f04d8a7c3bc4833af7bd56f5b7d905d351d +pkgrel=0 +pkgdesc="Kodi platform support library" +url="https://github.com/xbmc/kodi-platform" +arch="x86 x86_64" +license="GPL" +depends="" +depends_dev="kodi-dev tinyxml-dev" +makedepends="$depends_dev cmake" +install="" +subpackages="$pkgname-dev" +source="$pkgname-$pkgver.tar.gz::https://github.com/xbmc/kodi-platform/archive/$_git_hash.tar.gz + check-for-glibc.patch" + +_builddir="$srcdir"/$pkgname-$_git_hash + +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + cmake \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ + -DCMAKE_INSTALL_LIBDIR_NOARCH=/usr/lib \ + -DCMAKE_BUILD_TYPE=Release \ + . || return 1 + make || return 1 +} + +package() { + cd "$_builddir" + make DESTDIR="$pkgdir" install || return 1 +} + +md5sums="3d69fa19f6db79283afb56eb6b16f367 kodi-platform-20150323.tar.gz +1d1510ec5caca1b87a7e83e5b903dccb check-for-glibc.patch" +sha256sums="38b26976f9ee711dce7257d3dcdc6862f31ad52f3d181b91a8f7bc04439d4d31 kodi-platform-20150323.tar.gz +d9f4f57c1f48f1ff2df45597e2052190acc5ff8febdeb77973fdca049b128a3f check-for-glibc.patch" +sha512sums="b730c14aa96aac4b58d433175c3e30056944dabb946946566df820dfa80d27c7999098719a1cbb82d12bebb577eb89b2540391a175af4cf2f69bffce9c8baa7a kodi-platform-20150323.tar.gz +7189b9dc2fbcd8a003cf031b130b8d96226432237a80c6fdf24d6f238dcac8de886bc5ec39227dcf66efd4be201f13471ca300246ade8581ed3f6e7356850a0c check-for-glibc.patch" diff --git a/unmaintained/kodi-platform/check-for-glibc.patch b/unmaintained/kodi-platform/check-for-glibc.patch new file mode 100644 index 0000000000..76c03840c2 --- /dev/null +++ b/unmaintained/kodi-platform/check-for-glibc.patch @@ -0,0 +1,11 @@ +--- a/src/posix/serialport.cpp.orig ++++ b/src/posix/serialport.cpp +@@ -37,7 +37,7 @@ + #include "../util/baudrate.h" + #include "../posix/os-socket.h" + +-#if defined(__APPLE__) || defined(__FreeBSD__) ++#ifndef __GLIBC__ + #ifndef XCASE + #define XCASE 0 + #endif |