diff options
-rw-r--r-- | audiofile/Pkgfile | 2 | ||||
-rw-r--r-- | jack/.footprint | 49 | ||||
-rw-r--r-- | jack/.md5sum | 1 | ||||
-rw-r--r-- | jack/Pkgfile | 15 | ||||
-rw-r--r-- | jack/README | 21 | ||||
-rw-r--r-- | libsndfile/.footprint | 6 | ||||
-rw-r--r-- | libsndfile/.md5sum | 2 | ||||
-rw-r--r-- | libsndfile/Pkgfile | 2 | ||||
-rw-r--r-- | madwifi/.footprint | 35 | ||||
-rw-r--r-- | madwifi/Pkgfile | 14 | ||||
-rw-r--r-- | madwifi/README | 21 | ||||
-rw-r--r-- | sharutils/.footprint | 18 | ||||
-rw-r--r-- | sharutils/.md5sum | 1 | ||||
-rw-r--r-- | sharutils/Pkgfile | 16 | ||||
-rw-r--r-- | xscreensaver/.md5sum | 2 | ||||
-rw-r--r-- | xscreensaver/Pkgfile | 2 |
16 files changed, 199 insertions, 8 deletions
diff --git a/audiofile/Pkgfile b/audiofile/Pkgfile index 11bafb4aa..499093e7a 100644 --- a/audiofile/Pkgfile +++ b/audiofile/Pkgfile @@ -7,7 +7,7 @@ name=audiofile version=0.2.6 release=1 -source=(http://www.68k.org/~michael/audiofile/$name-$version.tar.gz) +source=(http://www.68k.org/~michael/$name/$name-$version.tar.gz) build () { cd $name-$version diff --git a/jack/.footprint b/jack/.footprint new file mode 100644 index 000000000..121aa52f6 --- /dev/null +++ b/jack/.footprint @@ -0,0 +1,49 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/jack_bufsize +-rwxr-xr-x root/root usr/bin/jack_connect +-rwxr-xr-x root/root usr/bin/jack_disconnect +-rwxr-xr-x root/root usr/bin/jack_freewheel +-rwxr-xr-x root/root usr/bin/jack_impulse_grabber +-rwxr-xr-x root/root usr/bin/jack_load +-rwxr-xr-x root/root usr/bin/jack_lsp +-rwxr-xr-x root/root usr/bin/jack_metro +-rwxr-xr-x root/root usr/bin/jack_monitor_client +-rwxr-xr-x root/root usr/bin/jack_showtime +-rwxr-xr-x root/root usr/bin/jack_simple_client +-rwxr-xr-x root/root usr/bin/jack_transport +-rwxr-xr-x root/root usr/bin/jack_unload +-rwxr-xr-x root/root usr/bin/jackd +-rwxr-xr-x root/root usr/bin/jackrec +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/jack/ +-rw-r--r-- root/root usr/include/jack/intclient.h +-rw-r--r-- root/root usr/include/jack/jack.h +-rw-r--r-- root/root usr/include/jack/ringbuffer.h +-rw-r--r-- root/root usr/include/jack/statistics.h +-rw-r--r-- root/root usr/include/jack/thread.h +-rw-r--r-- root/root usr/include/jack/timestamps.h +-rw-r--r-- root/root usr/include/jack/transport.h +-rw-r--r-- root/root usr/include/jack/types.h +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/jack/ +-rwxr-xr-x root/root usr/lib/jack/inprocess.la +-rwxr-xr-x root/root usr/lib/jack/inprocess.so +-rwxr-xr-x root/root usr/lib/jack/intime.la +-rwxr-xr-x root/root usr/lib/jack/intime.so +-rwxr-xr-x root/root usr/lib/jack/jack_alsa.la +-rwxr-xr-x root/root usr/lib/jack/jack_alsa.so +-rwxr-xr-x root/root usr/lib/jack/jack_dummy.la +-rwxr-xr-x root/root usr/lib/jack/jack_dummy.so +-rwxr-xr-x root/root usr/lib/jack/jack_oss.la +-rwxr-xr-x root/root usr/lib/jack/jack_oss.so +-rwxr-xr-x root/root usr/lib/libjack.la +lrwxrwxrwx root/root usr/lib/libjack.so -> libjack.so.0.0.23 +lrwxrwxrwx root/root usr/lib/libjack.so.0 -> libjack.so.0.0.23 +-rwxr-xr-x root/root usr/lib/libjack.so.0.0.23 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/jack.pc +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/jackd.1.gz +-rw-r--r-- root/root usr/man/man1/jackstart.1.gz diff --git a/jack/.md5sum b/jack/.md5sum new file mode 100644 index 000000000..bf2f3e150 --- /dev/null +++ b/jack/.md5sum @@ -0,0 +1 @@ +dc28b3e8a663c090227e83be6fc1f2d4 jack-audio-connection-kit-0.100.0.tar.gz diff --git a/jack/Pkgfile b/jack/Pkgfile new file mode 100644 index 000000000..10e6a4cb2 --- /dev/null +++ b/jack/Pkgfile @@ -0,0 +1,15 @@ +# Maintainer: Jay Dolan jasonthomasdolan at yahoo dot com +# Description: Jack Audio Connection Kit +# Url: http://jackit.sf.net +# Depends on: alsa-lib,libsndfile + +name=jack +version=0.100.0 +release=1 +source=(http://dl.sf.net/jackit/$name-audio-connection-kit-$version.tar.gz) + +build(){ + cd $name-audio-connection-kit-$version + ./configure --prefix=/usr --with-gnu-ld + make && make DESTDIR=$PKG install +} diff --git a/jack/README b/jack/README new file mode 100644 index 000000000..227ccb2c1 --- /dev/null +++ b/jack/README @@ -0,0 +1,21 @@ +Jack - Audio Connection Kit + +NOTES + +Jack is a versatile, high-performance sound server. It is geared +towards music professionals, and offers excellent low-latency +operation when properly configured. + +Jack works best with, but does not require, a low-latency patched +kernel. To obtain a patch for your kernel, see: + + http://members.optusnet.com.au/ckolivas/kernel + +If you are using a patched kernel and wish to run jackd as a +non-priviliged user, consider launching the jack daemon with: + + schedtool -I -e jackd [options] + +This will allow jackd to run in near real-time, to provide +minimum latency, without starving other processes. + diff --git a/libsndfile/.footprint b/libsndfile/.footprint index c74568ea3..65cf57c32 100644 --- a/libsndfile/.footprint +++ b/libsndfile/.footprint @@ -9,9 +9,9 @@ drwxr-xr-x root/root usr/include/ drwxr-xr-x root/root usr/lib/ -rw-r--r-- root/root usr/lib/libsndfile.a -rwxr-xr-x root/root usr/lib/libsndfile.la -lrwxrwxrwx root/root usr/lib/libsndfile.so -> libsndfile.so.1.0.12 -lrwxrwxrwx root/root usr/lib/libsndfile.so.1 -> libsndfile.so.1.0.12 --rwxr-xr-x root/root usr/lib/libsndfile.so.1.0.12 +lrwxrwxrwx root/root usr/lib/libsndfile.so -> libsndfile.so.1.0.14 +lrwxrwxrwx root/root usr/lib/libsndfile.so.1 -> libsndfile.so.1.0.14 +-rwxr-xr-x root/root usr/lib/libsndfile.so.1.0.14 drwxr-xr-x root/root usr/lib/pkgconfig/ -rw-r--r-- root/root usr/lib/pkgconfig/sndfile.pc drwxr-xr-x root/root usr/man/ diff --git a/libsndfile/.md5sum b/libsndfile/.md5sum index 374e5b643..16e0b4855 100644 --- a/libsndfile/.md5sum +++ b/libsndfile/.md5sum @@ -1 +1 @@ -03718b7b225b298f41c19620b8906108 libsndfile-1.0.12.tar.gz +3513c2283f4063f57615c5b9b45bf30a libsndfile-1.0.14.tar.gz diff --git a/libsndfile/Pkgfile b/libsndfile/Pkgfile index ce5631ea5..dc7d29429 100644 --- a/libsndfile/Pkgfile +++ b/libsndfile/Pkgfile @@ -4,7 +4,7 @@ # Depends on: name=libsndfile -version=1.0.12 +version=1.0.14 release=1 source=(http://www.mega-nerd.com/$name/$name-$version.tar.gz) diff --git a/madwifi/.footprint b/madwifi/.footprint new file mode 100644 index 000000000..df601c9de --- /dev/null +++ b/madwifi/.footprint @@ -0,0 +1,35 @@ +drwxr-xr-x root/root lib/ +drwxr-xr-x root/root lib/modules/ +drwxr-xr-x root/root lib/modules/<kernel-version>/ +drwxr-xr-x root/root lib/modules/<kernel-version>/net/ +-rw-r--r-- root/root lib/modules/<kernel-version>/net/ath_hal.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/ath_pci.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/ath_rate_sample.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_acl.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_ccmp.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_scan_ap.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_scan_sta.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_tkip.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_wep.ko +-rw-r--r-- root/root lib/modules/<kernel-version>/net/wlan_xauth.ko +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/80211debug +-rwxr-xr-x root/root usr/bin/80211stats +-rwxr-xr-x root/root usr/bin/athchans +-rwxr-xr-x root/root usr/bin/athctrl +-rwxr-xr-x root/root usr/bin/athdebug +-rwxr-xr-x root/root usr/bin/athkey +-rwxr-xr-x root/root usr/bin/athstats +-rwxr-xr-x root/root usr/bin/wlanconfig +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/80211debug.8.gz +-rw-r--r-- root/root usr/man/man8/80211stats.8.gz +-rw-r--r-- root/root usr/man/man8/athchans.8.gz +-rw-r--r-- root/root usr/man/man8/athctrl.8.gz +-rw-r--r-- root/root usr/man/man8/athdebug.8.gz +-rw-r--r-- root/root usr/man/man8/athkey.8.gz +-rw-r--r-- root/root usr/man/man8/athstats.8.gz +-rw-r--r-- root/root usr/man/man8/wlanconfig.8.gz diff --git a/madwifi/Pkgfile b/madwifi/Pkgfile new file mode 100644 index 000000000..760278df5 --- /dev/null +++ b/madwifi/Pkgfile @@ -0,0 +1,14 @@ +# Description: Kernel module for Atheros based 802.11a/b/g cards +# Maintainer: Jay Dolan jasonthomasdolan at yahoo dot com +# Url: http://madwifi.org +# Depends on: sharutils + +name=madwifi +version=current +release=1 +source=(http://snapshots.madwifi.org/$name-ng-$version.tar.gz) + +build(){ + cd $name* && make KERNELPATH=/usr/src/linux-$(uname -r) + make DESTDIR=$PKG BINDIR=/usr/bin MANDIR=/usr/man install +} diff --git a/madwifi/README b/madwifi/README new file mode 100644 index 000000000..decfe7a9c --- /dev/null +++ b/madwifi/README @@ -0,0 +1,21 @@ +PRE-INSTALL + + Kernel sources must exist in /usr/src/linux[-version] + + Note that this port does not provide a .md5sum, as it is built from + a daily svn snapshot of madwifi-ng. + +POST-INSTALL + + Run depmod -a, edit /etc/modprobe.conf and /etc/rc.d/net. The module + name is ath_hal or ath_pci, depending on your card. The wireless + ifdevice name is ath0. Something like this should work: + + /etc/modprobe.conf: + alias ath0 ath_pci + + /etc/rc.d/net: + wlanconfig ath0 create wlandev wifi0 wlanmode sta + + The ath0 device may then be manipulated with ifconfig or dhcpcd. + diff --git a/sharutils/.footprint b/sharutils/.footprint new file mode 100644 index 000000000..22d2087d0 --- /dev/null +++ b/sharutils/.footprint @@ -0,0 +1,18 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/compress-dummy +-rwxr-xr-x root/root usr/bin/mail-files +-rwxr-xr-x root/root usr/bin/mailshar +-rwxr-xr-x root/root usr/bin/remsync +-rwxr-xr-x root/root usr/bin/shar +-rwxr-xr-x root/root usr/bin/unshar +-rwxr-xr-x root/root usr/bin/uudecode +-rwxr-xr-x root/root usr/bin/uuencode +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/shar.1.gz +-rw-r--r-- root/root usr/man/man1/unshar.1.gz +-rw-r--r-- root/root usr/man/man1/uudecode.1.gz +-rw-r--r-- root/root usr/man/man1/uuencode.1.gz +drwxr-xr-x root/root usr/man/man5/ +-rw-r--r-- root/root usr/man/man5/uuencode.5.gz diff --git a/sharutils/.md5sum b/sharutils/.md5sum new file mode 100644 index 000000000..5b18df7df --- /dev/null +++ b/sharutils/.md5sum @@ -0,0 +1 @@ +c081e3acfeab71cf76dca79f8f76c62d sharutils-4.6.tar.bz2 diff --git a/sharutils/Pkgfile b/sharutils/Pkgfile new file mode 100644 index 000000000..585c4547c --- /dev/null +++ b/sharutils/Pkgfile @@ -0,0 +1,16 @@ +# Description: GNU shar (encoding/decoding) utilities +# Maintainer: Jay Dolan jasonthomasdolan at yahoo dot com +# Url: http://www.gnu.org/software/sharutils/sharutils.html +# Depends on: + +name=sharutils +version=4.6 +release=1 +source=(ftp://ftp.gnu.org/gnu/$name/REL-$version/$name-$version.tar.bz2) + +build(){ + cd $name-$version + ./configure --prefix=/usr --disable-nls + make DESTDIR=$PKG install + rm -rf $PKG/usr/info +} diff --git a/xscreensaver/.md5sum b/xscreensaver/.md5sum index 3f372598c..20c0bd181 100644 --- a/xscreensaver/.md5sum +++ b/xscreensaver/.md5sum @@ -1 +1 @@ -27491d117a8f7ae57d1fdf5f15d61ac6 xscreensaver-4.23.tar.gz +174b6a7cebd892c1a6c2d56bf5ac5af6 xscreensaver-4.24.tar.gz diff --git a/xscreensaver/Pkgfile b/xscreensaver/Pkgfile index f8b0f149f..e9f224954 100644 --- a/xscreensaver/Pkgfile +++ b/xscreensaver/Pkgfile @@ -4,7 +4,7 @@ # Depends on: bc,libglade,netpbm,fortune name=xscreensaver -version=4.23 +version=4.24 release=1 source=(http://www.jwz.org/$name/$name-$version.tar.gz) |