desktop/enlightenment: Added to 12.0 repository

This commit is contained in:
Aleksandar Samardzic 2010-05-11 20:00:06 +02:00 committed by Alan Hicks
parent b76f831e41
commit a5ea4df026
5 changed files with 119 additions and 0 deletions

View file

@ -0,0 +1,8 @@
Enlightenment DR17 is the next generation of UNIX graphical
environments. It is not just a window manager, but it is also a
desktop shell. A desktop shell means a window manager plus a file
manager plus configuration utilities all in one.
Enlightenment is dependent upon the following packages (build exactly
in the order given): eet, evas, ecore, e_dbus, efreet, embryo and
edje.

View file

@ -0,0 +1,63 @@
#!/bin/sh
# Slackware build script for Enlightenment DR17
# Written by Aleksandar B. Samardzic <asamardzic@matf.bg.ac.yu>
PRGNAM=enlightenment
VERSION=0.16.999.042
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
CWD=$(pwd)
TMP=${TMP:-/tmp/SBo}
PKG=$TMP/package-$PRGNAM
OUTPUT=${OUTPUT:-/tmp}
if [ "$ARCH" = "i486" ]; then
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
elif [ "$ARCH" = "i686" ]; then
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
fi
set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
chown -R root:root .
chmod -R u+w,go+r-w,a-s .
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var
make
make install DESTDIR=$PKG
( cd $PKG
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
)
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING COPYING-PLAIN ChangeLog INSTALL NEWS README \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
# handle the xinitrc file
mkdir -p $PKG/etc/X11/xinit
cat $CWD/xinitrc.enlightenment17 > $PKG/etc/X11/xinit/xinitrc.enlightenment17
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz

View file

@ -0,0 +1,8 @@
PRGNAM="enlightenment"
VERSION="0.16.999.042"
HOMEPAGE="http://www.enlightenment.org/"
DOWNLOAD="http://download.enlightenment.org/snapshots/2008-01-25/enlightenment-0.16.999.042.tar.gz"
MD5SUM="842a57a283a9ff49993cb026f0ff0794"
MAINTAINER="Aleksandar B. Samardzic"
EMAIL="asamardzic@matf.bg.ac.yu"
APPROVED="Alan Hicks,Erik Hanson"

View file

@ -0,0 +1,12 @@
|---- Handy ruler ----------------------------------------|
enlightenment: Enlightenment DR17 is window manager and desktop shell.
enlightenment:
enlightenment: Enlightenment DR17 is the next generation of UNIX
enlightenment: graphical environments. It is not just a window
enlightenment: manager, but it is also a desktop shell. A desktop
enlightenment: shell means, a window manager plus a file manager, plus
enlightenment: configuration utilities all in one.
enlightenment:
enlightenment: Enlightenment home page is: http://www.enlightenment.org/
enlightenment:
enlightenment:

View file

@ -0,0 +1,28 @@
#!/bin/sh
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/lib/X11/xinit/.Xresources
sysmodmap=/usr/lib/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f $userresources ]; then
xrdb -merge $userresources
fi
if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi
# Start the window manager:
exec /usr/bin/enlightenment_start