You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.0 KiB
66 lines
2.0 KiB
13 years ago
|
# Maintainer: Calvin Morrison <MutantTurkey@gmail.com>
|
||
|
pkgname=trinity-qt3
|
||
|
pkgver=3884
|
||
|
pkgrel=1
|
||
|
pkgdesc="The Qt3 gui toolkit - with Trinity upstream"
|
||
|
_prefix="/opt/qt"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
url="http://trinitydesktop.org"
|
||
|
# install=qt.install
|
||
|
groups=('trinity-base')
|
||
|
depends=('libjpeg-turbo' 'libmng' 'libmysqlclient' 'libpng' 'libxmu' 'libxcursor' 'libxinerama' 'libxft' 'libxrandr' 'mesa' 'postgresql-libs' 'unixodbc')
|
||
|
makedepends=('cups' 'libxi' 'mysql' 'postgresql' 'unixodbc' 'sqlite3')
|
||
|
optdepends=()
|
||
|
# optdepends=('libmysqlclient' 'postgresql-libs' 'unixodbc')
|
||
|
provides=('trinity-qt3' 'qt3')
|
||
|
conflicts=('qt3' 'qt3-enhanced')
|
||
|
replaces=('trinity-qt3')
|
||
|
_prefix="opt/qt"
|
||
|
source=(http://mirror.its.uidaho.edu/pub/trinity/releases/3.5.13/dependencies/qt3-3.3.8.d.tar.gz)
|
||
|
md5sums=('78dc675e84aed595375449818cbb589a')
|
||
|
options=(!libtool)
|
||
|
|
||
|
build() {
|
||
|
export QTDIR="${srcdir}/qt3/"
|
||
|
export PATH=${QTDIR}/bin:${PATH}
|
||
|
export LD_LIBRARY_PATH=${QTDIR}/lib:${LD_LIBRARY_PATH}
|
||
|
export QMAKESPEC=$QTDIR/mkspecs/linux-g++
|
||
|
|
||
|
if [ "$CARCH" = "x86_64" ]; then
|
||
|
export ARCH="-64"
|
||
|
else unset ARCH
|
||
|
fi
|
||
|
|
||
|
cd "${srcdir}/qt3"
|
||
|
|
||
|
rm -rf mkspecs/{*aix*,*bsd*,cygwin*,dgux*,darwin*,hpux*,hurd*,irix*,lynxos*,macx*,qnx*,reliant*,sco*,solaris*,tru64*,unixware*,win32*}
|
||
|
|
||
|
msg "Starting configure..."
|
||
|
#make -C qmake || return 1
|
||
|
./configure -prefix ${_prefix} \
|
||
|
-fast \
|
||
|
-sysconfdir /etc/qt \
|
||
|
-thread \
|
||
|
-shared \
|
||
|
-system-zlib \
|
||
|
-platform linux-g++$ARCH \
|
||
|
-system-lib{png,jpeg,mng}
|
||
|
make
|
||
|
|
||
|
}
|
||
|
|
||
|
package() {
|
||
|
cd "$srcdir/qt3"
|
||
|
|
||
|
# Build and install qt.profile
|
||
|
echo "export QTDIR=/${_prefix}" > ${srcdir}/qt.profile
|
||
|
echo "export QT_XFT=true" >> ${srcdir}/qt.profile
|
||
|
echo 'export PATH=$PATH:$QTDIR/bin' >> ${srcdir}/qt.profile
|
||
|
echo 'export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$QTDIR/pkgconfig' >> ${srcdir}/qt.profile
|
||
|
install -D -m755 ${srcdir}/qt.profile ${pkgdir}/etc/profile.d/qt3.sh
|
||
|
|
||
|
make INSTALL_ROOT="$pkgdir/" install
|
||
|
|
||
|
}
|