parent
7438b4f4b5
commit
09e76ae9f4
@ -0,0 +1,48 @@
|
||||
# Maintainer: Calvin Morrison <mutantturkey@gmail.com>
|
||||
|
||||
pkgname=trinity-kbfx
|
||||
pkgver=3513
|
||||
pkgrel=1
|
||||
arch=('i686' 'x86_64')
|
||||
url='http://www.trinitydesktop.org'
|
||||
license=('GPL')
|
||||
groups=('trinity-extras')
|
||||
pkgdesc="Trinity - Kbfx KDE menu"
|
||||
depends=('trinity-kdebase')
|
||||
makedepends=('pkgconfig' 'cmake' 'imake')
|
||||
options=('libtool' '!strip')
|
||||
source=('http://mirror.its.uidaho.edu/pub/trinity/releases/3.5.13/applications/kbfx-3.5.13.tar.gz' 'kbfx.patch')
|
||||
md5sums=('04921c66fe2dc26d6eab7143e5950446'
|
||||
'510638db000827e86f9d542662199064')
|
||||
|
||||
_svnmod=applications/kbfx
|
||||
|
||||
build() {
|
||||
msg "Setting PATH, CMAKE and Trinity Environment variables"
|
||||
export CMAKE_PREFIX_PATH=/opt/qt:/opt/trinity
|
||||
export CMAKE_INCLUDE_PATH=/opt/qt/include/tqt:/usr/include/dbus-1.0:/opt/trinity/include
|
||||
export LD_LIBRARY_PATH=/opt/trinity/lib:/opt/trinity/lib/kde3:$LD_LIBRARY_PATH
|
||||
export PKG_CONFIG_PATH=:/opt/qt/lib/pkgconfig
|
||||
|
||||
trinity_prefix="/opt/trinity"
|
||||
|
||||
patch -N -d ${srcdir} -p0 < kbfx.patch
|
||||
|
||||
cd $srcdir
|
||||
msg "Creating out-of-source build directory: ${srcdir}/build"
|
||||
mkdir -p build
|
||||
cd build
|
||||
|
||||
msg "Starting cmake..."
|
||||
cmake ${srcdir}/${_svnmod} \
|
||||
-DCMAKE_INSTALL_PREFIX=${trinity_prefix} \
|
||||
-DCMAKE_VERBOSE_MAKEFILE=ON \
|
||||
-DBUILD_ALL=ON
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
msg "Packaging - $pkgname-$pkgver"
|
||||
cd ${srcdir}/build
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
Only in src/applications/kbfx: \
|
||||
diff -u -r applications/kbfx/CMakeLists.txt src/applications/kbfx/CMakeLists.txt
|
||||
--- applications/kbfx/CMakeLists.txt 2011-08-22 00:24:16.000000000 +0200
|
||||
+++ src/applications/kbfx/CMakeLists.txt 2011-12-16 13:09:09.000000000 +0100
|
||||
@@ -219,10 +219,10 @@
|
||||
|
||||
SET(KBFX_LIB_INSTALL_DIR ${LIB_INSTALL_DIR})
|
||||
|
||||
-SET(QT_UIC_EXECUTABLE "/usr/bin/uic-tqt")
|
||||
-SET(QT_MOC_EXECUTABLE "/usr/bin/tmoc")
|
||||
+SET(QT_UIC_EXECUTABLE "/opt/trinity/bin/uic-tqt")
|
||||
+SET(QT_MOC_EXECUTABLE "/opt/trinity/bin/tmoc")
|
||||
|
||||
-SET(CMAKE_CXX_FLAGS "-I/usr/include/tqt -include tqt.h -DTQT_THREAD_SUPPORT")
|
||||
+SET(CMAKE_CXX_FLAGS "-I/opt/trinity/include/tqt -include tqt.h -DTQT_THREAD_SUPPORT")
|
||||
|
||||
ADD_SUBDIRECTORY(kbfxlib/data)
|
||||
ADD_SUBDIRECTORY(kbfxlib/common)
|
Loading…
Reference in new issue