#!/usr/bin/bash # This script assumes it will be launched within "/NAME/VERSION/src" dir. # With all sources in "src" Your Vector Linux .tlz package, slack-desc, # and slack-required will be found in "VERSION" dir. The extraction and # build will be in a temp dir created in "NAME" dir, and then removed on exit. # Comment out second to last line to keep this dir intact. # # This Template was compiled from the contributions of many users of the Vector # Linux forum at http://forum.vectorlinux.com and from tidbits collected # from all over the internet. # # Generated by sbbuilder-0.4.12.3, written by Rodrigo Bistolfi # (rbistolfi) and Raimon Grau Cuscó (Kidd) for VectorLinux. # # Please put your name below if you add some original scripting lines. # AUTHORS = NAME="kde-l10n" #Enter package Name! VERSION=${VERSION:-"4.6.2"} #Enter package Version! VER=$(echo $VERSION|sed 's/-/_/') #this fixes - in version VL_PACKAGER=${VL_PACKAGER:-"hata_ph"} #Enter your Name! LINK=${LINK:-""} #Enter URL for package here! #SYSTEM VARIABLES #---------------------------------------------------------------------------- BUILDNUM=${BUILDNUM:-"1"} VL_VERSION=${VL_VERSION:-"$(ls /var/log/packages/|grep vlconfig2|cut -d "-" -f4|cut -c 2-5)"} BUILD=${BUILD:-"$BUILDNUM""$VL_VERSION"} ARCH=${ARCH:-"$(uname -m)"} CONFIG_OPTIONS=${CONFIG_OPTIONS:-""} LDFLAG_OPTIONS=${LDFLAG_OPTIONS:-""} ADDRB=${ADDRB:-""} #Add deps that need to be added to the slack-required file here EXRB=${EXRB:-""} #Add deps that need to be excluded from the slack-required file here #---------------------------------------------------------------------------- #SETUP PACKAGING ENVIRONMENT #-------------------------------------------- CWD=$(pwd) cd ../ RELEASEDIR=$(pwd) cd $CWD mkdir -p $RELEASEDIR/tmp TMP=$RELEASEDIR/tmp PKG=$TMP/package-$NAME #-------------------------------------------- # Get the kde environment variables [ -d kdebase ] && . ./kdebase/profile.d/kde.sh # Set the config option variables if they are not already set: [ -r ../KDE.options ] && . ../KDE.options if [ $UID != 0 ]; then echo "You are not authorized to run this script. Please login as root" exit 1 fi if [ ! -x /usr/bin/requiredbuilder ]; then echo "Requiredbuilder not installed, or not executable." exit 1 fi if [ $VL_PACKAGER = "YOURNAME" ]; then echo 'Who are you? Please edit VL_PACKAGER=${VL_PACKAGER:-YOURNAME} in this script. Change the word "YOURNAME" to your VectorLinux packager name. You may also export VL_PACKAGER, or call this script with VL_PACKAGER="YOUR NAME HERE"' exit 1 fi #CFLAGS SETUP #-------------------------------------------- if [[ "$ARCH" = i?86 ]]; then ARCH=i586 SLKCFLAGS="-O2 -march=i586 -mtune=i686" CONFIGURE_TRIPLET="i486-slackware-linux" LIBDIRSUFFIX="" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2 -fpic" CONFIGURE_TRIPLET="x86_64-slackware-linux" LIBDIRSUFFIX="64" elif [ "$ARCH" = "powerpc" ]; then SLKCFLAGS="-O2" CONFIGURE_TRIPLET="powerpc-vlocity-linux" LIBDIRSUFFIX="" fi export CFLAGS="$SLKCFLAGS $CFLAG_OPTIONS" export CXXFLAGS=$CFLAGS export LDFLAGS="$LDFLAGS $LDFLAG_OPTIONS" #-------------------------------------------- #GET THE SOURCE #-------------------------------------------- for SRC in $(echo $LINK);do if [ ! -f $CWD/$(basename $SRC) ] then wget -c $SRC fi done #-------------------------------------------- # This function will insert missing kdepim translations from kde-l10n-4.4.5: insert_kdepim() { if [ -r $CWD/kdepim-l10n/kdepim-l10n-$(echo $PKGNAM | cut -f 3 -d -)-4.4.5.tar.bz2 ]; then tar xvf $CWD/kdepim-l10n/kdepim-l10n-$(echo $PKGNAM | cut -f 3 -d -)-4.4.5.tar.bz2 fi for dir in $(find . -type d -name messages) $(find . -type d -name docs) ; do ( cd $dir if [ -d kdepim ]; then echo "add_subdirectory( kdepim )" >> CMakeLists.txt.new fi if [ -r CMakeLists.txt ]; then cat CMakeLists.txt >> CMakeLists.txt.new mv CMakeLists.txt.new CMakeLists.txt else rm -f CMakeLists.txt.new fi ) done # Update DTD specification. This will fix some of the issues... sed -i -e "s/V4.1.2-Based/V4.2-Based/g" $(grep -lr "V4.1.2-Based" *) sed -i -e "s/V4.1-Based/V4.2-Based/g" $(grep -lr "V4.1-Based" *) sed -i -e "s/V4.2-Based Variant V1.0/V4.2-Based Variant V1.1/g" $(grep -lr "V4.2-Based Variant V1.0" *) if ls $CWD/kdepim-l10n/kdepim-l10n-$(echo $PKGNAM | cut -f 3 -d -)-4.4.5.*.diff.gz 1> /dev/null 2> /dev/null ; then for patch in $CWD/kdepim-l10n/kdepim-l10n-$(echo $PKGNAM | cut -f 3 -d -)-4.4.5.*.diff.gz ; do zcat $patch | patch -p1 --verbose || exit 1 done fi } make_language_pack() { rm -rf $PKG mkdir -p $TMP $PKG cd $TMP rm -rf $PKGNAM-$VERSION tar xvf $CWD/$PKGNAM-$VERSION.tar.bz2 || exit 1 cd $PKGNAM-$VERSION || exit 1 insert_kdepim; chown -R root:root . find . \ \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ -exec chmod 755 {} \; -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; mkdir -p build ( cd build cmake \ -DCMAKE_C_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_CXX_FLAGS:STRING="$SLKCFLAGS" \ -DCMAKE_INSTALL_PREFIX=/usr \ -DMAN_INSTALL_DIR=/usr/man \ -DSYSCONF_INSTALL_DIR=/etc/kde \ -DLIB_SUFFIX=${LIBDIRSUFFIX} \ .. make || exit 1 make install DESTDIR=$PKG || exit 1 ) || touch $TMP/$PKGNAM.failed ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) if [ -d $PKG/usr/man ]; then ( cd $PKG/usr/man find . -type f -exec gzip -9 {} \; ) fi cat >> $PKG/install/doinst.sh << EOF CWD=\$(pwd) cd usr/info if [ -f dir ];then rm dir fi if [ -f dir.gz ];then rm dir.gz fi for i in *.info.gz;do install-info \$i dir done cd \$CWD EOF # Add schemas install to the doinst.sh if schemas are found. [ -d $PKG/etc/gconf/schemas ] && { # Make sure we have gconftool installed echo "if [ -x usr/bin/gconftool-2 ]; then" >> $PKG/install/doinst.sh ( cd $PKG/etc/gconf/schemas for schema in *.schemas; do # Install schemas echo "GCONF_CONFIG_SOURCE=\"xml::etc/gconf/gconf.xml.defaults\" \ usr/bin/gconftool-2 --makefile-install-rule \ etc/gconf/schemas/${schema} >/dev/null 2>&1" \ >> $PKG/install/doinst.sh done; ) # Finish off gconf block echo "fi" >> $PKG/install/doinst.sh } mkdir -p $PKG/install cat >> $PKG/install/doinst.sh << EOF # update rarian database if [ -x usr/bin/rarian-sk-update ]; then usr/bin/rarian-sk-update 1> /dev/null 2> /dev/null fi # update mime database if [ -x usr/bin/update-mime-database ]; then usr/bin/update-mime-database usr/share/mime 1> /dev/null 2> /dev/null fi # update desktop entries if [ -x usr/bin/update-desktop-database ]; then usr/bin/update-desktop-database 1> /dev/null 2> /dev/null fi # update hicolor icons if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then rm -f usr/share/icons/hicolor/icon-theme.cache fi usr/bin/gtk-update-icon-cache -f -q usr/share/icons/hicolor 1>/dev/null 2>/dev/null # Restart gconfd-2 if running to reload new gconf settings if ps acx | grep -q gconfd-2 ; then killall -HUP gconfd-2 ; fi EOF mkdir -p $PKG/install cat $CWD/slack-desc/slack-desc.kde-l10n-$PKGLANG > $PKG/install/slack-desc cd $PKG echo "Finding dependencies..." ADD="$ADDRB" EXCLUDE="$EXRB" requiredbuilder -v -y -s $RELEASEDIR $PKG echo "Creating package $NAME-$VERSION-$ARCH-$BUILD.txz" makepkg -l y -c n $RELEASEDIR/$PKGNAM-$VERSION-$ARCH-$BUILD.txz } if [ -z $PKGLANG ]; then for PKGLANG in $(cat languages) ; do PKGNAM=kde-l10n-$PKGLANG PKG=$TMP/package-kde-l10n-$PKGLANG # The global options may be overridden here (if needed): [ -r ./local.options/$PKGLANG ] && . ./local.options/$PKGLANG make_language_pack; done else PKGNAM=kde-l10n-$PKGLANG PKG=$TMP/package-kde-l10n-$PKGLANG # The global options may be overridden here (if needed): [ -r ./local.options/$PKGLANG ] && . ./local.options/$PKGLANG make_language_pack; fi cd $CWD echo "Cleaning up temp files..." && rm -rf $TMP echo "Package Complete" #-------------------------------------------------------------- # vim: set tabstop=4 shiftwidth=4 foldmethod=marker : ##