diff options
author | Pawel "l0ner" Soltys <pwslts@gmail.com> | 2012-02-06 23:52:39 +0100 |
---|---|---|
committer | Pawel "l0ner" Soltys <pwslts@gmail.com> | 2012-02-06 23:52:39 +0100 |
commit | f8de04b474a6ab365bb357cea36bfe0aee5cb88d (patch) | |
tree | 51ec459a36cf1953eaf1a1e25c96f6f7572836ae /arch/3.5.13/trinity-base/trinity-arts | |
parent | 5e768206199aad8d1874aaf398b43a50c1ed1bdc (diff) | |
download | tde-packaging-f8de04b474a6ab365bb357cea36bfe0aee5cb88d.tar.gz tde-packaging-f8de04b474a6ab365bb357cea36bfe0aee5cb88d.zip |
arts, dbus-tqt-1, dbus-tqt, pyqt3, tqtinterface: minor fixups
Diffstat (limited to 'arch/3.5.13/trinity-base/trinity-arts')
-rw-r--r-- | arch/3.5.13/trinity-base/trinity-arts/PKGBUILD | 36 | ||||
-rw-r--r-- | arch/3.5.13/trinity-base/trinity-arts/trinity.profile.csh | 21 | ||||
-rw-r--r-- | arch/3.5.13/trinity-base/trinity-arts/trinity.profile.sh | 14 |
3 files changed, 5 insertions, 66 deletions
diff --git a/arch/3.5.13/trinity-base/trinity-arts/PKGBUILD b/arch/3.5.13/trinity-base/trinity-arts/PKGBUILD index 6e8d65267..991f16eac 100644 --- a/arch/3.5.13/trinity-base/trinity-arts/PKGBUILD +++ b/arch/3.5.13/trinity-base/trinity-arts/PKGBUILD @@ -3,7 +3,7 @@ pkgname=trinity-arts pkgver=3513 -pkgrel=3 +pkgrel=4 arch=('i686' 'x86_64') url='http://www.trinitydesktop.com' license=('GPL') @@ -15,21 +15,15 @@ depends=('trinity-tqtinterface' makedepends=('pkgconfig' 'cmake') conflicts=('kdemod3-arts' 'arts') options=('libtool' '!emptydirs') -source=('http://mirror.ets.kth.se/trinity/releases/3.5.13/dependencies/arts-3.5.13.tar.gz' - 'trinity.profile.sh' 'trinity.profile.csh') -md5sums=('109124dabb1aaa9d44eb32e43b549142' - '72c6c4fb492c1f4b4741fad1dd70d62f' - '915e14c6264a6b9c46a6a20b16cdcd06') +source=('http://mirror.ets.kth.se/trinity/releases/3.5.13/dependencies/arts-3.5.13.tar.gz') +md5sums=('109124dabb1aaa9d44eb32e43b549142') install='trinity-arts.install' -_prefix="/opt/trinity" - build() { - - # Do we need this? msg "Setting PATH, CMAKE and Trinity Environment variables" # Source the QT and KDE profile [ "$QTDIR" = "" ] && . /etc/profile.d/qt3.sh + [ "$TDEDIR" = "" ] && . /etc/profile.d/trinity.sh cd $srcdir msg "Creating out-of-source build directory: ${srcdir}/build" @@ -38,7 +32,7 @@ build() { msg "Starting cmake..." cmake ${srcdir}/dependencies/arts/ \ - -DCMAKE_INSTALL_PREFIX=${_prefix} + -DCMAKE_INSTALL_PREFIX=${TDEDIR} msg "Building $pkgname..." make @@ -49,26 +43,6 @@ package() { msg "Packaging - $pkgname-$pkgver" cd ${srcdir}/build - make DESTDIR="$pkgdir" install - # since this is first package to provide - # binaries, include headers and libs from trinity - # it should contain sripts which would add - # their location into system variables - # this mean that this package should provide - # /etc/ld.so.conf.d/trinity.conf - lib locations for linker - # /etc/profile.d/trinity.sh - $PATH and other system variables for bash - # /etc/profile.d/trinity.csh - $PATH and other system variables for csh - # up until now it was done in the kdelibs PKGBUILD/package - - # Create and install ld.so.conf.d file - install -d -m755 $pkgdir/etc/ld.so.conf.d/ - echo $_prefix/lib > $pkgdir/etc/ld.so.conf.d/trinity.conf - echo $_prefix/lib/kde >> $pkgdir/etc/ld.so.conf.d/trinity.conf - - # Install profiles - install -D -m644 $srcdir/trinity.profile.sh $pkgdir/etc/profile.d/trinity.sh - install -D -m644 $srcdir/trinity.profile.csh $pkgdir/etc/profile.d/trinity.csh - } diff --git a/arch/3.5.13/trinity-base/trinity-arts/trinity.profile.csh b/arch/3.5.13/trinity-base/trinity-arts/trinity.profile.csh deleted file mode 100644 index 7fc995130..000000000 --- a/arch/3.5.13/trinity-base/trinity-arts/trinity.profile.csh +++ /dev/null @@ -1,21 +0,0 @@ -setenv TDEDIR /opt/trinity -setenv TDEDIRS /usr:$TDEDIR -setenv PATH $PATH:$TDEDIR/bin - -if ( ! $?PKG_CONFIG_PATH ) then - setenv PKG_CONFIG_PATH $TDEDIR/lib/pkgconfig -else - setenv PKG_CONFIG_PATH $TDEDIR/lib/pkgconfig:$PKG_CONFIG_PATH -endif - -if ( ! $?XDG_DATA_DIRS ) then - setenv XDG_DATA_DIRS $TDEDIR/share -else - setenv XDG_DATA_DIRS $TDEDIR/share:$XDG_DATA_DIRS -endif - -if ( ! $?XDG_CONFIG_DIRS ) then - setenv XDG_CONFIG_DIRS $TDEDIR/etc/xdg -else - setenv XDG_CONFIG_DIRS $TDEDIR/etc/xdg:$XDG_CONFIG_DIRS -endif diff --git a/arch/3.5.13/trinity-base/trinity-arts/trinity.profile.sh b/arch/3.5.13/trinity-base/trinity-arts/trinity.profile.sh deleted file mode 100644 index 70e503534..000000000 --- a/arch/3.5.13/trinity-base/trinity-arts/trinity.profile.sh +++ /dev/null @@ -1,14 +0,0 @@ -export TDEDIR=/opt/trinity -export TDEDIRS=$TDEDIR -export PATH=$PATH:$TDEDIR/bin -export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$TDEDIR/lib/pkgconfig -if [ ! -z $XDG_DATA_DIRS ]; then - export XDG_DATA_DIRS=$XDG_DATA_DIRS:$TDEDIR/share -else - export XDG_DATA_DIRS=$TDEDIR/share -fi -if [ ! -z $XDG_CONFIG_DIRS ]; then - export XDG_CONFIG_DIRS=$XDG_CONFIG_DIRS:$TDEDIR/etc/xdg -else - export XDG_CONFIG_DIRS=$TDEDIR/etc/xdg -fi
\ No newline at end of file |