diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-09-20 17:08:32 +0200 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2021-09-29 06:38:40 +0000 |
commit | 018f946ee70600993c60a74046f417ca05bdb41b (patch) | |
tree | 37829ad4f8af4005172148ee78ab38b67328cecb /arch/3.5.13/trinity-base/trinity-tqtinterface | |
parent | 2bcda9ee7da7582ee0e550a71b9f865cac76dce2 (diff) | |
download | tde-packaging-018f946ee70600993c60a74046f417ca05bdb41b.tar.gz tde-packaging-018f946ee70600993c60a74046f417ca05bdb41b.zip |
ArchLinux: Take a newer state of pkgbuilds from Michael Manley
Clean old long-term not maintained pkgbuilds.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'arch/3.5.13/trinity-base/trinity-tqtinterface')
5 files changed, 0 insertions, 133 deletions
diff --git a/arch/3.5.13/trinity-base/trinity-tqtinterface/PKGBUILD b/arch/3.5.13/trinity-base/trinity-tqtinterface/PKGBUILD deleted file mode 100644 index a1f14f9a3..000000000 --- a/arch/3.5.13/trinity-base/trinity-tqtinterface/PKGBUILD +++ /dev/null @@ -1,75 +0,0 @@ -# Maintainer: Pawel 'l0ner' Soltys <pwslts@gmail.com> -# Contributor: Calvin Morrison <mutantturkey@gmail.com> - -pkgname=trinity-tqtinterface -pkgver=3513 -pkgrel=4 -arch=('i686' 'x86_64') -url="http://trinity.pearsoncomputing.net" -license=('GPL2') -groups=('trinity-base') -pkgdesc="Trinity - TQt interface" -depends=('trinity-qt3') -makedepends=('pkgconfig' 'cmake') -conflicts=('kdemod3-tqtinterface') -makeopts=('libtool' '!emptydirs') -source=('http://mirror.ets.kth.se/trinity/releases/3.5.13/dependencies/tqtinterface-3.5.13.tar.gz' - 'tqtpc-location.patch' 'trinity.profile.sh' 'trinity.profile.csh') -md5sums=('d54cc9fd0b35555298efd17c32471a2b' - 'c15745c944d98cb7c4cb553f0ca421d4' - '72c6c4fb492c1f4b4741fad1dd70d62f' - '915e14c6264a6b9c46a6a20b16cdcd06') -install='trinity-tqtinterface.install' - -build() { - msg "Setting PATH, CMAKE and Trinity Environment variables" - # Source the QT and KDE profile - [ "$QTDIR" = "" ] && . /etc/profile.d/qt3.sh - - cd $srcdir - msg "Creating out-of-source build directory: ${srcdir}/build" - mkdir -p build - cd build - - msg "Starting cmake..." - cmake "../dependencies/tqtinterface" \ - -DCMAKE_INSTALL_PREFIX=/opt/trinity \ - -DQT_PREFIX_DIR=${QTDIR} \ - -DQT_INCLUDE_DIR=${QTDIR}/include \ - -DMOC_EXECUTABLE=${QTDIR}/bin/moc \ - -DQT_VERSION=3 -# -DQT_INCLUDE_DIR=${QTDIR}/include/tqt/Qt -# -DQT_LIBRARY_DIRS=/opt/qt/lib \ -# -DCMAKE_SKIP_RPATH=ON || return 1 - - make -} - -package() { - msg "Packaging - $pkgname-$pkgver" - cd ${srcdir}/build - make DESTDIR="${pkgdir}" install - - # include uic-tqt in package - #cd ${srcdir} - #mkdir -p ${pkgdir}/usr/bin - #cp -Rp ${srcdir}/${_svnmod}/qtinterface/uic-tqt ${pkgdir}/usr/bin - - # 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 /opt/trinity/lib > $pkgdir/etc/ld.so.conf.d/trinity.conf - echo /opt/trinity/lib/trinity >> $pkgdir/etc/ld.so.conf.d/trinity.conf - - # Install profiles - install -D -m755 $srcdir/trinity.profile.sh $pkgdir/etc/profile.d/trinity.sh - install -D -m755 $srcdir/trinity.profile.csh $pkgdir/etc/profile.d/trinity.csh - -} diff --git a/arch/3.5.13/trinity-base/trinity-tqtinterface/tqtpc-location.patch b/arch/3.5.13/trinity-base/trinity-tqtinterface/tqtpc-location.patch deleted file mode 100644 index f256e925c..000000000 --- a/arch/3.5.13/trinity-base/trinity-tqtinterface/tqtpc-location.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- dependencies/tqtinterface/CMakeLists.txt 2011-03-28 00:12:24.000000000 +0200 -+++ dependencies/tqtinterface/CMakeLists.txt.new 2012-01-29 12:15:16.000000000 +0100 -@@ -35,7 +35,7 @@ - tde_setup_install_path( BIN_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/bin" ) - tde_setup_install_path( LIB_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/lib${LIB_SUFFIX}" ) - tde_setup_install_path( INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include/tqt" ) --tde_setup_install_path( PKGCONFIG_INSTALL_DIR "/usr/lib${LIB_SUFFIX}/pkgconfig" ) -+tde_setup_install_path( PKGCONFIG_INSTALL_DIR "${EXEC_INSTALL_PREFIX}/lib${LIB_SUFFIX}/pkgconfig" ) - - - ##### tqtinterface sources ###################### diff --git a/arch/3.5.13/trinity-base/trinity-tqtinterface/trinity-tqtinterface.install b/arch/3.5.13/trinity-base/trinity-tqtinterface/trinity-tqtinterface.install deleted file mode 100644 index 2a8dc4c98..000000000 --- a/arch/3.5.13/trinity-base/trinity-tqtinterface/trinity-tqtinterface.install +++ /dev/null @@ -1,12 +0,0 @@ -post_install() { - ldconfig &> /dev/null -} - -post_upgrade() { - post_install -} - -post_remove() { - post_install -} - diff --git a/arch/3.5.13/trinity-base/trinity-tqtinterface/trinity.profile.csh b/arch/3.5.13/trinity-base/trinity-tqtinterface/trinity.profile.csh deleted file mode 100644 index 7fc995130..000000000 --- a/arch/3.5.13/trinity-base/trinity-tqtinterface/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-tqtinterface/trinity.profile.sh b/arch/3.5.13/trinity-base/trinity-tqtinterface/trinity.profile.sh deleted file mode 100644 index 70e503534..000000000 --- a/arch/3.5.13/trinity-base/trinity-tqtinterface/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 |