mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-30 22:26:42 +00:00
pixman: convert to new package format
Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
parent
f30cc4eab0
commit
bf9162c548
@ -1,62 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
|
||||||
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
|
||||||
#
|
|
||||||
# This Program is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
# any later version.
|
|
||||||
#
|
|
||||||
# This Program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
|
||||||
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
|
||||||
# http://www.gnu.org/copyleft/gpl.html
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
. config/options $1
|
|
||||||
|
|
||||||
if [ "$TARGET_ARCH" = arm ]; then
|
|
||||||
if [ "$TARGET_FPU" = neon -o "$TARGET_FPU" = neon-fp16 ]; then
|
|
||||||
CFG_NEON="--enable-arm-neon"
|
|
||||||
else
|
|
||||||
CFG_NEON="--disable-arm-neon"
|
|
||||||
fi
|
|
||||||
ARCH_CONFIG="--disable-mmx --disable-sse2 --disable-vmx --enable-arm-simd $CFG_NEON --disable-arm-iwmmxt"
|
|
||||||
elif [ "$TARGET_ARCH" = i386 -o "$TARGET_ARCH" = x86_64 ]; then
|
|
||||||
ARCH_CONFIG="--enable-mmx --enable-sse2 --disable-vmx --disable-arm-simd --disable-arm-neon"
|
|
||||||
fi
|
|
||||||
|
|
||||||
cd $PKG_BUILD
|
|
||||||
./configure --host=$TARGET_NAME \
|
|
||||||
--build=$HOST_NAME \
|
|
||||||
--prefix=/usr \
|
|
||||||
--sysconfdir=/etc \
|
|
||||||
--disable-silent-rules \
|
|
||||||
--enable-shared \
|
|
||||||
--disable-static \
|
|
||||||
--disable-openmp \
|
|
||||||
--disable-loongson-mmi \
|
|
||||||
$ARCH_CONFIG \
|
|
||||||
--disable-mips-dspr2 \
|
|
||||||
--enable-gcc-inline-asm \
|
|
||||||
--disable-timers \
|
|
||||||
--disable-gtk \
|
|
||||||
--disable-libpng \
|
|
||||||
--with-gnu-ld
|
|
||||||
|
|
||||||
echo "" > test/Makefile.am
|
|
||||||
|
|
||||||
make
|
|
||||||
$MAKEINSTALL
|
|
||||||
|
|
||||||
cp $SYSROOT_PREFIX/usr/lib/pkgconfig/pixman-1.pc \
|
|
||||||
$SYSROOT_PREFIX/usr/lib/pkgconfig/pixman.pc
|
|
||||||
cp -rf $SYSROOT_PREFIX/usr/include/pixman-1 \
|
|
||||||
$SYSROOT_PREFIX/usr/include/pixman
|
|
@ -1,26 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
################################################################################
|
|
||||||
# This file is part of OpenELEC - http://www.openelec.tv
|
|
||||||
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
|
||||||
#
|
|
||||||
# This Program is free software; you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation; either version 2, or (at your option)
|
|
||||||
# any later version.
|
|
||||||
#
|
|
||||||
# This Program is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with OpenELEC.tv; see the file COPYING. If not, write to
|
|
||||||
# the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, MA 02110, USA.
|
|
||||||
# http://www.gnu.org/copyleft/gpl.html
|
|
||||||
################################################################################
|
|
||||||
|
|
||||||
. config/options $1
|
|
||||||
|
|
||||||
mkdir -p $INSTALL/usr/lib
|
|
||||||
cp -P $PKG_BUILD/pixman/.libs/*.so* $INSTALL/usr/lib
|
|
@ -26,11 +26,39 @@ PKG_LICENSE="OSS"
|
|||||||
PKG_SITE="http://www.x.org/"
|
PKG_SITE="http://www.x.org/"
|
||||||
PKG_URL="http://xorg.freedesktop.org/archive/individual/lib/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
PKG_URL="http://xorg.freedesktop.org/archive/individual/lib/$PKG_NAME-$PKG_VERSION.tar.bz2"
|
||||||
PKG_DEPENDS=""
|
PKG_DEPENDS=""
|
||||||
PKG_BUILD_DEPENDS="toolchain util-macros"
|
PKG_BUILD_DEPENDS_TARGET="toolchain util-macros"
|
||||||
PKG_PRIORITY="optional"
|
PKG_PRIORITY="optional"
|
||||||
PKG_SECTION="x11/lib"
|
PKG_SECTION="x11/lib"
|
||||||
PKG_SHORTDESC="pixman: Pixel manipulation library"
|
PKG_SHORTDESC="pixman: Pixel manipulation library"
|
||||||
PKG_LONGDESC="Pixman is a generic library for manipulating pixel regions, contains low-level pixel manipulation routines and is used by both xorg and cairo."
|
PKG_LONGDESC="Pixman is a generic library for manipulating pixel regions, contains low-level pixel manipulation routines and is used by both xorg and cairo."
|
||||||
PKG_IS_ADDON="no"
|
|
||||||
|
|
||||||
|
PKG_IS_ADDON="no"
|
||||||
PKG_AUTORECONF="yes"
|
PKG_AUTORECONF="yes"
|
||||||
|
|
||||||
|
if [ "$TARGET_ARCH" = arm ]; then
|
||||||
|
if [ "$TARGET_FPU" = neon -o "$TARGET_FPU" = neon-fp16 ]; then
|
||||||
|
PIXMAN_NEON="--enable-arm-neon"
|
||||||
|
else
|
||||||
|
PIXMAN_NEON="--disable-arm-neon"
|
||||||
|
fi
|
||||||
|
PIXMAN_CONFIG="--disable-mmx --disable-sse2 --disable-vmx --enable-arm-simd $PIXMAN_NEON --disable-arm-iwmmxt"
|
||||||
|
elif [ "$TARGET_ARCH" = i386 -o "$TARGET_ARCH" = x86_64 ]; then
|
||||||
|
PIXMAN_CONFIG="--enable-mmx --enable-sse2 --disable-vmx --disable-arm-simd --disable-arm-neon"
|
||||||
|
fi
|
||||||
|
|
||||||
|
PKG_CONFIGURE_OPTS_TARGET="--disable-openmp \
|
||||||
|
--disable-loongson-mmi \
|
||||||
|
$PIXMAN_CONFIG \
|
||||||
|
--disable-mips-dspr2 \
|
||||||
|
--enable-gcc-inline-asm \
|
||||||
|
--disable-timers \
|
||||||
|
--disable-gtk \
|
||||||
|
--disable-libpng \
|
||||||
|
--with-gnu-ld"
|
||||||
|
|
||||||
|
post_makeinstall_target() {
|
||||||
|
cp $SYSROOT_PREFIX/usr/lib/pkgconfig/pixman-1.pc \
|
||||||
|
$SYSROOT_PREFIX/usr/lib/pkgconfig/pixman.pc
|
||||||
|
cp -rf $SYSROOT_PREFIX/usr/include/pixman-1 \
|
||||||
|
$SYSROOT_PREFIX/usr/include/pixman
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user