backup freetype2-ubuntu cuz it seems like it is going to get dropped
This commit is contained in:
parent
8e6c8d460a
commit
a26ef7eb64
5 changed files with 5464 additions and 0 deletions
32
freetype2-ubuntu/.SRCINFO
Normal file
32
freetype2-ubuntu/.SRCINFO
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Generated by mksrcinfo v8
|
||||||
|
# Sun Jun 19 10:10:32 UTC 2016
|
||||||
|
pkgbase = freetype2-ubuntu
|
||||||
|
pkgdesc = TrueType font rendering library, with Ubuntu's LCD rendering patches
|
||||||
|
pkgver = 2.6.3
|
||||||
|
pkgrel = 3
|
||||||
|
url = https://launchpad.net/ubuntu/+source/freetype
|
||||||
|
arch = i686
|
||||||
|
arch = x86_64
|
||||||
|
license = GPL
|
||||||
|
depends = zlib
|
||||||
|
depends = bzip2
|
||||||
|
depends = sh
|
||||||
|
provides = freetype2=2.6.3
|
||||||
|
provides = libfreetype.so
|
||||||
|
conflicts = freetype2
|
||||||
|
conflicts = freetype2-cleartype
|
||||||
|
conflicts = freetype2-lcd
|
||||||
|
options = !libtool
|
||||||
|
source = http://downloads.sourceforge.net/sourceforge/freetype/freetype-2.6.3.tar.bz2
|
||||||
|
source = https://launchpad.net/ubuntu/+archive/primary/+files/freetype_2.6.3-3ubuntu1.diff.gz
|
||||||
|
source = freetype-2.2.1-enable-valid.patch
|
||||||
|
source = freetype-2.3.0-enable-spr.patch
|
||||||
|
source = freetype-2.4.11-enable-sph.patch
|
||||||
|
md5sums = 0037b25a8c090bc8a1218e867b32beb1
|
||||||
|
md5sums = 161e88978b77ee9be913b98f33fb9a23
|
||||||
|
md5sums = 214119610444c9b02766ccee5e220680
|
||||||
|
md5sums = 38765b5cc604179bf3afe33671d8ae37
|
||||||
|
md5sums = 4d4a0caad7aa5e09bea0719cd80681bf
|
||||||
|
|
||||||
|
pkgname = freetype2-ubuntu
|
||||||
|
|
72
freetype2-ubuntu/PKGBUILD
Normal file
72
freetype2-ubuntu/PKGBUILD
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
# Installation order: freetype2-ubuntu fontconfig-ubuntu libxft cairo-ubuntu
|
||||||
|
pkgname=freetype2-ubuntu
|
||||||
|
pkgver=2.6.3
|
||||||
|
_ubver=2.6.3-3ubuntu1
|
||||||
|
_ubrel=utopic
|
||||||
|
pkgrel=3
|
||||||
|
pkgdesc="TrueType font rendering library, with Ubuntu's LCD rendering patches"
|
||||||
|
arch=('i686' 'x86_64')
|
||||||
|
url="https://launchpad.net/ubuntu/+source/freetype"
|
||||||
|
license=('GPL')
|
||||||
|
depends=('zlib' 'bzip2' 'sh')
|
||||||
|
conflicts=('freetype2' 'freetype2-cleartype' 'freetype2-lcd')
|
||||||
|
provides=("freetype2=$pkgver" "libfreetype.so")
|
||||||
|
options=('!libtool')
|
||||||
|
source=(http://downloads.sourceforge.net/sourceforge/freetype/freetype-${pkgver}.tar.bz2
|
||||||
|
https://launchpad.net/ubuntu/+archive/primary/+files/freetype_${_ubver}.diff.gz
|
||||||
|
freetype-2.2.1-enable-valid.patch
|
||||||
|
freetype-2.3.0-enable-spr.patch
|
||||||
|
freetype-2.4.11-enable-sph.patch)
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
cd "${srcdir}/freetype-${pkgver}"
|
||||||
|
|
||||||
|
# Patch from ubuntu
|
||||||
|
patch -Np1 -i $srcdir/freetype_$_ubver.diff
|
||||||
|
|
||||||
|
|
||||||
|
sed -e "s/-p[0-9]\|.*otvalid\.patch//g" \
|
||||||
|
-i debian/patches-freetype/series
|
||||||
|
|
||||||
|
sed -e 's/ src/ a\/src/g' \
|
||||||
|
-e '/^Index.*ftbase.c/,/EOF/d' \
|
||||||
|
-i debian/patches-freetype/freetype-2.1.7-backwards.compat.patch
|
||||||
|
|
||||||
|
for _f in $(cat debian/patches-freetype/series) ; do
|
||||||
|
patch -Np1 -i debian/patches-freetype/$_f
|
||||||
|
done
|
||||||
|
|
||||||
|
# Patches from arch trunkcat debian/patches-freetype/series
|
||||||
|
patch -Np1 -i "${srcdir}/freetype-2.2.1-enable-valid.patch"
|
||||||
|
# patch -Np1 -i "${srcdir}/freetype-2.3.0-enable-spr.patch"
|
||||||
|
# Disabled for now due to resistance
|
||||||
|
# Kept here for easier rebuilds via ABS
|
||||||
|
# https://bugs.archlinux.org/task/35274
|
||||||
|
#patch -Np1 -i "${srcdir}/freetype-2.4.11-enable-sph.patch"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd ${srcdir}/freetype-${pkgver}
|
||||||
|
|
||||||
|
# PNG support is useless if FT_CONFIG_OPTION_USE_PNG is disabled
|
||||||
|
./configure --prefix=/usr --disable-static \
|
||||||
|
--without-png
|
||||||
|
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
check() {
|
||||||
|
cd "${srcdir}/freetype-${pkgver}"
|
||||||
|
make -k check
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd ${srcdir}/freetype-${pkgver}
|
||||||
|
make DESTDIR=${pkgdir} install
|
||||||
|
}
|
||||||
|
md5sums=('0037b25a8c090bc8a1218e867b32beb1'
|
||||||
|
'161e88978b77ee9be913b98f33fb9a23'
|
||||||
|
'214119610444c9b02766ccee5e220680'
|
||||||
|
'38765b5cc604179bf3afe33671d8ae37'
|
||||||
|
'4d4a0caad7aa5e09bea0719cd80681bf')
|
20
freetype2-ubuntu/freetype-2.2.1-enable-valid.patch
Normal file
20
freetype2-ubuntu/freetype-2.2.1-enable-valid.patch
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
--- freetype-2.2.1/modules.cfg.orig 2006-07-07 21:01:09.000000000 -0400
|
||||||
|
+++ freetype-2.2.1/modules.cfg 2006-07-07 21:01:54.000000000 -0400
|
||||||
|
@@ -110,7 +110,7 @@
|
||||||
|
AUX_MODULES += cache
|
||||||
|
|
||||||
|
# TrueType GX/AAT table validation. Needs ftgxval.c below.
|
||||||
|
-# AUX_MODULES += gxvalid
|
||||||
|
+AUX_MODULES += gxvalid
|
||||||
|
|
||||||
|
# Support for streams compressed with gzip (files with suffix .gz).
|
||||||
|
#
|
||||||
|
@@ -124,7 +124,7 @@
|
||||||
|
|
||||||
|
# OpenType table validation. Needs ftotval.c below.
|
||||||
|
#
|
||||||
|
-# AUX_MODULES += otvalid
|
||||||
|
+AUX_MODULES += otvalid
|
||||||
|
|
||||||
|
# Auxiliary PostScript driver component to share common code.
|
||||||
|
#
|
2668
freetype2-ubuntu/freetype-2.3.0-enable-spr.patch
Normal file
2668
freetype2-ubuntu/freetype-2.3.0-enable-spr.patch
Normal file
File diff suppressed because it is too large
Load diff
2672
freetype2-ubuntu/freetype-2.4.11-enable-sph.patch
Normal file
2672
freetype2-ubuntu/freetype-2.4.11-enable-sph.patch
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue