blob: 791948889dfa81b1b1bd3536dc2821dbebac5230 (
plain)
1 # Description: A Type 1 Font Rasterizer Library for UNIX/X11.
2 # URL: http://www.ibiblio.org/pub/Linux/libs/graphics/!INDEX.html
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Packager: Robert McMeekin, viper at mcmeekin dot info
5 # Depends on: xorg-libxaw
6
7 name=t1lib
8 version=5.1.2
9 release=2
10 source=(http://www.ibiblio.org/pub/Linux/libs/graphics/$name-$version.tar.gz
11 lib-cleanup.diff
12 format-security.diff
13 CVE-2011-0764.diff
14 CVE-2011-1552_1553_1554.patch
15 CVE-2010-2642.patch)
16
17 build() {
18 cd $name-$version
19
20 patch -p1 -i $SRC/lib-cleanup.diff
21 patch -p1 -i $SRC/format-security.diff
22 patch -p1 -i $SRC/CVE-2011-0764.diff
23 patch -p1 -i $SRC/CVE-2011-1552_1553_1554.patch
24 patch -p1 -i $SRC/CVE-2010-2642.patch
25
26 ./configure \
27 --prefix=/usr \
28 --disable-nls
29
30 make without_doc
31 make prefix=$PKG/usr install
32
33 rm -r $PKG/usr/share/t1lib/doc
34 cd $PKG/usr/lib
35 chmod a+x libt1.la libt1.so.${version} libt1x.la
36 }
|