--- /dev/null
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/bdftopcf
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+-rw-r--r-- root/root usr/man/man1/bdftopcf.1.gz
--- /dev/null
+# Description: BDF to PCF font file converter
+# URL: http://xorg.freedesktop.org
+# Maintainer: Tilman Sauerbeck tilman at crux dot nu
+# Arch Maintainer System Team crux-arm at mikeux dot dyndns dot org
+# Depends on: xorg-libxfont
+
+name=xorg-bdftopcf
+version=1.0.2
+release=1
+source=(http://xorg.freedesktop.org/releases/individual/app/bdftopcf-$version.tar.bz2)
+
+build() {
+ cd bdftopcf-$version
+
+ export BDFTOPCF_LIBS="-L$CLFS/usr/lib -lXfont -lz -lm"
+ export BDFTOPCF_CFLAGS="-I$CLFS/usr/include"
+
+ ./configure --build=$CHOST \
+ --host=$CTARGET \
+ --prefix=/usr \
+ --mandir=/usr/man
+
+ make
+ make DESTDIR=$PKG install
+}