You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.1 KiB
Bash
80 lines
2.1 KiB
Bash
13 years ago
|
# $Id$
|
||
|
# Maintainer: David C. Rankin <drankinatty@gmail.com>
|
||
|
#
|
||
|
# All modifications and uses of this file are licensed under
|
||
|
# the software for which this file was made for, should the software
|
||
|
# be under an Open Source License, at least version 1.9, defined
|
||
|
# by the Open Source Initiative. In other cases, this file is automatically
|
||
|
# released to the Public Domain.
|
||
|
#
|
||
|
|
||
|
pkgname=trinity-tqtinterface
|
||
|
pkgver=3513
|
||
|
pkgrel=1
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://trinity.pearsoncomputing.net"
|
||
|
license=('GPL2')
|
||
|
groups=('trinity-base')
|
||
|
pkgdesc="Trinity - tqtinterface"
|
||
|
depends=('python2-sip'
|
||
|
'trinity-qt3'
|
||
|
'trinity-pyqt3')
|
||
|
makedepends=(
|
||
|
'pkgconfig'
|
||
|
'cmake'
|
||
|
'autoconf'
|
||
|
'libxi'
|
||
|
'libxft'
|
||
|
'libxrandr'
|
||
|
'libxcursor'
|
||
|
'libxinerama'
|
||
|
'mesa')
|
||
|
provides=('trinity-tqtinterface')
|
||
|
conflicts=('trinity-tqtinterface')
|
||
|
replaces=('trinity-tqtinterface')
|
||
|
source=(http://mirror.its.uidaho.edu/pub/trinity/releases/3.5.13/dependencies/tqtinterface-3.5.13.tar.gz)
|
||
|
md5sums=('d54cc9fd0b35555298efd17c32471a2b')
|
||
|
|
||
|
_qtdir=/opt/qt
|
||
|
_prefix=/opt/trinity
|
||
|
|
||
|
build() {
|
||
|
|
||
|
msg "Setting PATH, CMAKE and Trinity Environment variables"
|
||
|
if [[ -r /etc/profile.d/qt3.sh ]]; then
|
||
|
. /etc/profile.d/qt3.sh
|
||
|
else
|
||
|
[[ ${PATH%%:*} =~ ${_qtdir}/bin ]] || export PATH=${_qtdir}/bin:$PATH
|
||
|
fi
|
||
|
|
||
|
echo $PATH
|
||
|
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=${_prefix} -DQT_PREFIX_DIR=/opt/qt/ -DQT_LIBRARY_DIRS=/opt/qt/lib -DQT_INCLUDE_DIR=/opt/qt/include -DQT_VERSION=3 -DMOC_EXECUTABLE=${_qtdir}/bin/moc || return 1
|
||
|
# -DQT_INCLUDE_DIR=${_prefix}/include/tqt/Qt
|
||
|
# -DWITH_QT3=ON \
|
||
|
# -DQT_LIBRARY_DIRS=/opt/qt/lib \
|
||
|
# -DCMAKE_SKIP_RPATH=ON || return 1
|
||
|
make
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
|
||
|
msg "Packaging - $pkgname-$pkgver"
|
||
|
|
||
|
# cd ${_svnmod}
|
||
|
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
|
||
|
|
||
|
# rm -r ${srcdir}/${_svnmod}
|
||
|
}
|