Merge branch 'master' of github.com:OpenELEC/OpenELEC.tv

This commit is contained in:
Stephan Raue 2014-01-13 03:10:42 +01:00
commit 2c9da84623
32 changed files with 10 additions and 5 deletions

5
TODO
View File

@ -7,3 +7,8 @@ irserver:
buildsystem:
- always use fakeroot for converted packages
- built-in $PKG_DIR/unpack replacement
nettle/gmp
- ffmpeg shared build fails with gmp/nettle static (-fPIC?)
so try-build gmp/nettle as static-only libs once xbmc/ffmpeg
is static linked and we drop ffmpeg package (or build it static)

View File

@ -35,7 +35,7 @@ PKG_IS_ADDON="no"
PKG_AUTORECONF="yes"
PKG_CONFIGURE_OPTS_HOST="--enable-cxx"
PKG_CONFIGURE_OPTS_TARGET="--enable-static --disable-shared --disable-cxx"
PKG_CONFIGURE_OPTS_TARGET="--disable-cxx"
pre_configure_host() {
export CFLAGS="$CFLAGS -fPIC -DPIC"

View File

@ -23,8 +23,8 @@ case "$LINUX" in
PKG_URL="http://www.kernel.org/pub/linux/kernel/v3.x/$PKG_NAME-$PKG_VERSION.tar.xz"
;;
*)
PKG_VERSION="3.13.0-rc7"
PKG_SOURCE_DIR="$PKG_NAME-3.13-rc7"
PKG_VERSION="3.13.0-rc8"
PKG_SOURCE_DIR="$PKG_NAME-3.13-rc8"
PKG_URL="http://www.kernel.org/pub/linux/kernel/v3.x/testing/$PKG_SOURCE_DIR.tar.xz"
;;
esac

View File

@ -33,7 +33,7 @@ PKG_LONGDESC="Nettle is a cryptographic library that is designed to fit easily i
PKG_IS_ADDON="no"
PKG_AUTORECONF="yes"
PKG_CONFIGURE_OPTS_TARGET="--enable-static --disable-shared --disable-openssl"
PKG_CONFIGURE_OPTS_TARGET="--enable-static --disable-openssl"
pre_configure_target() {
# dont build parallel
@ -42,4 +42,4 @@ pre_configure_target() {
post_makeinstall_target() {
rm -rf $INSTALL/usr/bin
}
}