diff options
author | Matt Housh <jaeger@morpheus.net> | 2012-11-21 11:12:43 -0600 |
---|---|---|
committer | Matt Housh <jaeger@morpheus.net> | 2012-11-21 11:12:43 -0600 |
commit | f58de0877c76c9d2faeedc5a37e9a083595bfbe9 (patch) | |
tree | 7aaecd27b8ddf86d5a22917e9227f2437d601b30 /fontconfig-32 | |
parent | 7fe949bb83be5abb275a8a7f7fe77b88ea997592 (diff) | |
download | compat-32-f58de0877c76c9d2faeedc5a37e9a083595bfbe9.tar.gz compat-32-f58de0877c76c9d2faeedc5a37e9a083595bfbe9.tar.xz |
Initial import of *-32 ports for CRUX 3.0
Diffstat (limited to 'fontconfig-32')
-rw-r--r-- | fontconfig-32/.32bit | 0 | ||||
-rw-r--r-- | fontconfig-32/.footprint | 9 | ||||
-rw-r--r-- | fontconfig-32/.md5sum | 1 | ||||
-rw-r--r-- | fontconfig-32/Pkgfile | 34 | ||||
-rw-r--r-- | fontconfig-32/README | 16 |
5 files changed, 60 insertions, 0 deletions
diff --git a/fontconfig-32/.32bit b/fontconfig-32/.32bit new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/fontconfig-32/.32bit diff --git a/fontconfig-32/.footprint b/fontconfig-32/.footprint new file mode 100644 index 00000000..5da5c9f4 --- /dev/null +++ b/fontconfig-32/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib32/ +-rw-r--r-- root/root usr/lib32/libfontconfig.a +-rwxr-xr-x root/root usr/lib32/libfontconfig.la +lrwxrwxrwx root/root usr/lib32/libfontconfig.so -> libfontconfig.so.1.6.2 +lrwxrwxrwx root/root usr/lib32/libfontconfig.so.1 -> libfontconfig.so.1.6.2 +-rwxr-xr-x root/root usr/lib32/libfontconfig.so.1.6.2 +drwxr-xr-x root/root usr/lib32/pkgconfig/ +-rw-r--r-- root/root usr/lib32/pkgconfig/fontconfig.pc diff --git a/fontconfig-32/.md5sum b/fontconfig-32/.md5sum new file mode 100644 index 00000000..24d66775 --- /dev/null +++ b/fontconfig-32/.md5sum @@ -0,0 +1 @@ +3950e82cf5885b41cba8a2bf466aa6f9 fontconfig-2.10.0.tar.bz2 diff --git a/fontconfig-32/Pkgfile b/fontconfig-32/Pkgfile new file mode 100644 index 00000000..c65971e9 --- /dev/null +++ b/fontconfig-32/Pkgfile @@ -0,0 +1,34 @@ +# Description: A library for configuring and customizing font access +# URL: http://fontconfig.org/wiki/ +# Maintainer: Tilman Sauerbeck, tilman at crux dot nu +# Depends on: freetype-32 expat-32 bzip2-32 fontconfig + +name=fontconfig-32 +version=2.10.0 +release=2 +source=(http://fontconfig.org/release/fontconfig-$version.tar.bz2) + +build() { + cd fontconfig-$version + + sed -e 's|^confdir=.*|confdir=@baseconfigdir@|' -i fontconfig.pc.in + + ./configure --prefix=/usr \ + --libdir=/usr/lib32 \ + --sysconfdir=/etc \ + --mandir=/usr/man \ + --localstatedir=/var \ + --with-xmldir=/etc/fonts \ + --with-templatedir=/etc/fonts/conf.avail + + make + make DESTDIR=$PKG install + + # Enabling autohinting by default + pushd $PKG/etc/fonts/conf.d + ln -sf /etc/fonts/conf.avail/10-autohint.conf + popd + + rm -f $PKG/etc/fonts/conf.d/README + rm -r $PKG/usr/{bin,include,man,share} $PKG/{etc,var} +} diff --git a/fontconfig-32/README b/fontconfig-32/README new file mode 100644 index 00000000..02ee4794 --- /dev/null +++ b/fontconfig-32/README @@ -0,0 +1,16 @@ +POST-INSTALL + + After upgrading fontconfig, always run rejmerge and upgrade + /etc/fonts/fonts.conf and /etc/fonts/fonts.dtd. + + + /etc/fonts/conf.avail ships with configuration snippets that can be + symlinked from /etc/fonts/conf.d to enable them. + It's recommended to use these snippets instead of duplicating XML code + in your /etc/fonts/local.conf. + + For more information on conf.avail/conf.d, please see: + http://cgit.freedesktop.org/fontconfig/plain/conf.d/README + + For more information on fontconfig, please see: + http://www.freedesktop.org/software/fontconfig/fontconfig-user.html |