From eed38d18272b348feb56333b8d640853fbdc9993 Mon Sep 17 00:00:00 2001 From: vpeter4 Date: Fri, 11 May 2012 15:00:02 +0300 Subject: [PATCH] new package: imlib2 --- packages/3rdparty/graphics/imlib2/build | 50 +++++++++++++++++++++++++ packages/3rdparty/graphics/imlib2/meta | 35 +++++++++++++++++ 2 files changed, 85 insertions(+) create mode 100755 packages/3rdparty/graphics/imlib2/build create mode 100755 packages/3rdparty/graphics/imlib2/meta diff --git a/packages/3rdparty/graphics/imlib2/build b/packages/3rdparty/graphics/imlib2/build new file mode 100755 index 0000000000..b02be3e17b --- /dev/null +++ b/packages/3rdparty/graphics/imlib2/build @@ -0,0 +1,50 @@ +#!/bin/sh + +################################################################################ +# This file is part of OpenELEC - http://www.openelec.tv +# Copyright (C) 2009-2011 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, 675 Mass Ave, Cambridge, MA 02139, USA. +# http://www.gnu.org/copyleft/gpl.html +################################################################################ + +. config/options $1 + +VDR_ADDON_DIR="/storage/.xbmc/addons/service.multimedia.vdr-addon" + +cd $PKG_BUILD + +case "$TARGET_ARCH" in + i386) + MMX_ARG="--enable-mmx --disable-amd64" + ;; + x86_64) + MMX_ARG="--enable-mmx --enable-amd64" + ;; + *) + MMX_ARG="--disable-mmx --disable-amd64" + ;; +esac + +./configure --host=$TARGET_NAME \ + --build=$HOST_NAME \ + --prefix=/usr \ + --sysconfdir=/etc \ + $MMX_ARG + +sed -i "s|#define SYS_LOADERS_PATH .*|#define SYS_LOADERS_PATH \"$VDR_ADDON_DIR/lib/imlib2\"|" src/lib/loaderpath.h + +make +$MAKEINSTALL diff --git a/packages/3rdparty/graphics/imlib2/meta b/packages/3rdparty/graphics/imlib2/meta new file mode 100755 index 0000000000..d2479b4bad --- /dev/null +++ b/packages/3rdparty/graphics/imlib2/meta @@ -0,0 +1,35 @@ +################################################################################ +# This file is part of OpenELEC - http://www.openelec.tv +# Copyright (C) 2009-2011 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, 675 Mass Ave, Cambridge, MA 02139, USA. +# http://www.gnu.org/copyleft/gpl.html +################################################################################ + +PKG_NAME="imlib2" +PKG_VERSION="1.4.5" +PKG_REV="1" +PKG_ARCH="any" +PKG_LICENSE="GPL" +PKG_SITE="http://web.enlightenment.org/" +PKG_URL="$SOURCEFORGE_SRC/enlightenment/${PKG_NAME}-${PKG_VERSION}.tar.bz2" +PKG_DEPENDS="" +PKG_BUILD_DEPENDS="toolchain libjpeg-turbo libpng tiff zlib bzip2" +PKG_PRIORITY="optional" +PKG_SECTION="multimedia" +PKG_SHORTDESC="Imlib2 is a graphics library." +PKG_LONGDESC="Imlib2 is a graphics library for file loading, saving, rendering, manipulation." +PKG_IS_ADDON="no" +PKG_AUTORECONF="no"