diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2012-10-31 08:41:24 +1100 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2012-10-31 08:50:11 +1100 |
commit | 235760987f623b754263536c265721089129dd22 (patch) | |
tree | c71ddd99ec0d7beeb41b85e8a39db48606ff7469 /t1lib | |
parent | 7f8f5f64935693e0347af6db27fc6c1642ee24cf (diff) | |
download | opt-235760987f623b754263536c265721089129dd22.tar.gz opt-235760987f623b754263536c265721089129dd22.tar.xz |
t1lib: initial import
Diffstat (limited to 't1lib')
-rw-r--r-- | t1lib/.footprint | 21 | ||||
-rw-r--r-- | t1lib/.md5sum | 1 | ||||
-rw-r--r-- | t1lib/Pkgfile | 25 |
3 files changed, 47 insertions, 0 deletions
diff --git a/t1lib/.footprint b/t1lib/.footprint new file mode 100644 index 000000000..28de8055e --- /dev/null +++ b/t1lib/.footprint @@ -0,0 +1,21 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/type1afm +-rwxr-xr-x root/root usr/bin/xglyph +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/t1lib.h +-rw-r--r-- root/root usr/include/t1libx.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/libt1.a +-rwxr-xr-x root/root usr/lib/libt1.la +lrwxrwxrwx root/root usr/lib/libt1.so -> libt1.so.5.1.2 +lrwxrwxrwx root/root usr/lib/libt1.so.5 -> libt1.so.5.1.2 +-rwxr-xr-x root/root usr/lib/libt1.so.5.1.2 +-rw-r--r-- root/root usr/lib/libt1x.a +-rwxr-xr-x root/root usr/lib/libt1x.la +lrwxrwxrwx root/root usr/lib/libt1x.so -> libt1x.so.5.1.2 +lrwxrwxrwx root/root usr/lib/libt1x.so.5 -> libt1x.so.5.1.2 +-rw-r--r-- root/root usr/lib/libt1x.so.5.1.2 +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/t1lib/ +-rw-r--r-- root/root usr/share/t1lib/t1lib.config diff --git a/t1lib/.md5sum b/t1lib/.md5sum new file mode 100644 index 000000000..09e0987c6 --- /dev/null +++ b/t1lib/.md5sum @@ -0,0 +1 @@ +a5629b56b93134377718009df1435f3c t1lib-5.1.2.tar.gz diff --git a/t1lib/Pkgfile b/t1lib/Pkgfile new file mode 100644 index 000000000..93975b504 --- /dev/null +++ b/t1lib/Pkgfile @@ -0,0 +1,25 @@ +# Description: Library for generating character- and string-glyphs from Adobe Type 1 fonts. +# URL: http://www.foolabs.com/xpdf/ +# Maintainer: Danny Rawlins, monster dot romster at gmail dot com +# Packager: Robert McMeekin, viper at mcmeekin dot info +# Depends on: xorg-libxaw + +name=t1lib +version=5.1.2 +release=1 +source=(ftp://sunsite.unc.edu/pub/Linux/libs/graphics/$name-$version.tar.gz) + +build() { + cd $name-$version + + ./configure \ + --prefix=/usr \ + --disable-nls + + make without_doc + make prefix=$PKG/usr install + + rm -r $PKG/usr/share/t1lib/doc + cd $PKG/usr/lib + chmod a+x libt1.la libt1.so.${version} libt1x.la +} |