wesnoth: added and updated to 1.4

This commit is contained in:
Danny Rawlins 2008-03-04 00:15:20 +11:00
parent 3d24474a4a
commit c62176bb14
3 changed files with 7539 additions and 0 deletions

7495
wesnoth/.footprint Normal file

File diff suppressed because it is too large Load Diff

1
wesnoth/.md5sum Normal file
View File

@ -0,0 +1 @@
a2e8e4b32292f16842453e4c836429b2 wesnoth-1.4.tar.bz2

43
wesnoth/Pkgfile Normal file
View File

@ -0,0 +1,43 @@
# Description: The Battle for Wesnoth is a turn-based strategy game with a fantasy theme.
# URL: http://www.wesnoth.org/
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
# Packager: Danny Rawlins, romster at shortcircuit dot net dot au
# Depends on: xorg-libx11 sdl_image sdl_mixer sdl_net freetype python boost
name=wesnoth
version=1.4
release=1
source=(http://dl.sourceforge.net/sourceforge/wesnoth/wesnoth-$version.tar.bz2)
build() {
cd wesnoth-$version
if pkginfo -i |grep '^kdebase ' > /dev/null; then
local configure='--with-kde'
fi
if pkginfo -i |grep '^kdebase3 ' > /dev/null; then
local configure='--with-kde'
fi
if pkginfo -i |grep '^gnome ' > /dev/null; then
local configure='--with-gnome'
fi
./configure \
--prefix=/usr \
--mandir=/usr/man \
--disable-nls \
--enable-python \
$configure
make
make DESTDIR=$PKG install
find $PKG/usr/man -maxdepth 0 -type d ! -regex 'man?' -exec rm -r {} \;
rm \
$PKG/usr/share/wesnoth/data/COPYING.txt \
$PKG/usr/share/wesnoth/fonts/COPYING
}