summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-05-19 16:52:00 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-05-19 16:52:00 +0000
commitb8ea4461e461f0e1782e28b5810eb811423afa79 (patch)
treec11f256cb01c37f0b2ab370c4838fa4e3949e2a1 /extra
parent82b609ecce972e236c2ce887ecd55ec30e2874a7 (diff)
Thu May 19 16:52:00 UTC 2011
Diffstat (limited to 'extra')
-rw-r--r--extra/apache-ant/PKGBUILD51
-rw-r--r--extra/apache-ant/ant_diagnostics.patch23
-rw-r--r--extra/apache-ant/apache-ant.sh3
-rw-r--r--extra/aria2/PKGBUILD27
-rw-r--r--extra/bs/PKGBUILD26
-rw-r--r--extra/dosbox/PKGBUILD37
-rw-r--r--extra/dosbox/dosbox.desktop10
-rw-r--r--extra/dosbox/dosbox.pngbin4691 -> 0 bytes
-rw-r--r--extra/ettercap-gtk/PKGBUILD44
-rw-r--r--extra/ettercap-gtk/ettercap.desktop6
-rw-r--r--extra/ettercap-gtk/fix-segmentation-fault.patch19
-rw-r--r--extra/gqmpeg/PKGBUILD21
-rw-r--r--extra/gtk-theme-switch2/PKGBUILD31
-rw-r--r--extra/icecast/PKGBUILD54
-rw-r--r--extra/icecast/icecast.logrotate8
-rw-r--r--extra/icecast/icecastd66
-rw-r--r--extra/icecast/start-by-nobody.patch15
-rw-r--r--extra/keyutils/PKGBUILD24
-rw-r--r--extra/kismet/kismet-2008-05-R1-infinite-loop.diff20
-rw-r--r--extra/kismet/kismet-build.patch11
-rw-r--r--extra/kmldonkey/PKGBUILD33
-rw-r--r--extra/kmldonkey/kmldonkey.install11
-rw-r--r--extra/kmplayer/PKGBUILD31
-rw-r--r--extra/kmplayer/kmplayer.install11
-rw-r--r--extra/libbtctl/PKGBUILD24
-rw-r--r--extra/libx86/PKGBUILD36
-rw-r--r--extra/libx86/libx86-ifmask.patch21
-rw-r--r--extra/mc/PKGBUILD50
-rw-r--r--extra/monotone/PKGBUILD30
-rw-r--r--extra/monotone/monotone.install29
-rw-r--r--extra/nbsmtp/PKGBUILD22
-rw-r--r--extra/nbsmtp/build.patch15
-rw-r--r--extra/nickle/PKGBUILD22
-rwxr-xr-xextra/nppangband/Makefile.std375
-rw-r--r--extra/nppangband/PKGBUILD41
-rw-r--r--extra/numlockx/PKGBUILD33
-rw-r--r--extra/oxygen-icons/PKGBUILD38
-rw-r--r--extra/python-gtkglext/PKGBUILD21
-rw-r--r--extra/sharutils/sharutils.install20
-rw-r--r--extra/speedcrunch/PKGBUILD25
-rw-r--r--extra/telepathy-idle/python27.patch21
-rw-r--r--extra/uim/home.patch24
-rw-r--r--extra/vbetool/PKGBUILD28
-rw-r--r--extra/xchat-gnome/PKGBUILD50
-rw-r--r--extra/xchat-gnome/gtk2-2.20.patch137
-rw-r--r--extra/xchat-gnome/xchat-gnome-0.26.1-deprecated-symbol.patch22
-rw-r--r--extra/xchat-gnome/xchat-gnome.install24
-rw-r--r--extra/xscreensaver/ChangeLog46
48 files changed, 0 insertions, 1736 deletions
diff --git a/extra/apache-ant/PKGBUILD b/extra/apache-ant/PKGBUILD
deleted file mode 100644
index 7eec5c172..000000000
--- a/extra/apache-ant/PKGBUILD
+++ /dev/null
@@ -1,51 +0,0 @@
-# $Id: PKGBUILD 107828 2011-01-27 04:37:07Z paul $
-# Contributor: Andrew Wright <andreww@photism.org>
-# Maintainer: Paul Mattal <paul@archlinux.org>
-
-pkgname=apache-ant
-pkgver=1.8.2
-pkgrel=1
-pkgdesc="A java-based build tool."
-arch=('i686' 'x86_64')
-license=('APACHE')
-url="http://ant.apache.org/"
-depends=('java-runtime')
-optdepends=('junit: to jave junit on the classpath in javac tasks')
-source=(http://archive.apache.org/dist/ant/binaries/${pkgname}-${pkgver}-bin.tar.bz2
- ${pkgname}.sh
- ant_diagnostics.patch)
-md5sums=('9e9ae9fc7352960191489a1286fb0928'
- '593ee6ebd9b8ec321534a028e686880f'
- 'cbaab423be40a6e63f0fde901b91eb50')
-
-build() {
- # install profile.d script
- install -dm755 ${pkgdir}/etc/profile.d || return 1
- install -m755 ${srcdir}/${pkgname}.sh ${pkgdir}/etc/profile.d/ || return 1
-
- # Get the ANT_HOME env var
- source ${srcdir}/${pkgname}.sh || return 1
-
- cd ${srcdir}/${pkgname}-${pkgver}
- install -dm755 ${pkgdir}/${ANT_HOME}/{bin,lib} || return 1
-
- install -m644 ./lib/*.jar ${pkgdir}/${ANT_HOME}/lib || return 1
- cp -Rp ./etc ${pkgdir}/${ANT_HOME} || return 1
-
- # Do not copy Windows .bat/.cmd files
- find ./bin -type f -a ! -name \*.bat -a ! -name \*.cmd \
- -exec install -m755 {} ${pkgdir}/${ANT_HOME}/bin \; || return 1
-
- # symlink to junit so it's on the javac build path for ant
- # matches behavior on ubuntu 9 and makes sense for compatibility
- # http://bugs.archlinux.org/task/15229
- cd $startdir/pkg/usr/share/java/apache-ant/lib || return 1
- ln -s ../../junit.jar . || return 1
- cd - || return 1
-
- # The license says the NOTICE file should be redistributed for derivative
- # works, so lets supply it.
- install -dm755 ${pkgdir}/usr/share/licenses/${pkgname} || return 1
- install -m644 LICENSE NOTICE ${pkgdir}/usr/share/licenses/${pkgname} || return 1
-}
-
diff --git a/extra/apache-ant/ant_diagnostics.patch b/extra/apache-ant/ant_diagnostics.patch
deleted file mode 100644
index 38148b45c..000000000
--- a/extra/apache-ant/ant_diagnostics.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/src/main/org/apache/tools/ant/Diagnostics.java
-+++ b/src/main/org/apache/tools/ant/Diagnostics.java
-@@ -179,7 +179,10 @@
- * @param clazz the class to get the information from.
- * @since Ant 1.8.0
- */
-- private static URL getClassLocation(Class clazz) {
-+ private static URL getClassLocation(Class clazz) {
-+ if (clazz.getProtectionDomain().getCodeSource() == null) {
-+ return null;
-+ }
- return clazz.getProtectionDomain().getCodeSource().getLocation();
- }
-
-@@ -241,7 +244,7 @@
- }
- Transformer transformer = null;
- try {
-- transformer = transformerFactory.newTransformer();
-+ transformer = transformerFactory.newTransformer();
- } catch (Exception e) {
- // ignore
- ignoreThrowable(e);
diff --git a/extra/apache-ant/apache-ant.sh b/extra/apache-ant/apache-ant.sh
deleted file mode 100644
index ab602fb28..000000000
--- a/extra/apache-ant/apache-ant.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-export ANT_HOME=/usr/share/java/apache-ant
-export PATH=$PATH:$ANT_HOME/bin
-
diff --git a/extra/aria2/PKGBUILD b/extra/aria2/PKGBUILD
deleted file mode 100644
index ebf763ca5..000000000
--- a/extra/aria2/PKGBUILD
+++ /dev/null
@@ -1,27 +0,0 @@
-# $Id: PKGBUILD 117352 2011-03-31 07:19:05Z eric $
-# Maintainer: Angel Velasquez <angvp@archlinux.org>
-# Contributor: Alexander Fehr <pizzapunk gmail com>
-# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
-
-pkgname=aria2
-pkgver=1.11.1
-pkgrel=1
-pkgdesc="Download utility that supports HTTP(S), FTP, BitTorrent, and Metalink"
-arch=('i686' 'x86_64')
-url="http://aria2.sourceforge.net/"
-license=('GPL')
-depends=('gnutls' 'libxml2' 'sqlite3' 'c-ares' 'ca-certificates')
-source=(http://downloads.sourceforge.net/aria2/aria2-${pkgver}.tar.bz2)
-md5sums=('da785645a6d92450b0a54f384202ba6b')
-sha1sums=('b3b37cc7363305d55e86dcd74a73dc493ecfa530')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
-}
diff --git a/extra/bs/PKGBUILD b/extra/bs/PKGBUILD
deleted file mode 100644
index e15c29aca..000000000
--- a/extra/bs/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# $Id: PKGBUILD 69354 2010-02-20 11:19:53Z allan $
-# Maintainer:
-# Contributor damir <damir@archlinux.org>
-
-pkgname=bs
-pkgver=2.7
-pkgrel=2
-pkgdesc="The classic game of Battleships against the computer. Ncurses."
-arch=('i686' 'x86_64')
-url="http://www.catb.org/~esr/bs/"
-license=('GPL2')
-depends=('ncurses')
-source=($url/$pkgname-$pkgver.tar.gz)
-md5sums=('5786c6006e503d100e65139dadb5d5a7')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr
- make || return 1
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- install -Dm755 bs $pkgdir/usr/bin/bs
- install -Dm644 bs.6 $pkgdir/usr/share/man/man6/bs.6
-}
diff --git a/extra/dosbox/PKGBUILD b/extra/dosbox/PKGBUILD
deleted file mode 100644
index e4d4be918..000000000
--- a/extra/dosbox/PKGBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# $Id: PKGBUILD 80630 2010-05-20 16:06:03Z ibiru $
-# Maintainer :
-# Contributor: James Rayner <james@archlinux.org>
-# Contributor: Ben <ben@benmazer.net>
-
-pkgname=dosbox
-pkgver=0.74
-pkgrel=1
-pkgdesc="An emulator with builtin DOS for running DOS Games"
-arch=('i686' 'x86_64')
-url="http://dosbox.sourceforge.net/"
-license=('GPL')
-depends=('sdl_net' 'sdl_sound' 'libgl' 'libpng' 'alsa-lib' 'gcc-libs')
-makedepends=('mesa')
-source=("http://downloads.sourceforge.net/${pkgname}/$pkgname-$pkgver.tar.gz"
- 'dosbox.png' 'dosbox.desktop')
-md5sums=('b9b240fa87104421962d14eee71351e8'
- '2aac25fc06979e375953fcc36824dc5e'
- '85169ca599028bee8e29e0b3b7b34dd8')
-
-build(){
- cd ${srcdir}/${pkgname}-${pkgver}
- sed -i 's/png_check_sig/png_sig_cmp/' configure || return 1
- ./configure --prefix=/usr \
- --sysconfdir=/etc/dosbox || return 1
- make || return 1
-}
-
-package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install || return 1
-
- install -Dm644 ${srcdir}/${pkgname}.png \
- ${pkgdir}/usr/share/pixmaps/${pkgname}.png || return 1
- install -Dm644 ${srcdir}/${pkgname}.desktop \
- ${pkgdir}/usr/share/applications/${pkgname}.desktop || return 1
-}
diff --git a/extra/dosbox/dosbox.desktop b/extra/dosbox/dosbox.desktop
deleted file mode 100644
index dbaf05ced..000000000
--- a/extra/dosbox/dosbox.desktop
+++ /dev/null
@@ -1,10 +0,0 @@
-[Desktop Entry]
-Type=Application
-Encoding=UTF-8
-Name=dosbox Emulator
-GenericName=Emulator
-Comment=An emulator to run old DOS games
-Icon=dosbox
-Exec=dosbox
-Terminal=false
-Categories=Emulator;Application;
diff --git a/extra/dosbox/dosbox.png b/extra/dosbox/dosbox.png
deleted file mode 100644
index b8a917986..000000000
--- a/extra/dosbox/dosbox.png
+++ /dev/null
Binary files differ
diff --git a/extra/ettercap-gtk/PKGBUILD b/extra/ettercap-gtk/PKGBUILD
deleted file mode 100644
index 90a910423..000000000
--- a/extra/ettercap-gtk/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 103538 2010-12-21 10:37:25Z andrea $
-# Maintainer: Hugo Doria <hugo@archlinux.org>
-# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
-
-pkgname=ettercap-gtk
-pkgver=NG_0.7.3
-_origname=ettercap
-_origver=NG-0.7.3
-pkgrel=8
-pkgdesc="A network sniffer/interceptor/logger for ethernet LANs - GTK"
-arch=('i686' 'x86_64')
-url="http://ettercap.sourceforge.net/"
-license=('GPL')
-depends=('ettercap' 'gtk2' 'libtool')
-makedepends=('libnet')
-options=('!libtool')
-source=(http://downloads.sourceforge.net/${_origname}/${_origname}-${_origver}.tar.gz
- 'ettercap.desktop'
- 'fix-segmentation-fault.patch')
-md5sums=('28fb15cd024162c55249888fe1b97820'
- '6ef18fdd114297d4ed9e5104d309f071'
- 'e9cc99f13fd23edaba6cddffc4d0ef34')
-
-build() {
- cd ${srcdir}/${_origname}-${_origver}
- unset LDFLAGS
-
- # FS#21628
- patch -Np1 -i ${srcdir}/fix-segmentation-fault.patch
-
- libtoolize --force --copy
- aclocal
- autoconf
- ./configure --prefix=/usr --sysconfdir=/etc --enable-plugins
- sed -i 's/LTDL_SHLIB_EXT/\".so\"/' src/ec_plugins.c
- make
-}
-
-package() {
- install -Dm755 ${srcdir}/${_origname}-${_origver}/src/ettercap \
- ${pkgdir}/usr/bin/ettercap-gtk
- install -Dm644 ${srcdir}/ettercap.desktop \
- ${pkgdir}/usr/share/applications/ettercap.desktop
-}
diff --git a/extra/ettercap-gtk/ettercap.desktop b/extra/ettercap-gtk/ettercap.desktop
deleted file mode 100644
index 1ac24e381..000000000
--- a/extra/ettercap-gtk/ettercap.desktop
+++ /dev/null
@@ -1,6 +0,0 @@
-[Desktop Entry]
-Name=Ettercap GTK
-Exec=/usr/bin/ettercap-gtk --gtk
-Terminal=false
-Type=Application
-Categories=Network;System;Security;GTK;
diff --git a/extra/ettercap-gtk/fix-segmentation-fault.patch b/extra/ettercap-gtk/fix-segmentation-fault.patch
deleted file mode 100644
index 3f0c7bf79..000000000
--- a/extra/ettercap-gtk/fix-segmentation-fault.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-commit 8cdf08d401d368d5678f9d9c2cf36ddbdef03aec
-Author: Timothy Redaelli <timothy@redaelli.eu>
-Date: Tue Jun 23 09:16:27 2009 +0000
-
- Fix a crash in 64 bit CPUs
-
-diff --git a/src/protocols/ec_tcp.c b/src/protocols/ec_tcp.c
-index ea0c997..be8f3e0 100644
---- a/src/protocols/ec_tcp.c
-+++ b/src/protocols/ec_tcp.c
-@@ -116,7 +116,7 @@ FUNC_DECODER(decode_tcp)
- tcp = (struct tcp_header *)DECODE_DATA;
-
- opt_start = (u_char *)(tcp + 1);
-- opt_end = (u_char *)((int)tcp + tcp->off * 4);
-+ opt_end = (u_char *)(tcp + tcp->off * 4);
-
- DECODED_LEN = (u_int32)(tcp->off * 4);
-
diff --git a/extra/gqmpeg/PKGBUILD b/extra/gqmpeg/PKGBUILD
deleted file mode 100644
index c89d063ca..000000000
--- a/extra/gqmpeg/PKGBUILD
+++ /dev/null
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 64726 2010-01-22 01:20:44Z eric $
-# Maintainer: damir <damir@archlinux.org>
-# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
-
-pkgname=gqmpeg
-pkgver=0.91.1
-pkgrel=4
-pkgdesc="A frontend to mpg123 with extensive themeability and playlist support"
-arch=('i686' 'x86_64')
-url="http://gqmpeg.sourceforge.net/"
-license=('GPL2')
-depends=('bash' 'gtk2' 'imlib' 'mpg123')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('e22eda86fc3e59108c8d04abc37b3e56')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- ./configure --prefix=/usr --mandir=/usr/share/man
- make || return 1
- make prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man install
-}
diff --git a/extra/gtk-theme-switch2/PKGBUILD b/extra/gtk-theme-switch2/PKGBUILD
deleted file mode 100644
index 650dd50f7..000000000
--- a/extra/gtk-theme-switch2/PKGBUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-# $Id: PKGBUILD 75632 2010-04-02 01:24:28Z dgriffiths $
-# Contributor: Eddie Lozon <almostlucky@attbi.com>
-# Contributor: Jason Chu <jason@archlinux.org>
-# Contributor: Thayer Williams <thayer@archlinux.org>
-# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
-
-pkgname=gtk-theme-switch2
-pkgver=2.1.0
-pkgrel=1
-pkgdesc="Gtk2 theme switcher"
-url="http://muhri.net/nav.php3?node=gts"
-arch=('i686' 'x86_64')
-license=('GPL2')
-depends=('gtk2')
-source=(http://ftp.de.debian.org/debian/pool/main/g/gtk-theme-switch/gtk-theme-switch_${pkgver}.orig.tar.gz)
-md5sums=('a9e7e62701cd4fba4d277dc210cd4317')
-
-build() {
- cd ${srcdir}/gtk-theme-switch-${pkgver}
-
- make || return 1
-}
-
-package() {
- cd ${srcdir}/gtk-theme-switch-${pkgver}
-
- install -Dm755 gtk-theme-switch2 \
- ${pkgdir}/usr/bin/gtk-theme-switch2 || return 1
- install -Dm644 gtk-theme-switch2.1 \
- ${pkgdir}/usr/share/man/man1/gtk-theme-switch2.1 || return 1
-}
diff --git a/extra/icecast/PKGBUILD b/extra/icecast/PKGBUILD
deleted file mode 100644
index f30833ed4..000000000
--- a/extra/icecast/PKGBUILD
+++ /dev/null
@@ -1,54 +0,0 @@
-# $Id: PKGBUILD 109082 2011-02-05 20:09:03Z andrea $
-# Maintainer:
-# Contributor: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Andreas Radke <andyrtr@archlinux.org>
-# Contributor: Jason Chu <jchu@xentac.net>
-
-pkgname=icecast
-pkgver=2.3.2
-pkgrel=5
-pkgdesc="Streaming audio over the Internet"
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://www.icecast.org/"
-depends=('libxslt' 'libvorbis' 'curl' 'speex' 'libtheora')
-backup=('etc/icecast.xml'
- 'etc/logrotate.d/icecast')
-source=("http://downloads.us.xiph.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.gz"
- 'icecastd' 'icecast.logrotate'
- 'start-by-nobody.patch')
-md5sums=('ff516b3ccd2bcc31e68f460cd316093f'
- 'e823c1fdb080aae3d0c54ef8be95f7cb'
- '59c6552bcb1dd9fb542af8670dfabd3c'
- 'd8e929d2214123a1954da4383bf16583')
-
-build() {
- cd ${srcdir}/${pkgname}-${pkgver}
-
- patch -Np1 -i ${srcdir}/start-by-nobody.patch
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var
- make
-}
-
-package() {
- cd ${srcdir}/${pkgname}-${pkgver}
- make DESTDIR=${pkgdir} install
-
- # install man-page
- sed -i -e 's/icecast2/icecast/g' debian/icecast2.1
- install -Dm644 debian/icecast2.1 \
- ${pkgdir}/usr/share/man/man1/icecast.1
-
- # init file
- install -Dm755 ${srcdir}/icecastd \
- ${pkgdir}/etc/rc.d/icecast
- # rotate the logs (taken from Fedora)
- install -Dm644 ${srcdir}/icecast.logrotate \
- ${pkgdir}/etc/logrotate.d/icecast
-
- # install log dir
- install -d -g99 -o99 ${pkgdir}/var/log/icecast
-}
diff --git a/extra/icecast/icecast.logrotate b/extra/icecast/icecast.logrotate
deleted file mode 100644
index 0fb014c06..000000000
--- a/extra/icecast/icecast.logrotate
+++ /dev/null
@@ -1,8 +0,0 @@
-/var/log/icecast/*log {
- missingok
- notifempty
- sharedscripts
- postrotate
- endscript
-}
-
diff --git a/extra/icecast/icecastd b/extra/icecast/icecastd
deleted file mode 100644
index e6c91b08c..000000000
--- a/extra/icecast/icecastd
+++ /dev/null
@@ -1,66 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-timeo=30
-
-getPID() {
- pgrep -u nobody icecast 2>/dev/null
-}
-
-case $1 in
- start)
- stat_busy "Starting Icecast Server"
- if getPID >/dev/null; then
- # already running
- stat_fail
- exit 1
- else
- /usr/bin/icecast -b -c /etc/icecast.xml &>/dev/null
- while (( timeo > 0 )); do
- if getPID >/dev/null; then
- add_daemon icecast
- stat_done
- exit 0
- fi
- sleep 1
- (( timeo-- ))
- done
- stat_fail
- exit 1
- fi
- ;;
-
- stop)
- stat_busy "Stopping Icecast Server"
- if ! getPID >/dev/null; then
- # not running
- stat_done
- exit 1
- fi
- if ! kill $(getPID) &> /dev/null; then
- stat_fail
- exit 1
- fi
- while (( timeo > 0 )); do
- if getPID >/dev/null; then
- rm_daemon icecast
- stat_done
- exit 0
- fi
- sleep 1
- (( timeo-- ))
- done
- stat_fail
- exit 1
- ;;
-
- restart)
- $0 stop
- $0 start
- ;;
- *)
- echo "usage: $0 {start|stop|restart}"
-esac
-exit 0
diff --git a/extra/icecast/start-by-nobody.patch b/extra/icecast/start-by-nobody.patch
deleted file mode 100644
index d218e5afe..000000000
--- a/extra/icecast/start-by-nobody.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- icecast-2.3.2/conf/icecast.xml.in~ 2010-11-12 16:47:54.750000918 +0100
-+++ icecast-2.3.2/conf/icecast.xml.in 2010-11-12 16:48:08.086667585 +0100
-@@ -164,11 +164,9 @@
-
- <security>
- <chroot>0</chroot>
-- <!--
- <changeowner>
- <user>nobody</user>
-- <group>nogroup</group>
-+ <group>nobody</group>
- </changeowner>
-- -->
- </security>
- </icecast>
diff --git a/extra/keyutils/PKGBUILD b/extra/keyutils/PKGBUILD
deleted file mode 100644
index 8e1810f9f..000000000
--- a/extra/keyutils/PKGBUILD
+++ /dev/null
@@ -1,24 +0,0 @@
-# $Id: PKGBUILD 116950 2011-03-26 15:07:29Z tpowa $
-# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
-pkgname=keyutils
-pkgver=1.4
-pkgrel=1
-pkgdesc="Linux Key Management Utilities"
-arch=(i686 x86_64)
-url="http://www.kernel.org"
-license=('GPL2' 'LGPL2.1')
-depends=('glibc' 'sh')
-backup=(etc/request-key.conf)
-source=(http://people.redhat.com/~dhowells/$pkgname/$pkgname-$pkgver.tar.bz2)
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- sed -i -e '/CFLAGS/s|:= -g -O2|+=|' Makefile
- make CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
-}
-md5sums=('e168c1bdaf5aa93c2cbf8a5e7f8ef27b')
diff --git a/extra/kismet/kismet-2008-05-R1-infinite-loop.diff b/extra/kismet/kismet-2008-05-R1-infinite-loop.diff
deleted file mode 100644
index f8417943e..000000000
--- a/extra/kismet/kismet-2008-05-R1-infinite-loop.diff
+++ /dev/null
@@ -1,20 +0,0 @@
---- gpsmap.cc
-+++ gpsmap.cc
-@@ -874,7 +874,7 @@
-
- // Break up the path to the gpsxml file and form a path based on that
- unsigned int lastslash = 0;
-- for (unsigned int x = origxmlfile.find('/'); x != string::npos;
-+ for (string::size_type x = origxmlfile.find('/'); x != string::npos;
- lastslash = x, x = origxmlfile.find('/', lastslash+1)) {
- // We don't actually need to do anything...
- }
-@@ -882,7 +882,7 @@
- comp = origxmlfile.substr(0, lastslash);
-
- lastslash = 0;
-- for (unsigned int x = orignetfile.find('/'); x != string::npos;
-+ for (string::size_type x = orignetfile.find('/'); x != string::npos;
- lastslash = x, x = orignetfile.find('/', lastslash+1)) {
- // We don't actually need to do anything...
- }
diff --git a/extra/kismet/kismet-build.patch b/extra/kismet/kismet-build.patch
deleted file mode 100644
index 9935ca4fa..000000000
--- a/extra/kismet/kismet-build.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- macaddr.h.orig 2009-07-08 02:29:38.000000000 -0400
-+++ macaddr.h 2009-07-08 02:37:54.000000000 -0400
-@@ -73,7 +73,7 @@
- longmac |= (uint64_t) bs_in[5] << ((MAC_LEN - 5 - 1) * 8);
-
- // If it has a mask component, get that
-- char *in_mask = strchr(in, '/');
-+ const char *in_mask = strchr(in, '/');
- if (in_mask != NULL) {
- longmask = 0;
-
diff --git a/extra/kmldonkey/PKGBUILD b/extra/kmldonkey/PKGBUILD
deleted file mode 100644
index 234be2119..000000000
--- a/extra/kmldonkey/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 104423 2011-01-02 13:07:17Z andrea $
-# Maintainer:
-# Contributor: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Pierre Schmitz <pierre@archlinux.de>
-
-pkgname=kmldonkey
-pkgver=2.0.2
-_kdever=4.4.0
-pkgrel=5
-pkgdesc="An MLDonkey frontend for KDE"
-arch=('i686' 'x86_64')
-url='http://userbase.kde.org/KMLDonkey'
-license=('GPL')
-depends=('kdebase-workspace')
-makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl')
-install="${pkgname}.install"
-source=("http://download.kde.org/stable/extragear/${pkgname}-${pkgver}-kde${_kdever}.tar.bz2")
-md5sums=('40ae039dc01a45807111c2d0023eeaa6')
-
-build() {
- cd ${srcdir}
- mkdir build
- cd build
- cmake ../${pkgname}-${pkgver}-kde${_kdever} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr
- make
-}
-
-package() {
- cd ${srcdir}/build
- make DESTDIR=${pkgdir} install
-}
diff --git a/extra/kmldonkey/kmldonkey.install b/extra/kmldonkey/kmldonkey.install
deleted file mode 100644
index e70c054ec..000000000
--- a/extra/kmldonkey/kmldonkey.install
+++ /dev/null
@@ -1,11 +0,0 @@
-post_install() {
- xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}
diff --git a/extra/kmplayer/PKGBUILD b/extra/kmplayer/PKGBUILD
deleted file mode 100644
index b288fed3a..000000000
--- a/extra/kmplayer/PKGBUILD
+++ /dev/null
@@ -1,31 +0,0 @@
-# $Id: PKGBUILD 94084 2010-10-04 12:47:37Z andrea $
-# Maintainer: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: damir <damir@archlinux.org>
-
-pkgname=kmplayer
-pkgver=0.11.2c
-pkgrel=1
-pkgdesc="Video player plugin for Konqueror and basic MPlayer/Xine/ffmpeg/ffserver/VDR frontend for KDE"
-arch=('i686' 'x86_64')
-license=('GPL' 'LGPL' 'FDL')
-url="http://kmplayer.kde.org"
-depends=('kdebase-runtime' 'pango')
-makedepends=('pkgconfig' 'cmake' 'automoc4' 'docbook-xsl')
-install=${pkgname}.install
-source=("http://kmplayer.kde.org/pkgs/$pkgname-$pkgver.tar.bz2")
-md5sums=('7a1363dfaad0c7b563ecbd58f301e704')
-
-build() {
- cd ${srcdir}
- mkdir build
- cd build
- cmake ../${pkgname}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr
- make
-}
-
-package() {
- cd ${srcdir}/build
- make DESTDIR=${pkgdir} install
-}
diff --git a/extra/kmplayer/kmplayer.install b/extra/kmplayer/kmplayer.install
deleted file mode 100644
index e70c054ec..000000000
--- a/extra/kmplayer/kmplayer.install
+++ /dev/null
@@ -1,11 +0,0 @@
-post_install() {
- xdg-icon-resource forceupdate --theme hicolor &> /dev/null
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}
diff --git a/extra/libbtctl/PKGBUILD b/extra/libbtctl/PKGBUILD
deleted file mode 100644
index e81cb690e..000000000
--- a/extra/libbtctl/PKGBUILD
+++ /dev/null
@@ -1,24 +0,0 @@
-# $Id: PKGBUILD 59225 2009-11-21 15:31:57Z giovanni $
-# Maintainer: Geoffroy Carrier <geoffroy@archlinux.org>
-# Contributor: Roman Kyrylych <roman@archlinux.org>
-
-pkgname=libbtctl
-pkgver=0.11.1
-pkgrel=1
-pkgdesc="GObject wrapper for Bluetooth functionality."
-arch=('i686' 'x86_64')
-url="http://www.usefulinc.com/software/gnome-bluetooth/"
-license=('GPL' 'LGPL')
-depends=('glib2' 'openobex' 'bluez')
-makedepends=('intltool' 'python' 'gtk2')
-options=('!libtool' '!makeflags')
-source=(http://ftp.gnome.org/pub/GNOME/sources/${pkgname}/0.11/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('5b5ab9e71dd5428c4e5c45cbf581a384')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --disable-gtk-doc \
- --disable-mono --disable-static || return 1
- make || return 1
- make DESTDIR="${pkgdir}" install || return 1
-}
diff --git a/extra/libx86/PKGBUILD b/extra/libx86/PKGBUILD
deleted file mode 100644
index 79519598c..000000000
--- a/extra/libx86/PKGBUILD
+++ /dev/null
@@ -1,36 +0,0 @@
-# $Id: PKGBUILD 21343 2008-12-12 01:32:33Z eric $
-# Contributor: Eric Belanger <eric@archlinux.org>
-# Contributor: tardo <tardo@nagi-fanboi.net>
-# Maintainer: Thayer Williams <thayer@archlinux.org>
-
-pkgname=libx86
-pkgver=1.1
-pkgrel=2
-pkgdesc="Provides an lrmi interface that works on x86, am64 and alpha"
-arch=('i686' 'x86_64')
-url="http://www.codon.org.uk/~mjg59/libx86/"
-license=('custom')
-depends=('glibc')
-source=(http://www.codon.org.uk/~mjg59/libx86/downloads/libx86-$pkgver.tar.gz
- libx86-ifmask.patch)
-md5sums=('41bee1f8e22b82d82b5f7d7ba51abc2a'
- '573897186eb8670d8d97c64ea7614001')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
-
- # lrmi.c patch courtesy of Gentoo
- patch -Np0 -i $srcdir/libx86-ifmask.patch || return 1
-
- # compensate for x86_64
- if [ "$CARCH" = "x86_64" ]; then
- make BACKEND=x86emu || return 1
- else
- make || return 1
- fi
-
- make DESTDIR=$pkgdir install || return 1
- chmod 644 $pkgdir/usr/lib/libx86.a || return 1
-
- install -D -m 644 COPYRIGHT $pkgdir/usr/share/licenses/$pkgname/COPYRIGHT || return 1
-}
diff --git a/extra/libx86/libx86-ifmask.patch b/extra/libx86/libx86-ifmask.patch
deleted file mode 100644
index c99eeb819..000000000
--- a/extra/libx86/libx86-ifmask.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- lrmi.c.orig 2008-09-06 12:24:36.070136428 +0200
-+++ lrmi.c 2008-09-06 12:28:10.584287458 +0200
-@@ -55,6 +55,18 @@ OTHER DEALINGS IN THE SOFTWARE.
- #include "x86-common.h"
-
- #if defined(__linux__)
-+#ifndef TF_MASK
-+#define TF_MASK X86_EFLAGS_TF
-+#endif
-+#ifndef IF_MASK
-+#define IF_MASK X86_EFLAGS_IF
-+#endif
-+#ifndef IOPL_MASK
-+#define IOPL_MASK X86_EFLAGS_IOPL
-+#endif
-+#ifndef VIF_MASK
-+#define VIF_MASK X86_EFLAGS_VIF
-+#endif
- #define DEFAULT_VM86_FLAGS (IF_MASK | IOPL_MASK)
- #elif defined(__NetBSD__) || defined(__FreeBSD__)
- #define DEFAULT_VM86_FLAGS (PSL_I | PSL_IOPL)
diff --git a/extra/mc/PKGBUILD b/extra/mc/PKGBUILD
deleted file mode 100644
index e4baa655a..000000000
--- a/extra/mc/PKGBUILD
+++ /dev/null
@@ -1,50 +0,0 @@
-# $Id: PKGBUILD 119545 2011-04-12 03:04:01Z eric $
-# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
-
-pkgname=mc
-pkgver=4.7.5.2
-pkgrel=1
-pkgdesc="Midnight Commander is a text based filemanager/shell that emulates Norton Commander"
-arch=('i686' 'x86_64')
-url="http://www.ibiblio.org/mc/"
-license=('GPL')
-depends=('e2fsprogs' 'glib2' 'pcre' 'gpm' 'slang')
-makedepends=('libxt' 'libx11')
-optdepends=('p7zip: support for 7zip archives')
-provides=('mcedit-pkgbuild-syntax')
-conflicts=('mc-utf8')
-replaces=('mc-utf8')
-options=('!emptydirs' '!makeflags')
-source=("http://www.midnight-commander.org/downloads/${pkgname}-${pkgver}.tar.bz2")
-md5sums=('bdae966244496cd4f6d282d80c9cf3c6')
-sha1sums=('08ffcc9fd19c7d8906a454c27b7074ca35bce14a')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- ./configure \
- --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man \
- --enable-background --enable-charset --enable-largefile \
- --with-edit --with-gpm-mouse --with-mmap --enable-vfs-smb \
- --with-screen=slang --with-subshell --with-vfs --with-x \
- --without-debug --without-gnome --without-included-gettext \
- --libexecdir=/usr/lib
-
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
- make DESTDIR="${pkgdir}" install
-
- # Fix FS#15177
- sed 's|op_has_zipinfo = 0|op_has_zipinfo = 1|' \
- -i "${pkgdir}/usr/lib/mc/extfs.d/uzip"
-
- # Fix FS#18312
- rm "${pkgdir}/usr/lib/mc/extfs.d/u7z"
-
- sed 's#/usr/bin/env python#/usr/bin/python2#' \
- -i "${pkgdir}/usr/lib/mc/extfs.d/s3+"
-}
diff --git a/extra/monotone/PKGBUILD b/extra/monotone/PKGBUILD
deleted file mode 100644
index b9fb095f9..000000000
--- a/extra/monotone/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# $Id: PKGBUILD 119532 2011-04-11 21:19:22Z angvp $
-# Maintainer: Angel Velasquez <angvp@archlinux.org>
-# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
-# Contributor: Jeff 'codemac' Mickey <jeff@archlinux.org>
-# Contributor: Dan McGee <dpmcgee@gmail.com>
-pkgname=monotone
-pkgver=1.0
-pkgrel=1
-pkgdesc="A modern distributed version control system, like hg, darcs, or git"
-arch=('i686' 'x86_64')
-url="http://www.monotone.ca"
-license=('GPL')
-depends=('botan' 'pcre' 'lua' 'sqlite3' 'libidn' 'zlib')
-makedepends=('boost')
-install=${pkgname}.install
-source=(http://www.monotone.ca/downloads/${pkgver}/${pkgname}-${pkgver}.tar.bz2)
-md5sums=('6a0b5d8560f08d76a950172f9ed0feff')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr --sysconfdir=/etc
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- MAKEFLAGS="-j1" make DESTDIR="${pkgdir}" install
- install -Dm644 contrib/monotone.zsh_completion \
- "${pkgdir}/usr/share/zsh/site-functions/monotone"
-}
diff --git a/extra/monotone/monotone.install b/extra/monotone/monotone.install
deleted file mode 100644
index 49a8651c0..000000000
--- a/extra/monotone/monotone.install
+++ /dev/null
@@ -1,29 +0,0 @@
-infodir=usr/share/info
-filelist=(monotone.info.gz)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install $1
-
-# arg 1: the new package version
-# arg 2: the old package version
- if [ "$(vercmp $2 0.45)" -lt 0 ]; then
- echo ">>> Your monotone databases will need updating for an internal format"
- echo ">>> change. Please run the following command on each of your databases"
- echo ">>> (after remembering to take a backup copy):"
- echo ">>> $ mtn -d dbname.mtn db migrate"
- fi
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}
diff --git a/extra/nbsmtp/PKGBUILD b/extra/nbsmtp/PKGBUILD
deleted file mode 100644
index 406caf487..000000000
--- a/extra/nbsmtp/PKGBUILD
+++ /dev/null
@@ -1,22 +0,0 @@
-# $Id: PKGBUILD 75557 2010-04-01 20:23:24Z giovanni $
-# Maintainer: dorphell <dorphell@archlinux.org>
-# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>
-
-pkgname=nbsmtp
-pkgver=1.00
-pkgrel=3
-pkgdesc="No-Brainer SMTP client suitable to run in chroot jails, embeded systems, laptops, and workstations"
-arch=(i686 x86_64)
-url="http://nbsmtp.ferdyx.org/"
-license=('GPL')
-depends=('openssl')
-source=(http://www.it.uc3m.es/~ferdy/nbsmtp/$pkgname-$pkgver.tar.bz2 build.patch)
-md5sums=('0c6a200027a6f7f61f44b374261aa52f' '043236152fecb550d80ab3cd84711cd3')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- patch -Np0 -i ../build.patch || return 1
- ./configure --prefix=/usr --enable-ssl || return 1
- make || return 1
- make prefix=$pkgdir/usr mandir=$pkgdir/usr/share/man install || return 1
-}
diff --git a/extra/nbsmtp/build.patch b/extra/nbsmtp/build.patch
deleted file mode 100644
index 325b16308..000000000
--- a/extra/nbsmtp/build.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- hmac_md5.c~ 2005-07-28 19:29:07.000000000 +0200
-+++ hmac_md5.c 2006-06-04 15:49:09.000000000 +0200
-@@ -4,10 +4,11 @@
- *
- * Code taken from RFC2104.
- */
--
-+#include <stdlib.h>
- #include <openssl/md5.h>
- #include <string.h>
-
-+
- #include "hmac_md5.h"
-
- /**
diff --git a/extra/nickle/PKGBUILD b/extra/nickle/PKGBUILD
deleted file mode 100644
index 735648e07..000000000
--- a/extra/nickle/PKGBUILD
+++ /dev/null
@@ -1,22 +0,0 @@
-#$Id: $
-#Maintainer: Jan de Groot <jgc@archlinux.org>
-
-pkgname=nickle
-pkgver=2.70
-pkgrel=1
-pkgdesc="A programming language based prototyping environment with powerful programming and scripting capabilities"
-arch=('i686' 'x86_64')
-url="http://nickle.org"
-license=('custom')
-depends=('readline')
-source=(http://nickle.org/release/${pkgname}-${pkgver}.tar.gz)
-md5sums=('fbb77ad1c6f80a9a67ae28a2a678ed67')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure --prefix=/usr
- make
- make DESTDIR="${pkgdir}" install
- install -m755 -d "${pkgdir}/usr/share/licenses/${pkgname}"
- install -m644 COPYING "${pkgdir}/usr/share/licenses/${pkgname}/"
-}
diff --git a/extra/nppangband/Makefile.std b/extra/nppangband/Makefile.std
deleted file mode 100755
index 5bebf01fa..000000000
--- a/extra/nppangband/Makefile.std
+++ /dev/null
@@ -1,375 +0,0 @@
-# File: Makefile.std
-
-# This is not a very "nice" Makefile, but it usually works.
-
-#
-# Note that you may have to make modifications below according
-# to your machine, available libraries, compilation options,
-# and your "visual module" of choice. This Makefile is intended
-# for use with Unix machines running X11, gtk, (n)curses, termcap,
-# or VT100, Slang, Linux VCS or SVGA library,
-# or possibly for "Atari" or "Amiga" computers with "Curses" ports,
-# see below for more information.
-#
-# Note that "main-mac.c", the visual module for the Macintosh,
-# must be compiled in a special way, see elsewhere.
-#
-# Note that "main-win.c", the visual module for Windows,
-# must be compiled in a special way, see elsewhere.
-#
-# Note that "main-ibm.c", "main-dos.c", and "main-emx.c",
-# the visual modules for various types of IBM-PC computers,
-# must be compiled with special Makefiles, see elsewhere.
-#
-# Note that "main-ros.c", the visual module for RISC OS,
-# must be compiled with "Makefile.ros", see elsewhere.
-#
-# Note that "main-ami.c", the visual module for the Amiga,
-# must be compiled with "Makefile.ami", see elsewhere.
-#
-# If you are able to construct "main-xxx.c" and/or "Makefile.xxx"
-# files for a currently unsupported system, please send them to
-# Robert Ruehlmann < rr9@thangorodrim.net > for inclusion in future
-# versions.
-#
-# This Makefile comes with "default" dependencies that may be obsolete.
-#
-
-
-#
-# The "source" and "object" files.
-#
-
-SRCS = \
- z-util.c z-virt.c z-form.c z-rand.c z-term.c \
- variable.c tables.c util.c cave.c \
- object1.c object2.c monster1.c monster2.c \
- xtra1.c xtra2.c spells1.c spells2.c \
- melee1.c melee2.c save.c effects.c feature.c files.c \
- cmd1.c cmd2.c cmd3.c cmd4.c cmd5.c cmd6.c \
- store.c birth.c load.c quest.c squelch.c \
- wizard1.c wizard2.c obj-info.c \
- generate.c dungeon.c init1.c init2.c randart.c \
- main-cap.c main-gcu.c main-x11.c main-xaw.c main.c \
- main-gtk.c main-lsl.c main-sla.c main-vcs.c main-xpj.c main-lfb.c \
- maid-x11.c \
- use-obj.c
-
-OBJS = \
- z-util.o z-virt.o z-form.o z-rand.o z-term.o \
- variable.o tables.o util.o cave.o \
- object1.o object2.o monster1.o monster2.o \
- xtra1.o xtra2.o spells1.o spells2.o \
- melee1.o melee2.o save.o effects.o feature.o files.o \
- cmd1.o cmd2.o cmd3.o cmd4.o cmd5.o cmd6.o \
- store.o birth.o load.o quest.o squelch.o \
- wizard1.o wizard2.o obj-info.o \
- generate.o dungeon.o init1.o init2.o randart.o \
- main-cap.o main-gcu.o main-x11.o main-xaw.o main.o \
- main-gtk.o main-lsl.o main-sla.o main-vcs.o main-xpj.o main-lfb.o \
- maid-x11.o \
- use-obj.o
-
-
-
-##
-## Following are some "system" definitions
-##
-## No changes are needed to compile a version that will run on both
-## X11 and Curses, in debugging mode, with maximal warnings, on many
-## normal Unix machines of the Sun OS variety (non-solaris).
-##
-## To use an "alternative" definition, simply "modify" (or "replace")
-## the definition below with one that you like. For example, you can
-## change the compiler to "cc", or remove the "debugging" options, or
-## remove the X11 or Curses support, etc, as desired.
-##
-## With X11, XAW or GTK, you can add -D"USE_XPJ" to CFLAGS to get the
-## 3d-projection module "xpj".
-##
-## See also "config.h" and "h-config.h" for important information.
-##
-## Some "examples" are given below, they can be used by simply
-## removing the FIRST column of "#" signs from the "block" of lines
-## you wish to use, and commenting out "standard" block below.
-##
-## This is not intended to be a "good" Makefile, just a "simple" one.
-##
-
-
-#
-# This is my compiler of choice, it seems to work most everywhere.
-#
-CC = gcc
-
-
-#
-# Standard version (see main-x11.c and main-gcu.c)
-#
-# This version supports both "X11" and "curses" in a single executable.
-#
-# You may have to add various X11 include/library directories to the
-# "CFLAGS", if your machine places files in a weird location.
-#
-# You may be able to remove "-ltermcap" on some machines (ex: Solaris).
-#
-# You may have to replace "-lcurses" with "-lncurses" to use the
-# "new curses" library instead of the "old curses" library, and
-# you may have to add "-I/usr/include/ncurses" to the "CFLAGS".
-#
-# See "main-gcu.c" and "config.h" for some optional "curses" defines,
-# including "USE_GETCH" and "USE_CURS_SET". Note that "config.h" will
-# attempt to "guess" at many of these flags based on your system.
-#
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_X11" -D"USE_GCU"
-#LIBS = -lX11 -lcurses -ltermcap
-
-
-##
-## Variation -- Only support "main-x11.c" (not "main-gcu.c")
-##
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_X11"
-#LIBS = -lX11
-
-
-##
-## Variation -- Only support "main-gcu.c" (not "main-x11.c")
-##
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_GCU"
-#LIBS = -lcurses -ltermcap
-
-
-##
-## Variation -- Use "main-xaw.c" instead of "main-x11.c"
-##
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_XAW" -D"USE_GCU"
-#LIBS = -lXaw -lXmu -lXt -lX11 -lcurses -ltermcap
-
-
-##
-## Variation -- Use "main-gtk.c" instead of "main-x11.c"
-## Note: gtk-config adds GTK and X11 includes and libraries as appropriate.
-##
-#CFLAGS = -Wall -O `gtk-config --cflags` -g -D"USE_GTK" -D"USE_GCU"
-#LIBS = `gtk-config --libs` -lcurses -ltermcap
-
-
-##
-## Variation -- Use "main-cap.c" instead of "main-gcu.c"
-##
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_X11" -D"USE_CAP"
-#LIBS = -lX11 -ltermcap
-
-
-##
-## Variation -- Only work on simple vt100 terminals
-##
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_CAP" -D"USE_HARDCODE"
-
-
-##
-## Variation -- compile for Linux
-##
-## Allows the use of Angband in the console using ncurses,
-## as well as under X11.
-##
-#CFLAGS = -I/usr/X11R6/include -I/usr/include/ncurses -Wall \
- # -O2 -fno-strength-reduce -D"HAVE_MKSTEMP" \
- # -D"USE_X11" -D"USE_GCU" -D"USE_NCURSES" -g
-#LIBS = -L/usr/X11R6/lib -lXaw -lXext -lSM -lICE -lXmu -lXt -lX11 -lncurses
-
-
-##
-## Variation -- compile for Linux
-##
-## Allows the use of Angband in the console using curses.
-##
-#CFLAGS = -Wall -O2 -fno-strength-reduce -pipe -D"USE_GCU"
-#LIBS = -lcurses
-
-
-##
-## Variation -- compile for Linux
-##
-## Allows the use of Angband in X11 using the Athena Widget set.
-##
-#CFLAGS = -Wall -O2 -fno-strength-reduce -pipe -g -D"USE_XAW"
-#LIBS = -L/usr/X11R6/lib -lXaw -lXext -lSM -lICE -lXmu -lXt -lX11
-
-
-##
-## Variation -- this might work better than the suggestion above
-##
-CFLAGS = -I/usr/include/ncurses \
- -Wall -O2 -fno-strength-reduce -fomit-frame-pointer \
- -D"USE_X11" -D"USE_GCU" \
- -D"USE_TPOSIX" -D"USE_CURS_SET"
-LIBS = -lX11 -lncurses
-LDFLAGS = -s
-
-
-##
-## Variation -- compile for Solaris
-##
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_X11" -D"USE_GCU" -D"SOLARIS"
-#LIBS = -lX11 -lsocket -lcurses
-
-
-##
-## Variation -- compile for SGI Indigo runnig Irix
-##
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_X11" -D"USE_GCU" -D"SGI"
-#LIBS = -lX11 -lcurses -ltermcap -lsun
-
-
-##
-## Variation -- compile for Dec ALPHA OSF/1 v2.0
-##
-#CC = cc
-##CFLAGS = -std -O -g3 -Olimit 4000 -D"USE_X11" -D"USE_GCU"
-#CFLAGS = -std -g -D"USE_X11" -D"USE_GCU"
-#LIBS = -lX11 -lcurses -ltermcap -lrpcsvc
-
-
-##
-## Variation -- compile for Interactive Unix (ISC) systems
-##
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_X11" -D"USE_GCU" -D"ISC"
-#LIBS = -lX11 -lcurses -lnsl_s -linet -lcposix
-
-
-##
-## Variation -- Support fat binaries under NEXTSTEP
-##
-#CFLAGS = -Wall -O1 -pipe -g -D"USE_GCU" -arch m68k -arch i386
-#LIBS = -lcurses -ltermcap
-
-
-##
-## Variation -- Support Linux + SVGA library
-##
-#CFLAGS = -Wall -O2 -fno-strength-reduce -D"USE_LSL"
-#LIBS = -lz -lvgagl -lvga
-
-
-##
-## Variation -- Support Linux "vcs" (Virtual Console memory) module
-##
-#CFLAGS = -Wall -O2 -fno-strength-reduce -D"USE_VCS"
-#LIBS =
-
-
-##
-## Variation -- Support S-Lang library
-##
-#CFLAGS = -Wall -O2 -fno-strength-reduce -D"USE_SLA" -I/usr/include/slang
-#LIBS = -lslang
-
-
-#
-# Default target.
-#
-all: nppangband
-
-
-#
-# Install the game.
-#
-
-install: nppangband
- cp nppangband ..
-
-
-#
-# Build the "NPPAngband" program
-#
-
-nppangband: $(OBJS)
- $(CC) $(CFLAGS) $(LDFLAGS) -o nppangband $(OBJS) $(LIBS)
-
-
-#
-# Clean up old junk
-#
-
-clean:
- -rm -f *.o nppangband
-
-#
-# Generate dependencies automatically
-#
-
-depend:
- makedepend -D__MAKEDEPEND__ $(SRCS)
-
-
-#
-# Hack -- some file dependencies
-#
-
-HDRS = \
- h-basic.h \
- h-define.h h-type.h h-system.h h-config.h
-
-INCS = \
- angband.h \
- config.h defines.h types.h externs.h \
- z-term.h z-rand.h z-util.h z-virt.h z-form.h $(HDRS)
-
-
-birth.o: birth.c $(INCS)
-cave.o: cave.c $(INCS)
-cmd1.o: cmd1.c $(INCS)
-cmd2.o: cmd2.c $(INCS)
-cmd3.o: cmd3.c $(INCS)
-cmd4.o: cmd4.c $(INCS)
-cmd5.o: cmd5.c $(INCS)
-cmd6.o: cmd6.c $(INCS)
-dungeon.o: dungeon.c $(INCS)
-effects.o: effects.c $(INCS)
-feature.o: feature.c $(INCS)
-files.o: files.c $(INCS)
-generate.o: generate.c $(INCS)
-init1.o: init1.c $(INCS) init.h
-init2.o: init2.c $(INCS) init.h
-load.o: load.c $(INCS) init.h
-maid-x11.o: maid-x11.c $(INCS) maid-x11.h
-main-cap.o: main-cap.c $(INCS) main.h
-main-gcu.o: main-gcu.c $(INCS) main.h
-main-gtk.o: main-gtk.c $(INCS) main.h maid-x11.h
-main-lsl.o: main-lsl.c $(INCS) main.h
-main-sla.o: main-sla.c $(INCS) main.h
-main-vcs.o: main-vcs.c $(INCS) main.h
-main-x11.o: main-x11.c $(INCS) main.h maid-x11.h
-main-xaw.o: main-xaw.c $(INCS) main.h maid-x11.h
-main-xpj.o: main-xpj.c $(INCS) main.h maid-x11.h
-main-lfb.o: main-lfb.c $(INCS) main.h
-main.o: main.c $(INCS) main.h
-melee1.o: melee1.c $(INCS)
-melee2.o: melee2.c $(INCS)
-monster1.o: monster1.c $(INCS)
-monster2.o: monster2.c $(INCS)
-obj-info.o: obj-info.c $(INCS)
-object1.o: object1.c $(INCS)
-object2.o: object2.c $(INCS)
-quest.o: quest.c $(INCS)
-randart.o: randart.c $(INCS) init.h
-save.o: save.c $(INCS)
-spells1.o: spells1.c $(INCS)
-spells2.o: spells2.c $(INCS)
-squelch.o: squelch.c $(INCS)
-store.o: store.c $(INCS)
-tables.o: tables.c $(INCS)
-use-obj.o: use-obj.c $(INCS)
-util.o: util.c $(INCS)
-variable.o: variable.c $(INCS)
-wizard1.o: wizard1.c $(INCS)
-wizard2.o: wizard2.c $(INCS)
-xtra1.o: xtra1.c $(INCS)
-xtra2.o: xtra2.c $(INCS)
-z-form.o: z-form.c $(HDRS) z-form.h z-util.h z-virt.h
-z-rand.o: z-rand.c $(HDRS) z-rand.h
-z-term.o: z-term.c $(HDRS) z-term.h z-virt.h
-z-util.o: z-util.c $(HDRS) z-util.h
-z-virt.o: z-virt.c $(HDRS) z-virt.h z-util.h
-
diff --git a/extra/nppangband/PKGBUILD b/extra/nppangband/PKGBUILD
deleted file mode 100644
index 988ddcf52..000000000
--- a/extra/nppangband/PKGBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 58001 2009-11-03 08:18:40Z giovanni $
-# Maintainer: James Rayner <iphitus@gmail.com>
-
-pkgname=nppangband
-pkgver=0.5.0.25
-pkgrel=1.1
-pkgdesc="A variant of Angband that attempts to take popular ideas from other variants"
-url="http://www.assembla.com/wiki/show/NPPAngband"
-depends=('ncurses' 'libx11')
-makedepends=('libxaw' 'xorg-font-utils')
-source=(http://www.assembla.com/spaces/NPPAngband/documents/dmfeFgWJir3PuseJe5afGb/download/npp050-rev25-src.zip)
-license=('custom')
-arch=('i686' 'x86_64')
-
-build() {
-
- cd $srcdir/npp050-rev25-src/src
- sed 's@# define DEFAULT_PATH "./lib/"@# define DEFAULT_PATH "/usr/share/nppangband/"@' -i config.h
- sed -i 's/-D"USE_LFB"//g' Makefile.std # Remove framebuffer support, does not compile,
- make -f Makefile.std
-
-
- # Fix fonts
- cd ../lib/xtra/font/
- tr -d '\r' < compile_bdf_fonts.sh > compile_bdf_fonts2.sh # Convert line endings dos->unix
- sed -i "s/\.bdf/\.bdf;/g" compile_bdf_fonts2.sh # fix syntax error, missing ;.
- bash compile_bdf_fonts2.sh # no shebang, use bash explicitly
-
- # Install
- cd $srcdir/npp050-rev25-src/
- mkdir -p $pkgdir/usr/bin $pkgdir/usr/share
- cp -R lib $pkgdir/usr/share/nppangband/
- chmod -R 775 $pkgdir/usr/share/nppangband/
- chown -R root:games $pkgdir/usr/share/nppangband/
- install -m755 src/nppangband $pkgdir/usr/bin/nppangband
-
- # install custom license
- install -Dm644 COPYING $pkgdir/usr/share/licenses/$pkgname/COPYING
-}
-
-md5sums=('776d387ccbca31edf7eb30eb1402b0c9')
diff --git a/extra/numlockx/PKGBUILD b/extra/numlockx/PKGBUILD
deleted file mode 100644
index c30fdd0d6..000000000
--- a/extra/numlockx/PKGBUILD
+++ /dev/null
@@ -1,33 +0,0 @@
-# $Id: PKGBUILD 75639 2010-04-02 01:32:53Z dgriffiths $
-# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
-# Contributor: Travis Willard <travisw@wmpub.ca>
-# Contributor: Thayer Williams <thayer@archlinux.org>
-# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
-
-pkgname=numlockx
-pkgver=1.2
-pkgrel=1
-pkgdesc="Turns on the numlock key in X11"
-arch=('i686' 'x86_64')
-license=('MIT')
-url="http://ktown.kde.org/~seli/numlockx/"
-depends=('libxtst')
-source=(http://ktown.kde.org/~seli/${pkgname}/${pkgname}-${pkgver}.tar.gz)
-md5sums=('be9109370447eae23f6f3f8527bb1a67')
-
-build() {
- cd ${srcdir}/${pkgname}-${pkgver}
-
- ./configure --prefix=/usr x_includes=/usr/include/X11 \
- x_libraries=/usr/lib || return 1
- make || return 1
-}
-
-package() {
- cd ${srcdir}/${pkgname}-${pkgver}
-
- make prefix=${pkgdir}/usr install || return 1
-
- # Install the custom MIT license
- install -D LICENSE ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE || return 1
-}
diff --git a/extra/oxygen-icons/PKGBUILD b/extra/oxygen-icons/PKGBUILD
deleted file mode 100644
index 1440c6446..000000000
--- a/extra/oxygen-icons/PKGBUILD
+++ /dev/null
@@ -1,38 +0,0 @@
-# $Id: PKGBUILD 121091 2011-04-29 00:27:25Z andrea $
-# Maintainer: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: Pierre Schmitz <pierre@archlinux.de>
-
-pkgbase=oxygen-icons
-pkgname=('oxygen-icons'
- 'oxygen-icons-svg')
-pkgver=4.6.3
-pkgrel=1
-pkgdesc="The Oxygen Icon Theme"
-arch=('any')
-url='http://www.oxygen-icons.org/'
-license=('LGPL')
-makedepends=('pkgconfig' 'cmake' 'automoc4')
-source=("http://download.kde.org/stable/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
-sha1sums=('9efaf92d516f716f3d36ff0e21c66384500e967d')
-
-build() {
- cd $srcdir
- mkdir build
- cd build
- cmake ../${pkgname}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr
- make
-}
-
-package_oxygen-icons() {
- cd $srcdir/build
- make DESTDIR=$pkgdir install
-}
-
-package_oxygen-icons-svg() {
- pkgdesc="The Oxygen Icon Theme (Scalable Vector Graphics)"
- cd $srcdir/${pkgbase}-${pkgver}
- find scalable -type f ! -name '*.sh' -exec \
- install -D -m644 "{}" "${pkgdir}/usr/share/icons/oxygen/{}" \;
-}
diff --git a/extra/python-gtkglext/PKGBUILD b/extra/python-gtkglext/PKGBUILD
deleted file mode 100644
index 883b8d92e..000000000
--- a/extra/python-gtkglext/PKGBUILD
+++ /dev/null
@@ -1,21 +0,0 @@
-# $Id: PKGBUILD 89694 2010-09-03 10:37:56Z remy $
-# Maintainer: simo <simo@archlinux.org>
-pkgname=python-gtkglext
-pkgver=1.1.0
-pkgrel=4
-pkgdesc="Python language bindings for GtkGLExt"
-arch=(i686 x86_64)
-depends=('gtkglext' 'mesa' 'python-opengl' 'pygtk')
-makedepends=('libxmu')
-url="http://gtkglext.sourceforge.net/"
-source=(http://downloads.sourceforge.net/gtkglext/pygtkglext-$pkgver.tar.bz2)
-license="LGPL"
-md5sums=('720b421d3b8514a40189b285dd91de57')
-
-build() {
- cd $startdir/src/pygtkglext-$pkgver
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR=$startdir/pkg install
- find $startdir/pkg -name '*.la' -exec rm {} \;
-}
diff --git a/extra/sharutils/sharutils.install b/extra/sharutils/sharutils.install
deleted file mode 100644
index e8d9f8c07..000000000
--- a/extra/sharutils/sharutils.install
+++ /dev/null
@@ -1,20 +0,0 @@
-infodir=/usr/share/info
-filelist=(sharutils.info.gz)
-
-post_install() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info $infodir/$file $infodir/dir 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_remove() {
- [ -x usr/bin/install-info ] || return 0
- for file in ${filelist[@]}; do
- install-info --delete $infodir/$file $infodir/dir 2> /dev/null
- done
-}
diff --git a/extra/speedcrunch/PKGBUILD b/extra/speedcrunch/PKGBUILD
deleted file mode 100644
index 5b78123d8..000000000
--- a/extra/speedcrunch/PKGBUILD
+++ /dev/null
@@ -1,25 +0,0 @@
-# $Id: PKGBUILD 67114 2010-02-03 16:04:47Z andrea $
-# Maintainer:
-# Contributor: Ronald van Haren <ronald.archlinux.org>
-
-pkgname=speedcrunch
-pkgver=0.10.1
-pkgrel=2
-pkgdesc="Simple but powerful calculator using Qt"
-url="http://speedcrunch.org/"
-arch=('i686' 'x86_64')
-depends=('qt')
-makedepends=('cmake')
-license=('GPL2')
-source=(http://speedcrunch.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-md5sums=('344ee1303b05502d28c58a2fff1ca6b2')
-
-build() {
- cd $srcdir/$pkgname-$pkgver/src
- cmake . -DCMAKE_INSTALL_PREFIX=/usr || return 1
- make || return 1
-
- # fix make install issue
- lrelease speedcrunch.pro
- make DESTDIR=$pkgdir install
-}
diff --git a/extra/telepathy-idle/python27.patch b/extra/telepathy-idle/python27.patch
deleted file mode 100644
index f8abffb57..000000000
--- a/extra/telepathy-idle/python27.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -Nur telepathy-idle-0.1.7.orig/configure.ac telepathy-idle-0.1.7/configure.ac
---- telepathy-idle-0.1.7.orig/configure.ac 2010-12-07 03:52:29.000000000 -0800
-+++ telepathy-idle-0.1.7/configure.ac 2010-12-07 09:41:21.179715253 -0800
-@@ -103,7 +103,7 @@
- AC_MSG_ERROR([xsltproc (from the libxslt source package) is required])
- fi
- PYTHON=
--AC_CHECK_PROGS([PYTHON], [python2.3 python2.4 python2.5 python])
-+AC_CHECK_PROGS([PYTHON], [python2.3 python2.4 python2.5 python2.7 python])
- if test -z "$PYTHON"; then
- AC_MSG_ERROR([Python is required to compile this package])
- fi
-@@ -111,7 +111,7 @@
-
- dnl check for a version of python that can run the twisted tests
- AC_MSG_CHECKING([for Python with Twisted and IRC protocol support])
--for TEST_PYTHON in python2.5 python2.6 python; do
-+for TEST_PYTHON in python2.5 python2.6 python2.7 python; do
- if $TEST_PYTHON -c "from sys import version_info; import dbus, dbus.mainloop.glib; raise SystemExit(version_info < (2, 5, 0, 'final', 0))" >/dev/null 2>&1; then
- if $TEST_PYTHON -c "import twisted.words.protocols.irc, twisted.internet.reactor" >/dev/null 2>&1; then
- AM_CONDITIONAL([WANT_TWISTED_TESTS], true)
diff --git a/extra/uim/home.patch b/extra/uim/home.patch
deleted file mode 100644
index 5d171529d..000000000
--- a/extra/uim/home.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff -aur uim/uim-helper.c uim/uim-helper.c
---- uim/uim-helper.c 2010-08-22 19:23:37.646666698 +0200
-+++ uim/uim-helper.c 2010-08-22 19:26:57.676666781 +0200
-@@ -178,7 +178,7 @@
- goto path_error;
- }
-
-- if (strlcpy(helper_path, pw->pw_dir, len) >= (size_t)len) {
-+ if (strlcpy(helper_path, getenv("HOME"), len) >= (size_t)len) {
- endpwent();
- goto path_error;
- }
-diff -aur uim/uim-posix.c uim/uim-posix.c
---- uim/uim-posix.c 2010-08-22 19:23:37.650000031 +0200
-+++ uim/uim-posix.c 2010-08-22 19:26:40.096666322 +0200
-@@ -100,7 +100,7 @@
- home[0] = '\0';
- return UIM_FALSE;
- }
-- if (strlcpy(home, pw->pw_dir, len) >= (size_t)len) {
-+ if (strlcpy(home, getenv("HOME"), len) >= (size_t)len) {
- home[0] = '\0';
- endpwent();
- return UIM_FALSE;
diff --git a/extra/vbetool/PKGBUILD b/extra/vbetool/PKGBUILD
deleted file mode 100644
index 0122f4130..000000000
--- a/extra/vbetool/PKGBUILD
+++ /dev/null
@@ -1,28 +0,0 @@
-# $Id: PKGBUILD 19267 2008-11-18 03:22:15Z eric $
-# Contributor: Christian Storm <Christian.Storm@gmx.DE>
-# Contributor: James Rayner <james@archlinux.org>
-# Maintainer: Thayer Williams <thayer@archlinux.org>
-
-pkgname=vbetool
-pkgver=1.1
-pkgrel=1
-pkgdesc="vbetool uses lrmi in order to run code from the video BIOS"
-url="http://www.srcf.ucam.org/~mjg59/vbetool/"
-license=('GPL2')
-arch=('i686' 'x86_64')
-depends=('zlib' 'libx86')
-makedepends=('pciutils')
-source=(http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-${pkgver}.tar.gz)
-md5sums=('ffb03b118867a02296d7449019ad8846')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- if [ "${CARCH}" = "x86_64" ]; then
- ./configure --prefix=/usr --without-x86emu || return 1
- else
- ./configure --prefix=/usr || return 1
- fi
- make LIBS=-lpci || return 1
- make DESTDIR=$pkgdir install || return 1
-}
-
diff --git a/extra/xchat-gnome/PKGBUILD b/extra/xchat-gnome/PKGBUILD
deleted file mode 100644
index 271b96631..000000000
--- a/extra/xchat-gnome/PKGBUILD
+++ /dev/null
@@ -1,50 +0,0 @@
-# $Id: PKGBUILD 112861 2011-03-07 10:29:01Z eric $
-# Maintainer: Allan McRae <allan@archlinux.org>
-# Contributor: Jan de Groot <jgc@archlinux.org>
-
-pkgname=xchat-gnome
-pkgver=0.26.1
-pkgrel=5
-pkgdesc="GNOME frontend to the popular X-Chat IRC client."
-arch=('i686' 'x86_64')
-license=('GPL')
-url="http://xchat-gnome.navi.cx/"
-depends=('libgnomeui>=2.18.1-2' 'libsexy>=0.1.11' 'gconf>=2.18.0.1-4'
- 'hicolor-icon-theme' 'desktop-file-utils' 'libcanberra' 'libsm')
-makedepends=('gettext' 'perlxml' 'python2' 'tcl' 'libnotify' 'gnome-doc-utils>=0.10.3'
- 'intltool' 'pkg-config')
-optdepends=('libnotify: notifications'
- 'python2: plugin'
- 'tcl: plugin')
-options=('!libtool')
-install=xchat-gnome.install
-source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.26/${pkgname}-${pkgver}.tar.gz
- gtk2-2.20.patch xchat-gnome-0.26.1-deprecated-symbol.patch)
-md5sums=('e355d71d76cd97a0764e37bfacf09101' 'dafc2536a0c5ee3f8015af81fce69656'\
- 'f82417277f0b5e83334147c4bf63d531')
-sha1sums=('303bfbf2f1bda83fbc4edab148df4764cb4b8998' 'f1bfc5af50be7c10a9db96be20185325636d8da9'\
- '9aa0abc4b7999e09cafdeb8da1ad4641552a421b')
-
-build() {
- cd "$srcdir/${pkgname}-${pkgver}"
- patch -Np1 -i "$srcdir/gtk2-2.20.patch"
- patch -Np1 -i "$srcdir/xchat-gnome-0.26.1-deprecated-symbol.patch"
- sed -i 's/notify_notification_new (summary, escaped, NULL, NULL);/notify_notification_new (summary, escaped, NULL);/' plugins/notify-osd/notify-osd.c
- sed -i -e "s/ /\t/" src/common/dbus/Makefile.in
-
- ./configure --prefix=/usr --sysconfdir=/etc \
- --localstatedir=/var --disable-static \
- --enable-ipv6 --enable-shm \
- --disable-gtkfe --disable-scrollkeeper
- make
-}
-
-package() {
- cd "$srcdir/${pkgname}-${pkgver}"
- make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install
-
- install -d "$pkgdir/usr/share/gconf/schemas"
- gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/${pkgname}.schemas" \
- "$pkgdir"/etc/gconf/schemas/*.schemas
- rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
-}
diff --git a/extra/xchat-gnome/gtk2-2.20.patch b/extra/xchat-gnome/gtk2-2.20.patch
deleted file mode 100644
index 7a5dcedf2..000000000
--- a/extra/xchat-gnome/gtk2-2.20.patch
+++ /dev/null
@@ -1,137 +0,0 @@
-diff -urp xchat-gnome-0.26.1.OLD/src/fe-gnome/fe-gnome.c xchat-gnome-0.26.1/src/fe-gnome/fe-gnome.c
---- xchat-gnome-0.26.1.OLD/src/fe-gnome/fe-gnome.c 2008-09-07 09:18:45.000000000 -0400
-+++ xchat-gnome-0.26.1/src/fe-gnome/fe-gnome.c 2010-03-28 16:16:52.181405173 -0400
-@@ -753,7 +753,7 @@ fe_gui_info (session * sess, int info_ty
- {
- switch (info_type) {
- case 0:
-- if (!GTK_WIDGET_VISIBLE (GTK_WINDOW (gui.main_window))) {
-+ if (!gtk_widget_get_visible (GTK_WIDGET (gui.main_window))) {
- return 2;
- }
- if (gtk_window_is_active (GTK_WINDOW (gui.main_window))) {
-diff -urp xchat-gnome-0.26.1.OLD/src/fe-gnome/find-bar.c xchat-gnome-0.26.1/src/fe-gnome/find-bar.c
---- xchat-gnome-0.26.1.OLD/src/fe-gnome/find-bar.c 2007-03-09 10:42:57.000000000 -0500
-+++ xchat-gnome-0.26.1/src/fe-gnome/find-bar.c 2010-03-28 16:26:24.300405158 -0400
-@@ -247,7 +247,7 @@ find_bar_close (FindBar *bar)
- {
- gint position;
-
-- if (!GTK_WIDGET_VISIBLE (bar)) {
-+ if (!gtk_widget_get_visible (GTK_WIDGET (bar))) {
- return;
- }
-
-diff -urp xchat-gnome-0.26.1.OLD/src/fe-gnome/text-entry.c xchat-gnome-0.26.1/src/fe-gnome/text-entry.c
---- xchat-gnome-0.26.1.OLD/src/fe-gnome/text-entry.c 2008-09-07 10:02:45.000000000 -0400
-+++ xchat-gnome-0.26.1/src/fe-gnome/text-entry.c 2010-03-28 16:39:48.755153605 -0400
-@@ -667,7 +667,7 @@ text_entry_set_current (TextEntry *entry
- char *selection = NULL, *text = NULL;
- int start, end;
-
-- g_return_if_fail (GTK_WIDGET_REALIZED (widget));
-+ g_return_if_fail (gtk_widget_get_realized (GTK_WIDGET (widget)));
-
- if (sess == priv->current) {
- return;
-diff -urp xchat-gnome-0.26.1.OLD/src/fe-gnome/userlist-gui.c xchat-gnome-0.26.1/src/fe-gnome/userlist-gui.c
---- xchat-gnome-0.26.1.OLD/src/fe-gnome/userlist-gui.c 2008-10-13 17:02:16.000000000 -0400
-+++ xchat-gnome-0.26.1/src/fe-gnome/userlist-gui.c 2010-03-28 16:47:55.703154452 -0400
-@@ -261,12 +261,12 @@ userlist_gui_show (void)
-
- gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (gui.userlist_toggle), TRUE);
-
-- if (!GTK_WIDGET_REALIZED (gui.userlist_window)) {
-+ if (!gtk_widget_get_realized (GTK_WIDGET (gui.userlist_window))) {
- gtk_widget_realize (gui.userlist_window);
- }
- gtk_widget_size_request (gui.userlist, &request);
-
-- if (GTK_WIDGET_REALIZED (gui.userlist_toggle))
-+ if (gtk_widget_get_realized (GTK_WIDGET (gui.userlist_toggle)))
- anchor_widget = gui.userlist_toggle;
- else
- anchor_widget = gui.main_window;
-diff -urp xchat-gnome-0.26.1.OLD/src/fe-gnome/xtext.c xchat-gnome-0.26.1/src/fe-gnome/xtext.c
---- xchat-gnome-0.26.1.OLD/src/fe-gnome/xtext.c 2009-01-16 08:17:31.000000000 -0500
-+++ xchat-gnome-0.26.1/src/fe-gnome/xtext.c 2010-03-28 16:57:17.441402617 -0400
-@@ -1086,7 +1086,7 @@ gtk_xtext_size_allocate (GtkWidget * wid
- xtext->avoid_trans = FALSE;
-
- widget->allocation = *allocation;
-- if (GTK_WIDGET_REALIZED (widget))
-+ if (gtk_widget_get_realized (GTK_WIDGET (widget)))
- {
- xtext->buffer->window_width = allocation->width;
- xtext->buffer->window_height = allocation->height;
-@@ -4113,7 +4113,7 @@ gtk_xtext_set_palette (GtkXText * xtext,
- xtext->palette[i] = palette[i].pixel;
- }
-
-- if (GTK_WIDGET_REALIZED (xtext))
-+ if (gtk_widget_get_realized (GTK_WIDGET (xtext)))
- {
- xtext_set_fg (xtext, xtext->fgc, XTEXT_FG);
- xtext_set_bg (xtext, xtext->fgc, XTEXT_BG);
-@@ -4211,7 +4211,7 @@ gtk_xtext_set_font (GtkXText *xtext, cha
-
- gtk_xtext_fix_indent (xtext->buffer);
-
-- if (GTK_WIDGET_REALIZED (xtext))
-+ if (gtk_widget_get_realized (GTK_WIDGET (xtext)))
- gtk_xtext_recalc_widths (xtext->buffer, TRUE);
-
- return TRUE;
-@@ -4248,7 +4248,7 @@ gtk_xtext_set_background (GtkXText * xte
- if (trans)
- {
- xtext->shaded = shaded;
-- if (GTK_WIDGET_REALIZED (xtext))
-+ if (gtk_widget_get_realized (GTK_WIDGET (xtext)))
- gtk_xtext_load_trans (xtext);
- return;
- }
-@@ -4260,14 +4260,14 @@ gtk_xtext_set_background (GtkXText * xte
- if (pixmap != 0)
- {
- g_object_ref (pixmap);
-- if (GTK_WIDGET_REALIZED (xtext))
-+ if (gtk_widget_get_realized (GTK_WIDGET (xtext)))
- {
- gdk_gc_set_tile (xtext->bgc, pixmap);
- gdk_gc_set_ts_origin (xtext->bgc, 0, 0);
- xtext->ts_x = xtext->ts_y = 0;
- gdk_gc_set_fill (xtext->bgc, GDK_TILED);
- }
-- } else if (GTK_WIDGET_REALIZED (xtext))
-+ } else if (gtk_widget_get_realized (GTK_WIDGET (xtext)))
- {
- g_object_unref (xtext->bgc);
- val.subwindow_mode = GDK_INCLUDE_INFERIORS;
-@@ -4516,7 +4516,7 @@ gtk_xtext_render_page (GtkXText * xtext)
- int subline;
- int startline = xtext->adj->value;
-
-- if(!GTK_WIDGET_REALIZED(xtext))
-+ if(!gtk_widget_get_realized (GTK_WIDGET (xtext)))
- return;
-
- if (xtext->buffer->indent < MARGIN)
-@@ -4636,7 +4636,7 @@ gtk_xtext_render_page (GtkXText * xtext)
- void
- gtk_xtext_refresh (GtkXText * xtext, int do_trans)
- {
-- if (GTK_WIDGET_REALIZED (GTK_WIDGET (xtext)))
-+ if (gtk_widget_get_realized (GTK_WIDGET (xtext)))
- {
- #if defined(USE_XLIB) || defined(WIN32)
- if (xtext->transparent && do_trans)
-@@ -5204,7 +5204,7 @@ gtk_xtext_buffer_show (GtkXText *xtext,
- xtext->io_tag = 0;
- }
-
-- if (!GTK_WIDGET_REALIZED (GTK_WIDGET (xtext)))
-+ if (!gtk_widget_get_realized (GTK_WIDGET (xtext)))
- gtk_widget_realize (GTK_WIDGET (xtext));
-
- gdk_drawable_get_size (GTK_WIDGET (xtext)->window, &w, &h);
diff --git a/extra/xchat-gnome/xchat-gnome-0.26.1-deprecated-symbol.patch b/extra/xchat-gnome/xchat-gnome-0.26.1-deprecated-symbol.patch
deleted file mode 100644
index 5bf1e4ef5..000000000
--- a/extra/xchat-gnome/xchat-gnome-0.26.1-deprecated-symbol.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From 8d35b36baa8204b68c9520ec92327e34c1d7c580 Mon Sep 17 00:00:00 2001
-From: Ritesh Khadgaray <khadgaray@gmail.com>
-Date: Sun, 04 Jul 2010 09:52:07 +0000
-Subject: remove deprecated GTK+ symbols, GTK_WIDGET_SET_FLAGS.
-
----
-diff --git a/src/fe-gnome/xtext.c b/src/fe-gnome/xtext.c
-index 92562a3..51503f8 100644
---- a/src/fe-gnome/xtext.c
-+++ b/src/fe-gnome/xtext.c
-@@ -963,7 +963,7 @@ gtk_xtext_realize (GtkWidget * widget)
- GdkColor col;
- GdkColormap *cmap;
-
-- GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
-+ gtk_widget_set_realized (widget, TRUE);
- xtext = GTK_XTEXT (widget);
-
- attributes.x = widget->allocation.x;
---
-cgit v0.8.3.1
-
diff --git a/extra/xchat-gnome/xchat-gnome.install b/extra/xchat-gnome/xchat-gnome.install
deleted file mode 100644
index b0816ece3..000000000
--- a/extra/xchat-gnome/xchat-gnome.install
+++ /dev/null
@@ -1,24 +0,0 @@
-pkgname=xchat-gnome
-
-post_install() {
- usr/sbin/gconfpkg --install ${pkgname}
- gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
- update-desktop-database -q
-}
-
-pre_upgrade() {
- pre_remove $1
-}
-
-post_upgrade() {
- post_install $1
-}
-
-pre_remove() {
- usr/sbin/gconfpkg --uninstall ${pkgname}
-}
-
-post_remove() {
- gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
- update-desktop-database -q
-}
diff --git a/extra/xscreensaver/ChangeLog b/extra/xscreensaver/ChangeLog
deleted file mode 100644
index ea08818fc..000000000
--- a/extra/xscreensaver/ChangeLog
+++ /dev/null
@@ -1,46 +0,0 @@
-2010-09-26 Eric Belanger <eric@archlinux.org>
-
- * xscreensaver 5.12-1
- * Upstream update
- * Added libxxf86vm depends
-
-2010-05-17 Eric Belanger <eric@archlinux.org>
-
- * xscreensaver 5.11-1
- * Upstream update
-
-2009-10-17 Eric Belanger <eric@archlinux.org>
-
- * xscreensaver 5.10-2
- * Added support for electricsheep (close FS#16400)
-
-2009-09-09 Eric Belanger <eric@archlinux.org>
-
- * xscreensaver 5.10-1
- * Upstream update
-
-2009-09-03 Eric Belanger <eric@archlinux.org>
-
- * xscreensaver 5.09-1
- * Upstream update
-
-2009-01-02 Eric Belanger <eric@archlinux.org>
-
- * xscreensaver 5.08-1
- * Upstream update
-
-2008-08-11 Eric Belanger <eric@archlinux.org>
-
- * xscreensaver 5.07-1
- * Upstream update
-
-2008-07-18 Eric Belanger <eric@archlinux.org>
-
- * xscreensaver 5.06-1
- * Upstream update
-
-2008-03-02 Eric Belanger <eric@archlinux.org>
-
- * xscreensaver 5.05-1
- * Upstream update
- * FHS man pages