2009-03-18 13:02:53 +01:00
|
|
|
#!/bin/sh
|
2011-01-09 23:32:01 +01:00
|
|
|
|
2011-01-09 21:26:03 +01:00
|
|
|
################################################################################
|
|
|
|
# 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
|
|
|
|
################################################################################
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2010-07-21 18:54:45 +02:00
|
|
|
. config/options $1
|
2009-03-18 13:02:53 +01:00
|
|
|
|
|
|
|
if [ -z "$1" ]; then
|
|
|
|
echo "usage: $0 package_name"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
$SCRIPTS/get $1
|
|
|
|
|
|
|
|
mkdir -p $BUILD
|
|
|
|
|
2010-12-18 22:55:20 +01:00
|
|
|
[ ! -d "$SOURCES/$1" -a ! -d "$PKG_DIR/sources" ] && exit 0
|
2009-03-18 13:02:53 +01:00
|
|
|
|
|
|
|
mkdir -p $STAMPS/$1
|
|
|
|
STAMP=$STAMPS/$1/unpack
|
|
|
|
|
2010-12-18 22:55:20 +01:00
|
|
|
[ -f "$STAMP" -a -f "$PKG_DIR/need_unpack" ] && $PKG_DIR/need_unpack $@
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
|
2009-03-18 13:02:53 +01:00
|
|
|
for patch in $PKG_DIR/patches/*; do
|
2010-12-18 22:55:20 +01:00
|
|
|
if [ "$patch" -nt "$STAMP" ]; then
|
2009-03-18 13:02:53 +01:00
|
|
|
rm -f $STAMP
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
|
2010-12-18 22:55:20 +01:00
|
|
|
[ -f "$STAMP" ] && exit 0
|
2009-03-18 13:02:53 +01:00
|
|
|
|
|
|
|
printf "%${INDENT}c UNPACK $1\n" >&$SILENT_OUT
|
|
|
|
export INDENT=$((${INDENT:-1}+$INDENT_SIZE))
|
|
|
|
|
|
|
|
rm -rf $BUILD/$1[-_][0-9]*
|
|
|
|
rm -rf $BUILD/$1[-_]r[0-9]*
|
|
|
|
rm -rf $BUILD/$1[-_]cvs*
|
|
|
|
rm -rf $BUILD/$1[-_]svn*
|
|
|
|
rm -rf $BUILD/$1[-_]git*
|
|
|
|
|
2010-11-19 13:35:11 +01:00
|
|
|
if [ -n "$PKG_URL" ]; then
|
2009-03-18 13:02:53 +01:00
|
|
|
$SCRIPTS/extract $1 "$1*.tar.bz2" $BUILD
|
2011-06-20 21:56:18 +02:00
|
|
|
$SCRIPTS/extract $1 "$1*.tbz" $BUILD
|
2009-03-18 13:02:53 +01:00
|
|
|
$SCRIPTS/extract $1 "$1*.tar.gz" $BUILD
|
2011-06-20 21:56:18 +02:00
|
|
|
$SCRIPTS/extract $1 "$1*.tar.xz" $BUILD
|
|
|
|
$SCRIPTS/extract $1 "$1*.txz" $BUILD
|
2009-03-18 13:02:53 +01:00
|
|
|
$SCRIPTS/extract $1 "$1*.tgz" $BUILD
|
2010-07-18 00:47:00 +02:00
|
|
|
$SCRIPTS/extract $1 "$1*.7z" $BUILD
|
2009-03-18 13:02:53 +01:00
|
|
|
fi
|
|
|
|
|
2011-12-04 08:33:57 +01:00
|
|
|
[ -f "$PKG_DIR/rename" ] && $PKG_DIR/rename $@ >&$VERBOSE_OUT
|
|
|
|
|
2010-12-18 22:55:20 +01:00
|
|
|
if [ -d "$PKG_DIR/sources" ]; then
|
2011-05-06 19:58:46 +02:00
|
|
|
[ ! -d "$BUILD/${PKG_NAME}-${PKG_VERSION}" ] && mkdir -p $BUILD/${PKG_NAME}-${PKG_VERSION}
|
|
|
|
cp -PRf $PKG_DIR/sources/* $BUILD/${PKG_NAME}-${PKG_VERSION}
|
2009-03-18 13:02:53 +01:00
|
|
|
fi
|
|
|
|
|
2010-12-18 23:44:46 +01:00
|
|
|
[ -d $BUILD/${PKG_NAME}[-_.]${PKG_VERSION} ] && PKG_BUILD=`ls -d $BUILD/${PKG_NAME}[-_.]${PKG_VERSION}`
|
|
|
|
[ -d $BUILD/${PKG_NAME}${PKG_VERSION} ] && PKG_BUILD=`ls -d $BUILD/${PKG_NAME}${PKG_VERSION}`
|
2011-02-09 11:09:22 +01:00
|
|
|
[ -d $BUILD/${PKG_NAME} ] && PKG_BUILD=`ls -d $BUILD/${PKG_NAME}`
|
2010-11-25 18:31:01 +01:00
|
|
|
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
for i in $PKG_DIR/patches/$PKG_NAME-$PKG_VERSION*.patch ; do
|
2010-12-18 22:55:20 +01:00
|
|
|
if [ -f "$i" ]; then
|
2009-03-18 13:02:53 +01:00
|
|
|
PATCH=`basename $i`
|
2009-05-31 23:34:46 +02:00
|
|
|
PT=`echo $PATCH | sed 's/.*\.\(.*\)$/\1/'`
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
if [ "$PT" != "patch" -a "$PT" != "$TARGET_ARCH" ]; then
|
2011-02-09 11:09:22 +01:00
|
|
|
printf "%${INDENT}c SKIP PATCH: $i\n" >&$SILENT_OUT
|
2009-03-18 13:02:53 +01:00
|
|
|
continue;
|
|
|
|
else
|
2011-02-09 11:09:22 +01:00
|
|
|
printf "%${INDENT}c APPLY PATCH: $i\n" >&$SILENT_OUT
|
2010-12-18 23:44:46 +01:00
|
|
|
cat $i | patch -d `echo "$PKG_BUILD" | cut -f1 -d\ ` -p1 >&$VERBOSE_OUT
|
2009-03-18 13:02:53 +01:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2010-12-18 22:55:20 +01:00
|
|
|
[ -f "$PKG_DIR/unpack" ] && $PKG_DIR/unpack $@ >&$VERBOSE_OUT
|
2009-03-18 13:02:53 +01:00
|
|
|
|
2011-02-09 11:09:22 +01:00
|
|
|
for config in `find $BUILD/$1* -name config.guess | sed 's/config.guess//'`; do
|
|
|
|
printf "%${INDENT}c FIXCONFIG: $config\n" >&$SILENT_OUT
|
|
|
|
|
|
|
|
[ -f "$config/config.guess" ] && cp -f $SCRIPTS/configtools/config.guess $config
|
|
|
|
[ -f "$config/config.sub" ] && cp -f $SCRIPTS/configtools/config.sub $config
|
|
|
|
[ -f "$config/configure.guess" ] && cp -f $SCRIPTS/configtools/config.guess $config/configure.guess
|
|
|
|
[ -f "$config/configure.sub" ] && cp -f $SCRIPTS/configtools/config.sub $config/configure.sub
|
|
|
|
done
|
|
|
|
|
2009-03-18 13:02:53 +01:00
|
|
|
rm -f $STAMPS/$1/build
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
|
2009-12-19 01:35:31 +01:00
|
|
|
for i in `sed -n "s/^\([^#].*\)=\".*$/\1/p" $PROJECT_DIR/$PROJECT/options | grep -v "#"`; do
|
2009-03-18 13:02:53 +01:00
|
|
|
eval val=\$$i
|
|
|
|
echo "STAMP_$i=\"$val"\" >> $STAMP
|
|
|
|
done
|