forked from ports/contrib
unmaintained ports droped
droped ports can be fetched from git if need be
This commit is contained in:
parent
831bc8932e
commit
8a03422c86
24
acct/Pkgfile
24
acct/Pkgfile
@ -1,24 +0,0 @@
|
||||
# Description: GNU Accounting Utils.
|
||||
# URL: http://savannah.gnu.org/projects/acct/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=acct
|
||||
version=6.3.2
|
||||
release=2
|
||||
source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=$PKG/usr
|
||||
make && make install
|
||||
|
||||
rm -fr \
|
||||
$PKG/usr/info \
|
||||
$PKG/usr/bin/last \
|
||||
$PKG/usr/man/man1/last.1
|
||||
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: rank Python packages based on various empirical factors.
|
||||
# URL: http://pycheesecake.org/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=cheesecake
|
||||
version=0.6.1
|
||||
release=2
|
||||
source=(http://cheeseshop.python.org/packages/source/C/Cheesecake/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
# Description: cksfv (Check SFV) creates simple file verification (.sfv) listings and tests existing sfv files.
|
||||
# URL: http://www.iki.fi/shd/foss/cksfv/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Han Boetes, han at mijncomputer dot nl
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=cksfv
|
||||
version=1.3.9
|
||||
release=1
|
||||
source=(http://www.iki.fi/shd/foss/cksfv/files/cksfv-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--disable-nls
|
||||
make
|
||||
make install BINDIR=$PKG/usr/bin MANDIR=$PKG/usr/man
|
||||
chown -R root:root $PKG
|
||||
}
|
18
fasm/Pkgfile
18
fasm/Pkgfile
@ -1,18 +0,0 @@
|
||||
# Description: flat assembler
|
||||
# URL: http://flatassembler.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=fasm
|
||||
version=1.67
|
||||
release=1
|
||||
source=(http://flatassembler.net/$name-$version.tgz)
|
||||
|
||||
build() {
|
||||
cd $name
|
||||
mkdir -p $PKG/usr/bin/
|
||||
install -m755 fasm $PKG/usr/bin/fasm
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
# Description: Small, fast run-time synthesis engine.
|
||||
# URL: http://www.speech.cs.cmu.edu/flite/
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=flite
|
||||
version=1.2
|
||||
release=1
|
||||
source=(http://www.speech.cs.cmu.edu/flite/packed/$name-$version/$name-$version-release.tar.bz2 \
|
||||
find_sts_main.c-patch)
|
||||
|
||||
build() {
|
||||
cd $name-$version-release
|
||||
patch -i $SRC/find_sts_main.c-patch tools/find_sts_main.c
|
||||
./configure --prefix=$PKG/usr
|
||||
make && make prefix=$PKG/usr install
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
# Description: Generates PPD files from foomatic-db's database.
|
||||
# URL: http://linuxprinting.org/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=foomatic-db-engine
|
||||
version=3.0.2
|
||||
release=2
|
||||
source=(http://linuxprinting.org/download/foomatic/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR=$PKG install
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
# Description: Database of pre-compiled PPD files used by foomatic-db-engine.
|
||||
# URL: http://linuxprinting.org/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: foomatic-db-engine, curl
|
||||
|
||||
name=foomatic-db
|
||||
version=3.1
|
||||
release=1
|
||||
source=()
|
||||
|
||||
build() {
|
||||
curl -O http://linuxprinting.org/download/foomatic/unstable/$name-$version-current.tar.gz
|
||||
cp $name-$version-current.tar.gz $PKGMK_SOURCE_DIR
|
||||
tar zxvf $name-$version-current.tar.gz
|
||||
cd $name-20060623
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR=$PKG install
|
||||
chown -R root:root $PKG
|
||||
}
|
20
fop/Pkgfile
20
fop/Pkgfile
@ -1,20 +0,0 @@
|
||||
# Description: Formatting Objects Processor.
|
||||
# URL: http://xml.apache.org/fop/
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on: j2re
|
||||
|
||||
name=fop
|
||||
version=0.92beta
|
||||
release=1
|
||||
source=(http://apache.ausgamers.com/xmlgraphics/$name/$name-$version-bin-jdk1.3.tar.gz)
|
||||
|
||||
build () {
|
||||
cd $name-$version
|
||||
install -d $PKG/usr/{bin, lib/$name/{build,lib}}
|
||||
cp build/*.jar $PKG/usr/lib/$name/build/
|
||||
cp lib/*.jar $PKG/usr/lib/$name/lib/
|
||||
cp fop $PKG/usr/bin/fop
|
||||
chown -R root:root $PKG
|
||||
}
|
34
fpc/Pkgfile
34
fpc/Pkgfile
@ -1,34 +0,0 @@
|
||||
# Description: Free Pascal Compiler.
|
||||
# URL: http://www.freepascal.org
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Simone Rota, sip at varlock dot com
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=fpc
|
||||
version=2.0.2
|
||||
release=1
|
||||
source=(ftp://ftp.freepascal.org/pub/$name/dist/i386-linux-$version/$name-$version.i386-linux.tar)
|
||||
|
||||
build() {
|
||||
tar xf $name-$version.i386-linux.tar
|
||||
tar xf binary.i386-linux.tar
|
||||
|
||||
mkdir -p \
|
||||
$PKG/usr/bin \
|
||||
$PKG/etc
|
||||
|
||||
tar xfz base.i386-linux.tar.gz -C $PKG/usr
|
||||
tar xfz utils.i386-linux.tar.gz -C $PKG/usr
|
||||
|
||||
for fpfile in units*.tar.gz
|
||||
do
|
||||
tar xfz $fpfile -C $PKG/usr
|
||||
done
|
||||
|
||||
ln -sf /usr/lib/$name/$version/ppc386 $PKG/usr/bin/ppc386
|
||||
$PKG/usr/lib/$name/$version/samplecfg $PKG/usr $PKG/etc
|
||||
rm -r $PKG/usr/share/doc
|
||||
sed -i 's|'$PKG/usr'|'/usr/lib/$name/$version'|g' $PKG/etc/fpc.cfg
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: Utilities for handling IEEE 754 floating point special values
|
||||
# URL: http://cheeseshop.python.org/pypi/fpconst/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=fpconst
|
||||
version=0.7.2
|
||||
release=1
|
||||
source=(http://cheeseshop.python.org/packages/source/f/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
17
gmpy/Pkgfile
17
gmpy/Pkgfile
@ -1,17 +0,0 @@
|
||||
# Description: Python modules providing multiprecision arithmetic functionality
|
||||
# URL: http://code.google.com/p/gmpy/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Younes Hafri, ycrux at club-internet dot fr
|
||||
#
|
||||
# Depends on: python, libgmp
|
||||
|
||||
name=gmpy
|
||||
version=1.02
|
||||
release=2
|
||||
source=(http://gmpy.googlecode.com/files/$name-$version.zip)
|
||||
|
||||
build () {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
# Description: Application for PDE compatible devices. Creative Zen, Dell DJ
|
||||
# URL: http://gnomad2.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: libnjb, libmtp, libid3tag, gtk
|
||||
|
||||
name=gnomad2
|
||||
version=2.8.9
|
||||
release=3
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr \
|
||||
--disable-nls
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
rm -rf $PKG/usr/share/locale
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,39 +0,0 @@
|
||||
# Description: The GNU Streaming MP3 / Media Server
|
||||
# URL: http://www.gnump3d.org
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Olle Gustafsson, ogg at linux dot se
|
||||
#
|
||||
# Depends on: perl
|
||||
|
||||
name=gnump3d
|
||||
version=2.9.9.9
|
||||
release=1
|
||||
source=(http://savannah.gnu.org/download/$name/$name-$version.tar.bz2
|
||||
gnump3d.rc)
|
||||
|
||||
build () {
|
||||
PERLLIBDIR=`perl $SRC/$name-$version/bin/getlibdir`
|
||||
echo $PERLLIBDIR
|
||||
cd $name-$version
|
||||
mkdir -p $PKG/usr/lib/$name/plugins \
|
||||
$PKG/usr/{bin,share/$name} \
|
||||
$PKG/usr/man/man1 \
|
||||
$PKG/var/log/$name \
|
||||
$PKG/var/cache/{$name,$name/serving} \
|
||||
$PKG/etc/$name \
|
||||
$PKG/etc/rc.d \
|
||||
$PKG/$PERLLIBDIR/{$name,$name/lang}
|
||||
install -m 644 lib/$name/*.pm $PKG/$PERLLIBDIR/$name
|
||||
install -m 644 lib/$name/plugins/*.pm $PKG/usr/lib/$name/plugins
|
||||
install -m 644 lib/$name/lang/*.pm $PKG/$PERLLIBDIR/$name/lang
|
||||
install -m 755 bin/* $PKG/usr/bin
|
||||
install -m 644 man/* $PKG/usr/man/man1
|
||||
install -m 644 etc/mime.types $PKG/etc/$name
|
||||
cp -R templates/* $PKG/usr/share/$name
|
||||
cd $PKG/usr/bin/ && ln -s gnump3d2 gnump3d
|
||||
chmod 777 $PKG/var/cache/{$name,$name/serving}
|
||||
sed "s#PLUGINDIR#/usr/lib#g" $SRC/$name-$version/etc/$name.conf > $PKG/etc/$name/$name.conf
|
||||
touch $PKG/var/cache/gnump3d/song.tags
|
||||
install -m 755 $SRC/gnump3d.rc $PKG/etc/rc.d/$name
|
||||
chown -R root:root $PKG
|
||||
}
|
22
hnb/Pkgfile
22
hnb/Pkgfile
@ -1,22 +0,0 @@
|
||||
# Description: Hierarchical notebook editor.
|
||||
# URL: http://hnb.sourceforge.net/
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=hnb
|
||||
version=1.9.18
|
||||
release=2
|
||||
source=(http://hnb.sourceforge.net/.files/$name-$version.tar.gz \
|
||||
Makefile.patch)
|
||||
|
||||
build () {
|
||||
cd $name-$version
|
||||
patch -i $SRC/Makefile.patch
|
||||
sed -i "/^CFLAGS/s/-O2 -pipe/$CFLAGS/" Makefile
|
||||
make
|
||||
mkdir -p $PKG/usr/{bin,man/man1}
|
||||
make prefix=$PKG/usr install
|
||||
sed "s|$PKG||g" $SRC/$name-$version/doc/$name.1 > $PKG/usr/man/man1/$name.1
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: ID3 Tagging in Python
|
||||
# URL: http://id3-py.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=id3-py
|
||||
version=1.2
|
||||
release=2
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$name\_$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
19
ivtv/Pkgfile
19
ivtv/Pkgfile
@ -1,19 +0,0 @@
|
||||
# Description: IVTV Driver for IVTV-based TV Cards (PVR-...).
|
||||
# URL: http://ivtvdriver.org
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Matt Housh <jaeger@morpheus.net>
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=ivtv
|
||||
version=0.10.1
|
||||
release=1
|
||||
source=(http://dl.ivtvdriver.org/$name/stable/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
cd driver
|
||||
make && make PREFIX=$PKG install
|
||||
cd ../utils
|
||||
make && make PREFIX=$PKG/usr install
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
# Description: An implementation of Microsoft's Media Transfer Protocol (MTP)
|
||||
# URL: http://libmtp.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: libusb
|
||||
|
||||
name=libmtp
|
||||
version=0.0.21
|
||||
release=2
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
mkdir -p $PKG/etc/udev/rules.d
|
||||
install -m 755 libmtp.rules $PKG/etc/udev/rules.d/
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
# Description: Library/API support for API compatible devices.
|
||||
# URL: http://libnjb.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: libusb
|
||||
|
||||
name=libnjb
|
||||
version=2.2.5
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,22 +0,0 @@
|
||||
# Description: A trash can for GNU/Linux that uses LD_PRELOAD.
|
||||
# URL: http://pages.stern.nyu.edu/~marriaga/software/libtrash/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=libtrash
|
||||
version=2.4
|
||||
release=4
|
||||
source=(http://pages.stern.nyu.edu/~marriaga/software/$name/$name-latest.tgz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
install -d $PKG/{usr/lib,etc}
|
||||
|
||||
make && make INSTLIBDIR=$PKG/usr/lib \
|
||||
SYSCONFFILE=$PKG/etc/$name.conf \
|
||||
install
|
||||
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
# Description: The Fastest P2P File Sharing Program on the Planet
|
||||
# URL: http://www.limewire.com/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: rpm2targz
|
||||
|
||||
name=limewire
|
||||
version=4.12
|
||||
release=2
|
||||
source=(LimeWireLinux.rpm)
|
||||
|
||||
build() {
|
||||
rpm2targz LimeWireLinux.rpm
|
||||
tar zxvf LimeWireLinux.tar.gz
|
||||
cp -r usr $PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
21
lirc/Pkgfile
21
lirc/Pkgfile
@ -1,21 +0,0 @@
|
||||
# Description: Linux Infrared Remote Control.
|
||||
# URL: http://www.lirc.org/
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=lirc
|
||||
version=0.8.1
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/$name/$name-$version.tar.bz2 \
|
||||
lircd)
|
||||
|
||||
build() {
|
||||
cd lirc-$version
|
||||
./setup.sh
|
||||
./configure.sh --prefix=/usr
|
||||
make && make DESTDIR=$PKG install
|
||||
install -D -m0755 $SRC/lircd $PKG/etc/rc.d/lircd
|
||||
rm -rf $PKG/dev
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
# Description: WebDAV server test suite
|
||||
# URL: http://www.webdav.org/neon/litmus/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=litmus
|
||||
version=0.11
|
||||
release=1
|
||||
source=(http://www.webdav.org/neon/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: CD Burning Program.
|
||||
# URL: http://www.ahead.de
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Olle Gustafsson <ogg at linux dot se>
|
||||
#
|
||||
# Depends on: gtk1
|
||||
|
||||
name=nerolinux
|
||||
version=2.0.0.5
|
||||
release=2
|
||||
source=(ftp://ftp.nero.com/$name-$version-x86.rpm)
|
||||
|
||||
build() {
|
||||
rpm2targz $name-$version-x86.rpm
|
||||
tar -zxvf $SRC/$name-$version-x86.tar.gz -C $PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,31 +0,0 @@
|
||||
# Description: BSD R-Tools
|
||||
# URL: http://www.hcs.harvard.edu/~dholland/computers/netkit.html
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Daniel Mueller, daniel at danm dot de
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=netkit-rsh
|
||||
version=0.17
|
||||
release=3
|
||||
source=(ftp://ftp.gwdg.de/pub/linux/suse/people/kukuk/ipv6/$name-$version.tar.bz2)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
|
||||
install -d \
|
||||
$PKG/usr/{bin,sbin,man} \
|
||||
$PKG/etc/pam.d \
|
||||
$PKG/usr/man/{man1,man5,man8}
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--without-pam \
|
||||
--installroot=$PKG
|
||||
|
||||
make CFLAGS="$CFLAGS"
|
||||
make install
|
||||
|
||||
rm -rf $PKG/etc
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
# Description: System status server (rwho, rwhod).
|
||||
# URL: http://www.hcs.harvard.edu/~dholland/computers/old-netkit.html
|
||||
# Packager: James Mills <prologic@shortcircuit.net.au>
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=netkit-rwho
|
||||
version=0.17
|
||||
release=2
|
||||
source=(ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/$name-$version.tar.gz
|
||||
$name-$version.diff
|
||||
rwhod.rc)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
|
||||
patch -p1 < $SRC/$name-$version.diff
|
||||
|
||||
./configure --prefix=$PKG/usr
|
||||
sed -i "/^CFLAGS/s/-O2 -pipe/$CFLAGS/" Makefile
|
||||
|
||||
install -d \
|
||||
$PKG/usr/{bin,man/man1,man/man8,sbin} \
|
||||
$PKG/var/spool/rwho
|
||||
|
||||
make && make prefix=$PKG/usr install
|
||||
install -D -m755 $SRC/rwhod.rc $PKG/etc/rc.d/rwhod
|
||||
chmod +x $PKG/etc/rc.d/rwhod
|
||||
chown -R root:root $PKG
|
||||
}
|
||||
|
@ -1,20 +0,0 @@
|
||||
# Description: Natural Language Processing Toolkit for Python.
|
||||
# URL: http://nltk.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: numarray, pywordnet
|
||||
|
||||
name=nltk_lite
|
||||
version=0.6.4
|
||||
release=2
|
||||
source=(http://dl.sourceforge.net/nltk/$name-$version.tar.gz \
|
||||
http://dl.sourceforge.net/nltk/$name-corpora-$version.zip)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
mkdir -p $PKG/usr/share/$name
|
||||
mv $SRC/corpora $PKG/usr/share/$name
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
# Description: Export your MythTV recordings into other formats.
|
||||
# URL: https://svn.forevermore.net/nuvexport/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: ffmpeg, p5-dbd-mysql
|
||||
|
||||
name=nuvexport
|
||||
version=0.4-0.20070211.svn
|
||||
release=1
|
||||
source=(http://forevermore.net/files/$name/$name-$version.tar.bz2)
|
||||
|
||||
build() {
|
||||
cd $name-0.4
|
||||
make prefix=$PKG/usr install
|
||||
install -D -m644 nuvexportrc $PKG/etc/nuvexportrc
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: SSH2 protocol for python.
|
||||
# URL: http://www.lag.net/paramiko/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: pycrypto
|
||||
|
||||
name=paramiko
|
||||
version=1.7.1
|
||||
release=1
|
||||
source=(http://www.lag.net/$name/download/$name-$version.zip)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG --prefix=/usr
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: Python tool for automating interactive applications.
|
||||
# URL: http://pexpect.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=pexpect
|
||||
version=2.0
|
||||
release=2
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tgz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown root:root $PKG
|
||||
}
|
17
plwm/Pkgfile
17
plwm/Pkgfile
@ -1,17 +0,0 @@
|
||||
# Description: PointLess Window Manager written in Python.
|
||||
# URL: http://plwm.sourceforge.net/
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=plwm
|
||||
version=2.6a
|
||||
release=4
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/PLWM-$version.tar.gz)
|
||||
|
||||
build () {
|
||||
cd PLWM-$version
|
||||
python ./setup.py install --root=$PKG
|
||||
chown root:root $PKG
|
||||
}
|
17
pp/Pkgfile
17
pp/Pkgfile
@ -1,17 +0,0 @@
|
||||
# Description: Parallel and distributed programming for Python
|
||||
# URL: http://www.parallelpython.com/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=pp
|
||||
version=1.4.3
|
||||
release=1
|
||||
source=(http://www.parallelpython.com/downloads/$name/$name-$version.tar.bz2)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
# Description: MPD Client Library for Python.
|
||||
# URL: http://www.musicpd.org/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=mpdclient
|
||||
version=0.10.0
|
||||
release=2
|
||||
source=(http://mercury.chem.pitt.edu/~shank/py-lib$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd py-lib$name-$version
|
||||
python ./setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
||||
|
@ -1,18 +0,0 @@
|
||||
# Description: Python AIML Interpreter.
|
||||
# URL: http://pyaiml.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=pyaiml
|
||||
version=0.8.5
|
||||
release=2
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/PyAIML-$version.tar.bz2)
|
||||
|
||||
build() {
|
||||
cd PyAIML-$version
|
||||
python setup.py install --root=$PKG
|
||||
rm -rf $PKG/usr/Lib/
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: Python Bindings for Berkeley DB
|
||||
# URL: http://pybsddb.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: db
|
||||
|
||||
name=pybsddb
|
||||
version=4.5.0
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/bsddb3-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd bsddb3-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
# Description: Python Distributed Shell.
|
||||
# URL: http://pydsh.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: pexpect
|
||||
|
||||
name=pydsh
|
||||
version=0.5.4
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
|
||||
sed -i -e "s/python2.3/python/" SRC/pydsh.py
|
||||
sed -i -e "s/use_pdb = \"yes\"/use_pdb = \"no\"/" SRC/pydsh.py
|
||||
sed -i -e "s/allgroup_file = \"\\/usr\\/local\\/etc\\/pydsh\\/groups\\/all\"/allgroup_file = \"\\/etc\\/pydsh\\/groups\\/all\"/" SRC/pydsh.py
|
||||
|
||||
install -D -m755 SRC/pydsh.py $PKG/usr/bin/pydsh
|
||||
ln -sf /usr/bin/pydsh $PKG/usr/bin/pydcp
|
||||
|
||||
install -D -m644 DOC/pydsh.8.gz $PKG/usr/man/man8/pydsh.8.gz
|
||||
install -D -m644 DOC/pydsh.8.gz $PKG/usr/man/man8/pydcp.8.gz
|
||||
|
||||
mkdir -p $PKG/etc/pydsh/groups
|
||||
echo "localhost" > $PKG/etc/pydsh/groups/all
|
||||
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: Checks python source files for errors.
|
||||
# URL: http://divmod.org/projects/pyflakes
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=pyflakes
|
||||
version=0.2.1
|
||||
release=2
|
||||
source=(http://divmod.org/static/projects/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python ./setup.py install --prefix=/usr --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
22
pyiw/Pkgfile
22
pyiw/Pkgfile
@ -1,22 +0,0 @@
|
||||
# Description: Python extension interfacing with libiw
|
||||
# URL: http://www.emperorlinux.com/etc/contrib/?page=pyiw
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: wireless-tools, python
|
||||
|
||||
name=pyiw
|
||||
version=0.3.3
|
||||
release=1
|
||||
source=(http://downloads.emperorlinux.com/contrib/$name/$name-$version.tbz2)
|
||||
|
||||
PYTHONVERSION=`python -c "import sys; print \"%s.%s\" % (sys.version_info[0], sys.version_info[1]);"`
|
||||
|
||||
build() {
|
||||
tar jxvf $name-$version.tbz2
|
||||
cd $name-$version
|
||||
sed -i -e "s/python2.4/python$PYTHONVERSION/g" Makefile
|
||||
make
|
||||
install -D -m 755 pyiw.so $PKG/usr/lib/python$PYTHONVERSION/site-packages/pyiw.so
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: Python module for interaction with LIRC.
|
||||
# URL: http://pylirc.mccabe.nu/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python, lirc
|
||||
|
||||
name=pylirc
|
||||
version=0.0.5
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: Python Multimedia Library
|
||||
# URL: http://pymedia.org/index.html
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python, libvorbis, faad2, lame
|
||||
|
||||
name=pymedia
|
||||
version=1.3.7.3
|
||||
release=3
|
||||
source=(http://dl.sourceforge.net/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
yes | python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
# Description: Metar library for Python.
|
||||
# URL: http://www.schwarzvogel.de/software-pymetar.shtml
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=pymetar
|
||||
version=0.12
|
||||
release=2
|
||||
source=(http://www.schwarzvogel.de/pkgs/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
rm -rf $PKG/usr/{bin,share}
|
||||
chown -R root:root $PKG
|
||||
}
|
||||
|
@ -1,17 +0,0 @@
|
||||
# Description: James Mills, Python Library.
|
||||
# URL: http://shortcircuit.net.au/~prologic/
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=pymills
|
||||
version=3.2.11-git1
|
||||
release=1
|
||||
source=(http://shortcircuit.net.au/~prologic/downloads/software/$name-$version.tar.gz)
|
||||
|
||||
build () {
|
||||
cd $name-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: Python bindings for The Open Dynamics Engine,
|
||||
# URL: http://pyode.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: ode
|
||||
|
||||
name=pyode
|
||||
version=1.2.0
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/PyODE-$version.tar.bz2)
|
||||
|
||||
build() {
|
||||
cd PyODE-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
20
pyqt/Pkgfile
20
pyqt/Pkgfile
@ -1,20 +0,0 @@
|
||||
# Description: PyQt is a set of Python bindings for the Qt toolkit.
|
||||
# URL: http://www.riverbankcomputing.co.uk/pyqt/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Rouven Schuerch, rs at tegonal dot com
|
||||
#
|
||||
# Depends on: sip
|
||||
|
||||
name=pyqt
|
||||
version=3.17
|
||||
release=1
|
||||
source=(http://www.riverbankcomputing.com/Downloads/PyQt3/GPL/PyQt-x11-gpl-${version}.tar.gz)
|
||||
|
||||
build() {
|
||||
cd PyQt-x11-gpl-$version
|
||||
export QTDIR=/usr/share/qt
|
||||
yes yes | python configure.py
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: Python Library to OpenSSH (ssh, scp).
|
||||
# URL: http://pyssh.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=pyssh
|
||||
version=0.3
|
||||
release=2
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$name-source.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
# Description: Python 3000 Interpreter
|
||||
# URL: http://www.python.org
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on: db, gdbm, ncurses, openssl, readline, zlib
|
||||
|
||||
name=python3k
|
||||
version=3.0a2
|
||||
release=1
|
||||
source=(http://www.python.org/ftp/python/3.0/Python-$version.tgz)
|
||||
|
||||
build () {
|
||||
cd Python-$version
|
||||
|
||||
./configure --prefix=/usr \
|
||||
--enable-shared \
|
||||
--with-threads \
|
||||
--enable-ipv6 \
|
||||
make
|
||||
make -j1 DESTDIR=$PKG install
|
||||
|
||||
rm -r $PKG/usr/lib/python3.0/{bsddb,ctypes,email,sqlite3}/test
|
||||
rm -r $PKG/usr/lib/python3.0/distutils/tests
|
||||
rm $PKG/usr/lib/python3.0/{distutils,site-packages,test}/README
|
||||
rm $PKG/usr/lib/python3.0/idlelib/{ChangeLog,{NEWS,README,TODO}.txt}
|
||||
rm $PKG/usr/lib/python3.0/ctypes/macholib/README.ctypes
|
||||
|
||||
# Don't conflict with an existing installation
|
||||
if [ -f /usr/bin/idle ]; then
|
||||
mv $PKG/usr/bin/idle $PKG/usr/bin/idle3.0
|
||||
fi
|
||||
if [ -f /usr/bin/pydoc ]; then
|
||||
mv $PKG/usr/bin/pydoc $PKG/usr/bin/pydoc3.0
|
||||
fi
|
||||
if [ -x /usr/bin/python ]; then
|
||||
rm $PKG/usr/bin/python
|
||||
fi
|
||||
if [ -x /usr/bin/python-config ]; then
|
||||
rm $PKG/usr/bin/python-config
|
||||
fi
|
||||
if [ -f /usr/bin/smtpd.py ]; then
|
||||
rm $PKG/usr/bin/smtpd.py
|
||||
fi
|
||||
|
||||
mkdir -p $PKG/usr/man/man1/
|
||||
mv $PKG/usr/share/man/man1/python.1 $PKG/usr/man/man1/python3.1
|
||||
rm -rf $PKG/usr/share/
|
||||
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
# Description: Python interface to WordNet.
|
||||
# URL: http://osteele.com/projects/pywordnet/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python, wordnet
|
||||
|
||||
name=pywordnet
|
||||
version=2.0.1
|
||||
release=3
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$name-$version.tar.gz \
|
||||
wordnet.py-patch)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
patch -p1 wordnet.py < $SRC/wordnet.py-patch
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
17
pyx/Pkgfile
17
pyx/Pkgfile
@ -1,17 +0,0 @@
|
||||
# Description: Python graphics package for PDF and PostScript creation.
|
||||
# URL: http://pyx.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python, tetex
|
||||
|
||||
name=pyx
|
||||
version=0.9
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/PyX-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd PyX-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
# Description: A GTK-based ripper/encoder.
|
||||
# URL: http://sourceforge.net/projects/ripperx/
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on: gtk1
|
||||
|
||||
name=ripperx
|
||||
src=ripperX
|
||||
version=2.6.6
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/$src-$version.tar.gz)
|
||||
|
||||
build () {
|
||||
cd $src-$version
|
||||
./configure --prefix=/usr
|
||||
sed -i "/^CFLAGS/s/-O2 -pipe/$CFLAGS/" Makefile
|
||||
install -d $PKG/usr/{bin,man/man1,etc}
|
||||
make && make prefix=$PKG/usr install
|
||||
chown -R root.root $PKG
|
||||
}
|
20
sac/Pkgfile
20
sac/Pkgfile
@ -1,20 +0,0 @@
|
||||
# Description: System Accounting Tool.
|
||||
# URL: http://mama.indstate.edu/users/ice/sac/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=sac
|
||||
version=1.9b5
|
||||
release=1
|
||||
source=(ftp://mama.indstate.edu/linux/$name/$name-$version.tgz)
|
||||
|
||||
build() {
|
||||
cd $name-1.9
|
||||
make
|
||||
install -d $PKG/usr/{bin,man/man8}
|
||||
install -m755 -groot -oroot sac rawtmp writetmp -t $PKG/usr/bin/sac
|
||||
install -m755 -groot -oroot sac.8 writetmp.8 -t $PKG/usr/man/man8/sac.8
|
||||
install -D -m755 -groot -oroot rawtmp.1 $PKG/usr/man/man1/rawtmp.1
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
# Description: FPC Bindings for the SDL Library.
|
||||
# URL: http://sdl4fp.sourceforge.net
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: fpc
|
||||
|
||||
name=sdl4fp
|
||||
version=1.2.0.0
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/SDL4Freepascal-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd SDL4Freepascal-$version
|
||||
|
||||
./build.sh
|
||||
|
||||
mkdir -p $PKG/usr/lib/fpc/`fpc -iV`/units/linux/$name/
|
||||
cp *.o *.ppu $PKG/usr/lib/fpc/`fpc -iV`/units/linux/$name/
|
||||
}
|
||||
|
@ -1,17 +0,0 @@
|
||||
# Description: Lexical analysis for over 20 programming and markup langauges.
|
||||
# URL: http://silvercity.sf.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=silvercity
|
||||
version=0.9.6
|
||||
release=2
|
||||
source=(http://dl.sourceforge.net/$name/SilverCity-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd SilverCity-$version
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
23
sip/Pkgfile
23
sip/Pkgfile
@ -1,23 +0,0 @@
|
||||
# Description: A tool for creating Python bindings for C and C++ libraries
|
||||
# URL: http://www.riverbankcomputing.co.uk/sip/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Younes Hafri, ycrux at club-internet dot fr
|
||||
#
|
||||
# Depends on: python, qt3
|
||||
|
||||
name=sip
|
||||
version=4.5.2
|
||||
release=1
|
||||
source=(http://www.riverbankcomputing.com/Downloads/${name}4/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
export QTDIR=/usr/share/qt/
|
||||
|
||||
python configure.py CXXFLAGS+=-lqt-mt
|
||||
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
# Description: Python SOAP Library
|
||||
# URL: http://pywebsvcs.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: fpconst
|
||||
|
||||
name=soappy
|
||||
version=0.12.0
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/pywebsvcs/SOAPpy-$version.tar.gz
|
||||
soappy-$version-python-2.5-compat.patch)
|
||||
PYTHONVERSION=`python -c "import sys; print \"%s.%s\" % (sys.version_info[0], sys.version_info[1]);"`
|
||||
|
||||
build() {
|
||||
cd SOAPpy-$version
|
||||
|
||||
if [ "$PYTHONVERSION" == "2.5" ]; then
|
||||
patch -p0 < $SRC/soappy-$version-python-2.5-compat.patch
|
||||
fi
|
||||
|
||||
python setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,21 +0,0 @@
|
||||
# Description: Port of the classic computer game "Sopwith"
|
||||
# URL: http://sdl-sopwith.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: libsdl
|
||||
#
|
||||
# Optional: gtk
|
||||
|
||||
name=sopwith
|
||||
version=1.7.1
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/sourceforge/sdl-$name/sdl_$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd sdl_$name-$version
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR=$PKG install
|
||||
rm -rf $PKG/usr/share
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
# Description: Bandwidth Monitor using Urwid.
|
||||
# URL: http://excess.org/speedometer/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: urwid
|
||||
|
||||
name=speedometer
|
||||
version=2.4
|
||||
release=1
|
||||
source=(http://excess.org/$name/$name.py)
|
||||
|
||||
build() {
|
||||
install -D -m755 -oroot -groot $name.py $PKG/usr/bin/$name
|
||||
}
|
@ -1,36 +0,0 @@
|
||||
# Description: A comprehensive Free Software Prolog environment
|
||||
# URL: http://www.swi-prolog.org/
|
||||
# Packager: Younes Hafri <ycrux@club-internet.fr>
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on: x11, jdk
|
||||
|
||||
name=swi-prolog
|
||||
version=5.6.12
|
||||
release=1
|
||||
source=(http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/pl-$version.tar.gz \
|
||||
http://turing.ubishops.ca/home/bruda/emacs-prolog/prolog.el.gz)
|
||||
|
||||
build () {
|
||||
cd pl-$version/src
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--enable-mt \
|
||||
--with-world\
|
||||
--enable-readline \
|
||||
--enable-largefile
|
||||
|
||||
make && make prefix=$PKG/usr install
|
||||
cd ../packages
|
||||
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--enable-mt \
|
||||
--with-world\
|
||||
--enable-readline \
|
||||
--enable-largefile
|
||||
|
||||
make && make prefix=$PKG/usr install
|
||||
chown -R root:root $PKG
|
||||
}
|
18
tina/Pkgfile
18
tina/Pkgfile
@ -1,18 +0,0 @@
|
||||
# Description: Personal Information Manager with curses interface.
|
||||
# URL: http://savannah.nongnu.org/projects/tina/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=tina
|
||||
version=0.1.9
|
||||
release=2
|
||||
source=(http://ftp.debian.org/debian/pool/main/t/tina/$name\_$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR=$PKG install
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,24 +0,0 @@
|
||||
# Description: Conversion tool for xfig.
|
||||
# URL: http://www.xfig.org/
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on: xfig
|
||||
|
||||
name=transfig
|
||||
version=3.2.4
|
||||
release=3
|
||||
source=(http://xfig.org/software/xfig/$version/$name.$version.tar.gz \
|
||||
$name.$version-patch)
|
||||
|
||||
build () {
|
||||
cd $name.$version
|
||||
patch -p1 -i $SRC/$name.$version-patch
|
||||
xmkmf
|
||||
make Makefiles
|
||||
make
|
||||
install -d $PKG/usr/lib/fig2dev
|
||||
make DESTDIR=$PKG install
|
||||
make DESTDIR=$PKG install.man
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
# Description: Tux Typing (game) for learning to type!
|
||||
# URL: http://tuxtype.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: sdl_mixer, sdl_image, sdl_ttf
|
||||
|
||||
name=tuxtype
|
||||
version=1.5.3
|
||||
release=2
|
||||
source=(http://dl.sourceforge.net/sourceforge/$name/${name}2-$version.tar.bz2)
|
||||
|
||||
build() {
|
||||
cd $name\2-$version
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR=$PKG install
|
||||
rm -rf $PKG/usr/doc
|
||||
ln -sf /usr/bin/tuxtype2 $PKG/usr/bin/tuxtype
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,17 +0,0 @@
|
||||
# Description: nCurses Wedgets for Python.
|
||||
# URL: http://excess.org/urwid/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: python
|
||||
|
||||
name=urwid
|
||||
version=0.9.8
|
||||
release=1
|
||||
source=(http://excess.org/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
python ./setup.py install --root=$PKG
|
||||
chown -R root:root $PKG
|
||||
}
|
19
vifm/Pkgfile
19
vifm/Pkgfile
@ -1,19 +0,0 @@
|
||||
# Description: A ncurses based file manager with vi like keybindings
|
||||
# URL: http://vifm.sourceforge.net/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Vincenzo Colosimo, vico at bicisport dot de
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=vifm
|
||||
version=0.3a
|
||||
release=1
|
||||
source=(http://dl.sourceforge.net/$name/$name-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr --disable-nls
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
# Description: Utility for locking virtual consoles.
|
||||
# URL: http://freshmeat.net/projects/vlock/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: Jukka Heino <vector@pp.nic.fi>
|
||||
#
|
||||
# Depends on:
|
||||
|
||||
name=vlock
|
||||
version=1.3
|
||||
release=2
|
||||
source=(ftp://tsx-11.mit.edu/pub/linux/sources/usr.bin/$name-$version.tar.gz \
|
||||
$name.patch)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
patch -p1 -i $SRC/$name.patch
|
||||
make
|
||||
install -D -m4755 -oroot -groot vlock $PKG/usr/bin/vlock
|
||||
install -D -m644 -oroot -groot vlock.1 $PKG/usr/man/man1/vlock.1
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
# Description: VmWare Server
|
||||
# URL: http://www.vmware.com/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
# Depends on: linux-pam
|
||||
|
||||
name=vmware-server
|
||||
version=1.0.5-80187
|
||||
release=1
|
||||
source=(http://download3.vmware.com/software/vmserver/VMware-server-$version.tar.gz
|
||||
locations vmware.rc
|
||||
vmware-any-any-update110.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-distrib
|
||||
|
||||
mkdir -p $PKG/etc/{vmware/init.d,rc.d,pam.d}
|
||||
mkdir -p $PKG/usr/{bin,sbin,lib/vmware,share/vmware/}
|
||||
|
||||
cp -r etc/* $PKG/etc/vmware/
|
||||
sed -i -e "s/_TS_/`date +%s`/g" $SRC/locations
|
||||
|
||||
install -m 755 $SRC/vmware.rc $PKG/etc/rc.d/vmware
|
||||
|
||||
mkdir $PKG/etc/vmware/init.d/{rc0.d,rc1.d,rc2.d,rc3.d,rc4.d,rc5.d,rc6.d}
|
||||
cp -a installer/services.sh $PKG/etc/vmware/init.d/vmware
|
||||
|
||||
cp $SRC/locations $PKG/etc/vmware/
|
||||
cp -r bin $PKG/usr/
|
||||
cp -r sbin $PKG/usr/
|
||||
cp -r lib/* $PKG/usr/lib/vmware/
|
||||
cp -r doc $PKG/usr/share/vmware/
|
||||
|
||||
rm $PKG/usr/share/vmware/doc/README
|
||||
rm $PKG/usr/lib/vmware/perl5/site_perl/5.005/i386-linux/XML/Parser/Encodings/README
|
||||
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,69 +0,0 @@
|
||||
# Description: Virtual Machine Emulator from vmware.com
|
||||
# URL: http://www.vmware.com
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
# Maintainer: unmaintained
|
||||
#
|
||||
# Depends on: pciutils
|
||||
|
||||
name=vmware-workstation
|
||||
version=4.5.3-19414
|
||||
release=2
|
||||
source=(http://download3.vmware.com/software/wkst/VMware-workstation-$version.tar.gz
|
||||
vmware-any-any-update105.tar.gz vmware.rc)
|
||||
|
||||
build() {
|
||||
cd vmware-distrib
|
||||
mkdir -p $PKG/opt/vmware/bin
|
||||
cp -a bin/* $PKG/opt/vmware/bin/
|
||||
|
||||
mkdir -p $PKG/opt/vmware/lib
|
||||
cp -r lib/* $PKG/opt/vmware/lib/
|
||||
|
||||
mkdir -p $PKG/etc/vmware/
|
||||
cp -a etc/* $PKG/etc/vmware/
|
||||
|
||||
mkdir -p $PKG/opt/vmware/man
|
||||
cp -a man/* $PKG/opt/vmware/man
|
||||
|
||||
mkdir -p $PKG/etc/rc.d
|
||||
install -m 755 $SRC/vmware.rc $PKG/etc/rc.d/vmware
|
||||
|
||||
mkdir -p $PKG/etc/vmware/init.d
|
||||
mkdir $PKG/etc/vmware/init.d/rc0.d
|
||||
mkdir $PKG/etc/vmware/init.d/rc1.d
|
||||
mkdir $PKG/etc/vmware/init.d/rc2.d
|
||||
mkdir $PKG/etc/vmware/init.d/rc3.d
|
||||
mkdir $PKG/etc/vmware/init.d/rc4.d
|
||||
mkdir $PKG/etc/vmware/init.d/rc5.d
|
||||
mkdir $PKG/etc/vmware/init.d/rc6.d
|
||||
cp -a installer/services.sh $PKG/etc/vmware/init.d/vmware || die
|
||||
|
||||
mkdir -p $PKG/etc/vmware
|
||||
locations="$PKG/etc/vmware/locations"
|
||||
echo "answer BINDIR /opt/vmware/bin" >> ${locations}
|
||||
echo "answer LIBDIR /opt/vmware/lib" >> ${locations}
|
||||
echo "answer MANDIR /opt/vmware/man" >> ${locations}
|
||||
echo "answer DOCDIR /opt/vmware" >> ${locations} # :-)
|
||||
echo "answer RUN_CONFIGURATOR no" >> ${locations}
|
||||
echo "answer INITDIR /etc/vmware/init.d" >> ${locations}
|
||||
echo "answer INITSCRIPTSDIR /etc/vmware/init.d" >> ${locations}
|
||||
|
||||
mkdir -p $PKG/usr/bin
|
||||
cd $PKG/usr/bin && ln -s ../../opt/vmware/bin/vmware vmware
|
||||
|
||||
chmod u+s $PKG/opt/vmware/lib/bin/vmware-vmx
|
||||
|
||||
# FROM the gentoo ebuild:
|
||||
# This is to fix the problem where the not_configured file doesn't get
|
||||
# removed when the configuration is run. This doesn't remove the file
|
||||
# It just tells the vmware-config.pl script it can delete it.
|
||||
for f in $PKG/etc/vmware/._cfg????_locations ; do
|
||||
if [ -f $f ]; then
|
||||
cat $f >> $PKG/etc/vmware/locations
|
||||
rm $f
|
||||
fi
|
||||
done
|
||||
|
||||
chown root:root -R $PKG
|
||||
chmod o+w -R $PKG/opt/vmware/lib/
|
||||
}
|
@ -1,19 +0,0 @@
|
||||
# Description: WindowMaker Clock Docked App (LCD style).
|
||||
# URL: http://tnemeth.free.fr/projets/dockapps.html
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Ziller <xxalhazredxx@gmx.net>
|
||||
#
|
||||
# Depends on: gtk1
|
||||
|
||||
name=wmclockmon
|
||||
version=0.8.1
|
||||
release=1
|
||||
source=(http://tnemeth.free.fr/projets/programmes/$name-$version.tar.gz)
|
||||
|
||||
build () {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR=$PKG install
|
||||
rm -rf $PKG/usr/info
|
||||
chown -R root:root $PKG
|
||||
}
|
18
wmmp/Pkgfile
18
wmmp/Pkgfile
@ -1,18 +0,0 @@
|
||||
# Description: MPD Window Maker dock-app.
|
||||
# URL: http://www.musicpd.org/
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: mpd, windowmaker
|
||||
|
||||
name=wmmp
|
||||
version=0.10.0
|
||||
release=1
|
||||
source=(http://mercury.chem.pitt.edu/~shank/WMmp-$version.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
./configure --prefix=/usr
|
||||
make && make DESTDIR=$PKG install
|
||||
chown -R root:root $PKG
|
||||
}
|
@ -1,20 +0,0 @@
|
||||
# Description: Minimal X Display Lock Program
|
||||
# URL: http://packages.debian.org/xtrlock
|
||||
# Maintainer: unmaintained
|
||||
# Packager: James Mills, prologic at shortcircuit dot net dot au
|
||||
#
|
||||
# Depends on: x11
|
||||
|
||||
name=xtrlock
|
||||
version=2.0
|
||||
release=1
|
||||
source=(http://ftp.debian.org/debian/pool/main/x/$name/$name\_$version-12.tar.gz)
|
||||
|
||||
build() {
|
||||
cd $name-$version
|
||||
xmkmf
|
||||
make
|
||||
make DESTDIR=$PKG install
|
||||
make DESTDIR=$PKG install.man
|
||||
chown -R root:root $PKG
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user