Merge branch '2.2' into 2.3

This commit is contained in:
Simone Rota 2006-11-18 23:41:16 +01:00
commit 573d54837f
3 changed files with 33 additions and 0 deletions

9
e3/.footprint Normal file
View File

@ -0,0 +1,9 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/e3
lrwxrwxrwx root/root usr/bin/e3em -> /usr/bin/e3
lrwxrwxrwx root/root usr/bin/e3pi -> /usr/bin/e3
lrwxrwxrwx root/root usr/bin/e3vi -> /usr/bin/e3
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/e3.1.gz

1
e3/.md5sum Normal file
View File

@ -0,0 +1 @@
a76dd61c52a80a1f4d3938a4ce54c62e e3-2.7.0.tar.gz

23
e3/Pkgfile Normal file
View File

@ -0,0 +1,23 @@
# Description: Tiny text editor written in assembler
# URL: http://www.sax.de/~adlibit/
# Maintainer: Simone Rota, sip at varlock dot com
# Packager: Simone Rota, sip at varlock dot com
# Depends on:
name=e3
version=2.7.0
release=2
source=(http://www.sax.de/~adlibit/$name-$version.tar.gz)
build() {
cd $name-$version
sed -i 's|DEFAULT_MODE WS|DEFAULT_MODE PI|g' e3.h
sed -i 's|%define UTF8||g' e3.h
make
make PREFIX=$PKG/usr install
rm $PKG/usr/bin/e3{em,ne,pi,vi,ws}
ln -sf /usr/bin/e3 $PKG/usr/bin/e3em
ln -sf /usr/bin/e3 $PKG/usr/bin/e3pi
ln -sf /usr/bin/e3 $PKG/usr/bin/e3vi
}