blob: a81b64c5c092235de368c37584f21700e5bdf04d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# $Id: PKGBUILD 97075 2013-09-12 10:15:40Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Brice Méalier <mealier_brice@yahoo.fr>
pkgname=tix
pkgver=8.4.3
pkgrel=5
pkgdesc="Tk Interface eXtension, a powerful set of user interface components"
arch=(i686 'x86_64')
url="http://tix.sourceforge.net/"
license=("BSD")
depends=('tk' 'libx11')
source=("http://downloads.sourceforge.net/tix/Tix$pkgver-src.tar.gz"
"tix-8.4.3-tcl8.6.patch::https://bugs.archlinux.org/task/36882?getfile=10973"
"tcl-tk-path.patch")
md5sums=('2b8bf4b10a852264678182652f477e59'
'c26297f9e1744dc38308a062ef00549e'
'd4df48da39dd51872d58706a51bab505')
prepare() {
cd $srcdir/Tix$pkgver
sed -i -e 's:-Os::g' -i configure tclconfig/tcl.m4
patch -Np1 -i "${srcdir}/tix-8.4.3-tcl8.6.patch"
sed -i -e 's:generic/tclInt.h:tclInt.h:g' configure
sed -i -e 's:generic/tkInt.h:tkInt.h:g' configure
}
build() {
cd $srcdir/Tix$pkgver
export CFLAGS="$CFLAGS -DERR_IN_PROGRESS=2"
[[ $CARCH == "x86_64" ]] && BIT="--enable-64bit"
./configure --prefix=/usr \
--with-tcl=/usr/lib \
--with-tk=/usr/lib \
$BIT \
make
make DESTDIR=$pkgdir install
# move things around
install -m755 tools/tixindex $pkgdir/usr/bin/tixindex
rm -rf $pkgdir/usr/lib/Tix8.4/html
rm -f $pkgdir/usr/lib/Tix8.4/{README.txt,license.terms}
ln -s Tix$pkgver/libTix$pkgver.so $pkgdir/usr/lib/libTix$pkgver.so
mkdir -p $pkgdir/usr/share/man/man1
mkdir -p $pkgdir/usr/share/man/man3
cp -p man/tixwish.1 $pkgdir/usr/share/man/man1
cd $srcdir/Tix$pkgver/man
for i in *.n; do
cp -p $i $pkgdir/usr/share/man/man3/${i%n}3
done
mkdir -p $pkgdir/usr/share/licenses/tix
cp $srcdir/Tix$pkgver/license.terms $pkgdir/usr/share/licenses/tix/
}
|