tqtinterface: added .install file, minor fixups, dropped prefix in oreder to use QTDIR from profile

pull/3/head
Pawel "l0ner" Soltys 13 years ago
parent 333de29542
commit 073b1b4fa3

@ -17,12 +17,15 @@ source=('http://mirror.ets.kth.se/trinity/releases/3.5.13/dependencies/tqtinterf
'tqtpc-location.patch') 'tqtpc-location.patch')
md5sums=('d54cc9fd0b35555298efd17c32471a2b' md5sums=('d54cc9fd0b35555298efd17c32471a2b'
'c15745c944d98cb7c4cb553f0ca421d4') 'c15745c944d98cb7c4cb553f0ca421d4')
install='trinity-tqtinterface.install'
_prefix=/opt/qt3 # istead of using prefix, we will use QTDIR from qt3 profile
#_prefix=/opt/qt3
build() { build() {
msg "Setting PATH, CMAKE and Trinity Environment variables" msg "Setting PATH, CMAKE and Trinity Environment variables"
. /etc/profile.d/qt3.sh # Source the QT and KDE profile
[ "$QTDIR" = "" ] && . /etc/profile.d/qt3.sh
cd $srcdir cd $srcdir
msg "Creating out-of-source build directory: ${srcdir}/build" msg "Creating out-of-source build directory: ${srcdir}/build"
@ -31,15 +34,15 @@ build() {
msg "Starting cmake..." msg "Starting cmake..."
cmake "../dependencies/tqtinterface" \ cmake "../dependencies/tqtinterface" \
-DCMAKE_INSTALL_PREFIX=${_prefix} \ -DCMAKE_INSTALL_PREFIX=${QTDIR} \
-DQT_PREFIX_DIR=${QTDIR} \ -DQT_PREFIX_DIR=${QTDIR} \
-DQT_INCLUDE_DIR=${QTDIR}/include \ -DQT_INCLUDE_DIR=${QTDIR}/include \
-DQT_VERSION=3 \ -DMOC_EXECUTABLE=${QTDIR}/bin/moc \
-DMOC_EXECUTABLE=${QTDIR}/bin/moc -DQT_VERSION=3
# -DQT_INCLUDE_DIR=${_prefix}/include/tqt/Qt # -DQT_INCLUDE_DIR=${QTDIR}/include/tqt/Qt
# -DQT_LIBRARY_DIRS=/opt/qt/lib \
# -DQT_LIBRARY_DIRS=/opt/qt/lib \ # -DQT_LIBRARY_DIRS=/opt/qt/lib \
# -DCMAKE_SKIP_RPATH=ON || return 1 # -DCMAKE_SKIP_RPATH=ON || return 1
make make
} }
@ -49,8 +52,8 @@ package() {
make DESTDIR="${pkgdir}" install make DESTDIR="${pkgdir}" install
# include uic-tqt in package # include uic-tqt in package
# cd ${srcdir} #cd ${srcdir}
# mkdir -p ${pkgdir}/usr/bin #mkdir -p ${pkgdir}/usr/bin
# cp -Rp ${srcdir}/${_svnmod}/qtinterface/uic-tqt ${pkgdir}/usr/bin #cp -Rp ${srcdir}/${_svnmod}/qtinterface/uic-tqt ${pkgdir}/usr/bin
} }

@ -0,0 +1,12 @@
post_install() {
ldconfig &> /dev/null
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
Loading…
Cancel
Save