1
0
forked from ports/contrib

linux_logo: new port

This commit is contained in:
Bartlomiej Palmowski 2008-05-20 10:33:47 +02:00
parent baae8a8d67
commit 53bed04685
3 changed files with 28 additions and 0 deletions

6
linux_logo/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxrwxr-x root/root usr/bin/linux_logo
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/linux_logo.1.gz

1
linux_logo/.md5sum Normal file
View File

@ -0,0 +1 @@
187a21ef6375e1bacf550ed84ebb7279 linux_logo-5.03.tar.gz

21
linux_logo/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: renders an ascii linux logo
# URL: http://www.deater.net/weave/vmwprod/linux_logo/
# Maintainer: Bartlomiej Palmowski, maks1k at wp dot pl
# Packager: Olle Gustafsson <ogg att linux dot se>
name=linux_logo
version=5.03
release=1
source=(http://www.deater.net/weave/vmwprod/$name/$name-$version.tar.gz)
build() {
cd $name-$version
./configure
sed -i "s/-O2/$CFLAGS/" Makefile.default libsysinfo-0.2.1/Makefile.default
sed -i '/USE_I18N/s/1/0/2' Makefile.default
sed -i 's/\$(TRANSLATIONS)//' Makefile
make
install -D -m 0775 linux_logo $PKG/usr/bin/linux_logo
install -D -m 0644 linux_logo.1.gz $PKG/usr/man/man1/linux_logo.1.gz
}