From: Jose V Beneyto Date: Wed, 23 Dec 2009 14:57:02 +0000 (+0100) Subject: pekwm: initial import (verified compilation) X-Git-Url: http://gitweb/?a=commitdiff_plain;ds=sidebyside;h=142df725658b7f67cf8fbf34a5396ba924ea9691;p=attic%2Fports%2Fopt-cross.git pekwm: initial import (verified compilation) --- diff --git a/pekwm/.footprint b/pekwm/.footprint new file mode 100644 index 0000000..ff7b29b --- /dev/null +++ b/pekwm/.footprint @@ -0,0 +1,23 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/pekwm +drwxr-xr-x root/root usr/etc/ +drwxr-xr-x root/root usr/etc/pekwm/ +-rw-r--r-- root/root usr/etc/pekwm/autoproperties +-rw-r--r-- root/root usr/etc/pekwm/config +-rw-r--r-- root/root usr/etc/pekwm/keys +-rw-r--r-- root/root usr/etc/pekwm/menu +-rw-r--r-- root/root usr/etc/pekwm/mouse +-rw-r--r-- root/root usr/etc/pekwm/start +-rw-r--r-- root/root usr/etc/pekwm/vars +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/pekwm.1.gz +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/pekwm/ +drwxr-xr-x root/root usr/share/pekwm/scripts/ +-rwxr-xr-x root/root usr/share/pekwm/scripts/pekwm_themeset.sh +-rwxr-xr-x root/root usr/share/pekwm/scripts/pekwm_ws_menu.sh +drwxr-xr-x root/root usr/share/pekwm/themes/ +drwxr-xr-x root/root usr/share/pekwm/themes/default/ +-rw-r--r-- root/root usr/share/pekwm/themes/default/theme diff --git a/pekwm/.md5sum b/pekwm/.md5sum new file mode 100644 index 0000000..3a393a2 --- /dev/null +++ b/pekwm/.md5sum @@ -0,0 +1 @@ +01be60875094f57bd4009f7ed5f038fe pekwm-0.1.8.tar.bz2 diff --git a/pekwm/Pkgfile b/pekwm/Pkgfile new file mode 100644 index 0000000..c582967 --- /dev/null +++ b/pekwm/Pkgfile @@ -0,0 +1,34 @@ +# Description: The Pek Window Manager +# URL: http://pekwm.org +# Maintainer: Rene Lengwinat rugek at dirtyhack dot net +# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org +# Depends on: libpcre xorg-libxft xorg-libxrandr libpng + +name=pekwm +version=0.1.8 +release=1 +source=(http://pekwm.org/projects/3/files/pekwm-$version.tar.bz2) + +build() { + cd $name-$version + + export DEFAULT_LIBS="-L$CLFS/usr/lib" + export DEFAULT_CFLAGS="-I$CLFS/usr/include" + export xft_LIBS="$DEFAULT_LIBS -lXft -lXrender -lfontconfig -lfreetype -lX11" + export xft_CFLAGS="$DEFAULT_FLAGS -I$CLFS/usr/include/freetype2" + export xrandr_LIBS="$DEFAULT_LIBS -lXrandr" + export xrandr_CFLAGS="$DEFAULT_CFLAGS" + export libpng12_LIBS="$DEFAULT_LIBS -lpng12" + export libpng12_CFLAGS="$DEFAULT_CFLAGS -I$CLFS/usr/include/libpng12" + + ./configure --build=$CHOST \ + --host=$CTARGET \ + --prefix=/usr \ + --enable-xft \ + --enable-pcre \ + --mandir=/usr/man \ + --disable-xinerama + + make + make DESTDIR=$PKG install +}