diff options
Diffstat (limited to 'community')
-rw-r--r-- | community/blueman/PulsePatch.patch | 11 | ||||
-rw-r--r-- | community/cpupower/PKGBUILD | 43 | ||||
-rw-r--r-- | community/cpupower/conf | 14 | ||||
-rw-r--r-- | community/cpupower/rc | 31 | ||||
-rw-r--r-- | community/dev86/ChangeLog | 3 | ||||
-rw-r--r-- | community/dev86/PKGBUILD | 42 | ||||
-rw-r--r-- | community/dev86/dev86-pic.patch | 20 | ||||
-rw-r--r-- | community/diacanvas/ChangeLog | 3 | ||||
-rw-r--r-- | community/diacanvas/PKGBUILD | 25 | ||||
-rw-r--r-- | community/diacanvas/override-fix.patch | 59 | ||||
-rw-r--r-- | community/ghemical/ghemical.diff | 11 | ||||
-rw-r--r-- | community/gnunet-setup/PKGBUILD | 26 | ||||
-rw-r--r-- | community/hula/PKGBUILD | 40 | ||||
-rw-r--r-- | community/hula/build-fix.patch | 52 | ||||
-rw-r--r-- | community/hula/hula-script | 39 | ||||
-rw-r--r-- | community/hula/hula.install | 24 | ||||
-rw-r--r-- | community/hula/hula.sh | 3 | ||||
-rw-r--r-- | community/libghemical/sasaeval.diff | 21 | ||||
-rw-r--r-- | community/perf/PKGBUILD | 29 | ||||
-rw-r--r-- | community/sslh/conf.sslh | 3 | ||||
-rw-r--r-- | community/sslh/rc.sslh | 33 | ||||
-rw-r--r-- | community/tremulous/tremded.launcher | 10 | ||||
-rw-r--r-- | community/tremulous/tremulous.launcher | 10 |
23 files changed, 0 insertions, 552 deletions
diff --git a/community/blueman/PulsePatch.patch b/community/blueman/PulsePatch.patch deleted file mode 100644 index 4635ff983..000000000 --- a/community/blueman/PulsePatch.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- blueman-1.21/blueman/main/PulseAudioUtils.py 2009-10-19 14:56:39.000000000 -0500 -+++ blueman-1.21/blueman/main/PulseAudioUtils.py.diff 2009-11-12 12:31:18.430145971 -0600 -@@ -170,7 +170,7 @@ - def wrapper(context, res, data): - if handler: - handler(res) -- pythonapi.Py_DecRef(data) -+ pythonapi.Py_DecRef(py_object(data)) - - cb = pa_context_index_cb_t(wrapper) - pythonapi.Py_IncRef(py_object(cb)) diff --git a/community/cpupower/PKGBUILD b/community/cpupower/PKGBUILD deleted file mode 100644 index f336126b8..000000000 --- a/community/cpupower/PKGBUILD +++ /dev/null @@ -1,43 +0,0 @@ -# $Id: PKGBUILD 59600 2011-11-28 20:02:34Z seblu $ -# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net> - -pkgname=cpupower -pkgver=3.1.3 -pkgrel=1 -pkgdesc="Linux kernel power tool" -license=('GPL2') -arch=('i686' 'x86_64') -url='http://www.kernel.org' -backup=('etc/conf.d/cpupower') -options=(!strip !buildflags) -depends=('pciutils') -conflicts=('cpufrequtils') -provides=("cpufrequtils=$pkgver") -source=( - "http://ftp.kernel.org/pub/linux/kernel/v3.0/linux-$pkgver.tar.xz" - 'rc' - 'conf' -) -md5sums=('d15080e5be9c05e6981320232ca68e3f' - 'd8b119eff7dc1a2d655eb71a47fa6215' - '218fd36a7957d3170ed8bd1a0be1f62f') - -build() { - cd linux-$pkgver/tools/power/cpupower - make -} - -package() { - cd linux-$pkgver/tools/power/cpupower - make \ - DESTDIR="$pkgdir" \ - INSTALL='/bin/install -c' \ - mandir='/usr/share/man' \ - docdir='/usr/share/doc/cpupower' \ - install install-man - # install rc.d script - install -D -m 755 "$srcdir/rc" "$pkgdir/etc/rc.d/cpupower" - install -D -m 644 "$srcdir/conf" "$pkgdir/etc/conf.d/cpupower" -} - -# vim:set ts=2 sw=2 ft=sh et: diff --git a/community/cpupower/conf b/community/cpupower/conf deleted file mode 100644 index 0f56836b1..000000000 --- a/community/cpupower/conf +++ /dev/null @@ -1,14 +0,0 @@ -# valid governors: -# ondemand, performance, powersave, -# conservative, userspace -#governor="ondemand" - -# limit frequency range (optional) -# valid suffixes: Hz, kHz (default), MHz, GHz, THz -#min_freq="2.25GHz" -#max_freq="3GHz" - -# use freq to set up the exact cpu frequency using it with userspace governor -#freq= - -# vim:set ts=2 sw=2 ft=sh et: diff --git a/community/cpupower/rc b/community/cpupower/rc deleted file mode 100644 index 812637b61..000000000 --- a/community/cpupower/rc +++ /dev/null @@ -1,31 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -[[ -f /etc/conf.d/cpupower ]] && . /etc/conf.d/cpupower - -case "$1" in - start|restart) - stat_busy "Setting cpupower rules" - - declare params='' - if [[ "$governor" ]]; then - params="-g $governor " - params+="${min_freq:+-d $min_freq} " - params+="${max_freq:+-u $max_freq} " - params+="${freq:+-f $freq} " - cpupower frequency-set $params >/dev/null || { stat_fail; exit 1; } - stat_done - else - stat_append ': Invalid configuration' - stat_fail - fi - ;; - *) - echo "usage: $0 {start|restart}" -esac - -true - -# vim:set ts=2 sw=2 ft=sh et: diff --git a/community/dev86/ChangeLog b/community/dev86/ChangeLog deleted file mode 100644 index 79ed3b287..000000000 --- a/community/dev86/ChangeLog +++ /dev/null @@ -1,3 +0,0 @@ -2008-01-21 JJDaNiMoTh <jjdanimoth.aur@gmail.com> - - * PKGBUILD: moved man pages to /usr/share diff --git a/community/dev86/PKGBUILD b/community/dev86/PKGBUILD deleted file mode 100644 index 28d31b13e..000000000 --- a/community/dev86/PKGBUILD +++ /dev/null @@ -1,42 +0,0 @@ -# $Id: PKGBUILD 44944 2011-04-13 08:59:01Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Maintainer: Alessio 'mOLOk' Bolognino <themolok@gmail.com> -# Contributor: Suat SARIALP <muhendis.suat@gmail.com> - -pkgname=dev86 -pkgver=0.16.18 -pkgrel=1 -pkgdesc="Simple C compiler to generate 8086 code" -arch=('i686' 'x86_64') -#url="http://homepage.ntlworld.com/robert.debath/dev86" -url="http://www.debath.co.uk/dev86/" -license=(GPL) -makedepends=('bin86') -options=('!libtool' '!strip' '!makeflags') -source=(http://www.debath.co.uk/dev86/Dev86src-$pkgver.tar.gz -# http://homepage.ntlworld.com/robert.debath/dev86/Dev86src-$pkgver.tar.gz - dev86-pic.patch) -md5sums=('f2e06b547397383b2b2650b9c4fd9bab' - '1b750c5561a4bde5f83f65e5827feb73') - -build() { - cd $srcdir/$pkgname-$pkgver - patch -Np0 -i $srcdir/dev86-pic.patch - if [ "${CARCH}" = "x86_64" ]; then - # x86_64 fix - sed -i.orig -e 's,alt-libs elksemu,alt-libs,' \ - -e 's,install-lib install-emu,install-lib,' \ - $srcdir/$pkgname-$pkgver/makefile.in - fi - - # use our CFLAGS - sed -i -e "s/-O2 -g/${CFLAGS}/" makefile.in - - make PREFIX=/usr DIST="$pkgdir" || return 1 - make install-all DIST="$pkgdir" - mkdir -p $pkgdir/usr/share - mv $pkgdir/usr/man $pkgdir/usr/share - # remove all the stuff supplied by bin86 - rm $pkgdir/usr/bin/{as,ld,nm,objdump,size}86 - rm $pkgdir/usr/share/man/man1/{as,ld}86.1 -} diff --git a/community/dev86/dev86-pic.patch b/community/dev86/dev86-pic.patch deleted file mode 100644 index 439c2648b..000000000 --- a/community/dev86/dev86-pic.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- elksemu/elks.c.orig 2005-11-04 01:35:37.000000000 +0100 -+++ elksemu/elks.c 2005-11-04 01:45:28.000000000 +0100 -@@ -129,8 +129,17 @@ - static inline int vm86_mine(struct vm86_struct* v86) - { - int __res; -+#ifndef __PIC__ - __asm__ __volatile__("int $0x80\n" - :"=a" (__res):"a" ((int)OLD_SYS_vm86), "b" ((int)v86)); -+#else -+ __asm__ __volatile__( -+ "movl %%ebx,%%ecx\n\t" -+ "movl %2,%%ebx\n\t" -+ "int $0x80\n\t" -+ "movl %%ecx,%%ebx\n\t" -+ :"=a" (__res):"a" ((int)OLD_SYS_vm86), "r" ((int)v86) : "ecx"); -+#endif - return __res; - } - #endif diff --git a/community/diacanvas/ChangeLog b/community/diacanvas/ChangeLog deleted file mode 100644 index 914eb7af0..000000000 --- a/community/diacanvas/ChangeLog +++ /dev/null @@ -1,3 +0,0 @@ -2007-06-27 tardo <tardo@nagi-fanboi.net> -* Built for x86_64 -* Added override fix patch diff --git a/community/diacanvas/PKGBUILD b/community/diacanvas/PKGBUILD deleted file mode 100644 index 06b34d4e1..000000000 --- a/community/diacanvas/PKGBUILD +++ /dev/null @@ -1,25 +0,0 @@ -# $Id: PKGBUILD 29281 2010-10-12 16:17:20Z foutrelis $ -# Contributor: Andrea Scarpino <bash.lnx@gmail.com> -# Contributor: William Rea <sillywilly@gmail.com> - -pkgname=diacanvas -pkgver=0.15.4 -pkgrel=6 -pkgdesc="Library for drawing diagrams" -arch=('i686' 'x86_64') -url="http://sourceforge.net/projects/diacanvas" -license=('LGPL') -depends=('libgnomecanvas' 'libgnomeprint' 'gnome-python') -makedepends=('libgnomeprintui') -options=('!libtool') -source=(http://downloads.sourceforge.net/$pkgname/${pkgname}2_$pkgver.tar.gz - 'override-fix.patch') -md5sums=('2fc8a3447eb92636a7c73e240431e00a' '02c2f6cb7e1dfa43555eb1f5ce0fd0cd') - -build() { - cd "$srcdir/${pkgname}2-$pkgver" - patch -Np1 -i ../override-fix.patch - ./configure --prefix=/usr --enable-python=yes - make - make DESTDIR="$pkgdir" install -} diff --git a/community/diacanvas/override-fix.patch b/community/diacanvas/override-fix.patch deleted file mode 100644 index afb0810b9..000000000 --- a/community/diacanvas/override-fix.patch +++ /dev/null @@ -1,59 +0,0 @@ -diff -Naur diacanvas2-0.14.4.orig/python/diacanvas.override diacanvas2-0.14.4.new/python/diacanvas.override ---- diacanvas2-0.14.4.orig/python/diacanvas.override 2004-10-26 03:54:46.000000000 -0400 -+++ diacanvas2-0.14.4.new/python/diacanvas.override 2007-06-27 13:13:31.000000000 -0400 -@@ -182,55 +182,6 @@ - return create_canvas_item (self, args, kwargs, DIA_TYPE_CANVAS_TEXT); - } - %% --override dia_canvas_item_new kwargs --static int --_wrap_dia_canvas_item_new (PyGObject *self, PyObject *args, PyObject *kwargs) --{ -- return create_canvas_item (self, args, kwargs, DIA_TYPE_CANVAS_ITEM); --} --%% --override dia_canvas_group_new kwargs --static int --_wrap_dia_canvas_group_new (PyGObject *self, PyObject *args, PyObject *kwargs) --{ -- return create_canvas_item (self, args, kwargs, DIA_TYPE_CANVAS_GROUP); --} --%% --override dia_canvas_element_new kwargs --static int --_wrap_dia_canvas_element_new (PyGObject *self, PyObject *args, PyObject *kwargs) --{ -- return create_canvas_item (self, args, kwargs, DIA_TYPE_CANVAS_ELEMENT); --} --%% --override dia_canvas_line_new kwargs --static int --_wrap_dia_canvas_line_new (PyGObject *self, PyObject *args, PyObject *kwargs) --{ -- return create_canvas_item (self, args, kwargs, DIA_TYPE_CANVAS_LINE); --} --%% --override dia_canvas_box_new kwargs --static int --_wrap_dia_canvas_box_new (PyGObject *self, PyObject *args, PyObject *kwargs) --{ -- return create_canvas_item (self, args, kwargs, DIA_TYPE_CANVAS_BOX); --} --%% --override dia_canvas_image_new kwargs --static int --_wrap_dia_canvas_image_new (PyGObject *self, PyObject *args, PyObject *kwargs) --{ -- return create_canvas_item (self, args, kwargs, DIA_TYPE_CANVAS_IMAGE); --} --%% --override dia_canvas_text_new kwargs --static int --_wrap_dia_canvas_text_new (PyGObject *self, PyObject *args, PyObject *kwargs) --{ -- return create_canvas_item (self, args, kwargs, DIA_TYPE_CANVAS_TEXT); --} --%% - override dia_canvas_get_pango_layout noargs - static PyObject * - _wrap_dia_canvas_get_pango_layout(PyGObject *self) diff --git a/community/ghemical/ghemical.diff b/community/ghemical/ghemical.diff deleted file mode 100644 index a52d1a6b7..000000000 --- a/community/ghemical/ghemical.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- a/src/pangofont_wcl.cpp 2008-07-31 14:00:05.000000000 +0530 -+++ b/src/pangofont_wcl.cpp 2008-08-01 09:53:09.000000000 +0530 -@@ -19,6 +19,8 @@ - /*################################################################################################*/ - - #include "pangofont_wcl.h" -+#include <stdlib.h> -+#include <string.h> - - #include <gtk/gtkgl.h> - diff --git a/community/gnunet-setup/PKGBUILD b/community/gnunet-setup/PKGBUILD deleted file mode 100644 index c7b24d039..000000000 --- a/community/gnunet-setup/PKGBUILD +++ /dev/null @@ -1,26 +0,0 @@ -# $Id: PKGBUILD 59037 2011-11-20 20:44:42Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> - -pkgname=gnunet-setup -pkgver=0.9.0pre2 -pkgrel=1 -pkgdesc="setup tool for gnunet" -arch=(i686 x86_64) -url="http://gnunet.org/" -license=('GPL') -depends=('gnunet') -#source=(ftp://ftp.gnu.org/gnu/gnunet/gnunet-setup-$pkgver.tar.gz) -source=(http://ftp.archlinux.org/other/community/gnunet-setup/gnunet-setup-$pkgver.tar.gz) -md5sums=('b9c768fb2278b19561654c261f98062f') - -build() { - cd "$srcdir/$pkgname-$pkgver" - sed -i 's#gladeui-1#gladeui-2#' configure - ./configure --prefix=/usr - make -} - -package() { - cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install -} diff --git a/community/hula/PKGBUILD b/community/hula/PKGBUILD deleted file mode 100644 index 3b2d1ea6c..000000000 --- a/community/hula/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 14533 2010-04-04 21:12:01Z spupykin $ -# Maintainer: William Rea <sillywilly@gmail.com> -# Contributor: Benjamin Andresen <benny@klapmuetz.org> -# Contributor: eliott <eliott@cactuswax.net> - -pkgname=hula -pkgver=r2661 -pkgrel=3 -pkgdesc="A calendar and mail server" -arch=('i686' 'x86_64') -url="http://developer.novell.com/wiki/index.php/Hula" -options=('!libtool') -depends=('popt' 'libldap' 'mono' 'perl') -install=$pkgname.install -license=('GPL') -source=(http://archlinux-stuff.googlecode.com/files/hula-$pkgver.tar.gz \ - hula-script \ - build-fix.patch) -md5sums=('4a50509873ea6bfdeb8daf7540d15d85' - '6cad58336400ee5d157a1ee4ae150bfd' - '004c478d9ea9b781b84f67c68f7d89d2') - -build() { - export MONO_SHARED_DIR=$startdir/src/.wabi - mkdir -p $MONO_SHARED_DIR - - cd $startdir/src/$pkgname - - sed -i '/CONNECTION_TIMEOUT/s/$/ \n#define VERBOSE_SPAMASSASSIN/' src/agents/antispam/antispam.h - patch -p1 <$srcdir/build-fix.patch - - unset LDFLAGS - - ./autogen.sh --prefix=/usr - make || return 1 - make DESTDIR=$startdir/pkg install || return 1 - - install -D -m755 ../../hula-script $startdir/pkg/etc/rc.d/hula - rm -r $MONO_SHARED_DIR -} diff --git a/community/hula/build-fix.patch b/community/hula/build-fix.patch deleted file mode 100644 index 850157315..000000000 --- a/community/hula/build-fix.patch +++ /dev/null @@ -1,52 +0,0 @@ -diff -wbBur hula.org/autogen.sh hula/autogen.sh ---- hula.org/autogen.sh 2009-02-27 10:55:05.000000000 +0000 -+++ hula/autogen.sh 2009-02-27 11:09:41.000000000 +0000 -@@ -7,7 +7,7 @@ - - # default version requirements ... - REQUIRED_AUTOCONF_VERSION=${REQUIRED_AUTOCONF_VERSION:-2.53} --REQUIRED_AUTOMAKE_VERSION=${REQUIRED_AUTOMAKE_VERSION:-1.6} -+REQUIRED_AUTOMAKE_VERSION=${REQUIRED_AUTOMAKE_VERSION:-1.10} - REQUIRED_LIBTOOL_VERSION=${REQUIRED_LIBTOOL_VERSION:-1.4.3} - REQUIRED_GETTEXT_VERSION=${REQUIRED_GETTEXT_VERSION:-0.10.40} - REQUIRED_GLIB_GETTEXT_VERSION=${REQUIRED_GLIB_GETTEXT_VERSION:-2.2.0} -@@ -276,14 +276,7 @@ - "http://ftp.gnu.org/pub/gnu/autoconf/autoconf-$REQUIRED_AUTOCONF_VERSION.tar.gz" || DIE=1 - AUTOHEADER=`echo $AUTOCONF | sed s/autoconf/autoheader/` - --case $REQUIRED_AUTOMAKE_VERSION in -- 1.4*) automake_progs="automake-1.4" ;; -- 1.5*) automake_progs="automake-1.5 automake-1.6 automake-1.7 automake-1.8 automake-1.9" ;; -- 1.6*) automake_progs="automake-1.6 automake-1.7 automake-1.8 automake-1.9 automake19" ;; -- 1.7*) automake_progs="automake-1.7 automake-1.8 automake-1.9" ;; -- 1.8*) automake_progs="automake-1.8 automake-1.9" ;; -- 1.9*) automake_progs="automake-1.9" ;; --esac -+automake_progs="automake" - version_check automake AUTOMAKE "$automake_progs" $REQUIRED_AUTOMAKE_VERSION \ - "http://ftp.gnu.org/pub/gnu/automake/automake-$REQUIRED_AUTOMAKE_VERSION.tar.gz" || DIE=1 - ACLOCAL=`echo $AUTOMAKE | sed s/automake/aclocal/` -diff -wbBur hula.org/src/libs/hula-sharp/Hula.Dav/AddressbookQueryReport.cs hula/src/libs/hula-sharp/Hula.Dav/AddressbookQueryReport.cs ---- hula.org/src/libs/hula-sharp/Hula.Dav/AddressbookQueryReport.cs 2009-02-27 10:52:29.000000000 +0000 -+++ hula/src/libs/hula-sharp/Hula.Dav/AddressbookQueryReport.cs 2009-02-27 11:21:17.000000000 +0000 -@@ -42,7 +42,7 @@ - break; - case "text-match" : - // FIXME: Don't do caseless param filters for now. -- TermQuery q = new TermQuery (new Term("vcard." + prop + ".param", + name + "=" + child.InnerText)); -+ TermQuery q = new TermQuery (new Term("vcard." + prop + ".param", name + "=" + child.InnerText)); - - query.Add(q, true, false); - break; -diff -wbBur hula.org/src/libs/hula-sharp/Hula.Dav/CalQueryReport.cs hula/src/libs/hula-sharp/Hula.Dav/CalQueryReport.cs ---- hula.org/src/libs/hula-sharp/Hula.Dav/CalQueryReport.cs 2009-02-27 10:52:29.000000000 +0000 -+++ hula/src/libs/hula-sharp/Hula.Dav/CalQueryReport.cs 2009-02-27 11:21:45.000000000 +0000 -@@ -59,7 +59,7 @@ - break; - case "text-match" : - // FIXME: Don't do caseless param filters for now. -- TermQuery q = new TermQuery (new Term("ical." + prop + ".param", + name + "=" + child.InnerText)); -+ TermQuery q = new TermQuery (new Term("ical." + prop + ".param", name + "=" + child.InnerText)); - - query.Add(q, true, false); - break; diff --git a/community/hula/hula-script b/community/hula/hula-script deleted file mode 100644 index ccfd52aba..000000000 --- a/community/hula/hula-script +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions - -DAEMON_NAME="hulamanager" -DAEMON_PATH="/usr/sbin/${DAEMON_NAME}" - -PID=`pidof -o %PPID ${DAEMON_NAME}` -case "$1" in - start) - stat_busy "Starting ${DAEMON_NAME}" - [ -z "$PID" ] && ${DAEMON_PATH} -d - if [ $? -gt 0 ]; then - stat_fail - else - add_daemon ${DAEMON_NAME} - stat_done - fi - ;; - stop) - stat_busy "Stopping ${DAEMON_NAME}" - [ ! -z "$PID" ] && ${DAEMON_PATH} --stop &>/dev/null - if [ $? -gt 0 ]; then - stat_fail - else - rm_daemon ${DAEMON_NAME} - stat_done - fi - ;; - restart) - $0 stop - sleep 3 - $0 start - ;; - *) - echo "usage: $0 {start|stop|restart}" -esac -exit 0 diff --git a/community/hula/hula.install b/community/hula/hula.install deleted file mode 100644 index eaca1d08e..000000000 --- a/community/hula/hula.install +++ /dev/null @@ -1,24 +0,0 @@ -post_install() { -/bin/cat <<THEEND -cd to /opt/hula/sbin/ and run: - - $ ./hulasetup --domain=your.domain.com --dns=ip.of.dns.server - -If you don't specify the --domain argument, then it will default to localhost.localdomain as your domain. - -Specifying the IP address of your DNS server is useful; hula doesn't pick it up from /etc/resolv.conf. You need to set it in order to send mail out. - -If you already have servers running for services that hula provides, you can change the port hula will use for them with hulamanager too. For example, if you already have apache running on port 80, you can make the hula webserver use port 8080: - - $ ./hulasetup --http=8080 - -Parameters for other services are --https, --ldap, --webadmin and --webadmins. The smtp port can't be changed. - -THEEND -} - -post_remove() { - # too many files and dirs created by setup. just rm it all - rm -rf /opt/hula -} - diff --git a/community/hula/hula.sh b/community/hula/hula.sh deleted file mode 100644 index 4a6b8825f..000000000 --- a/community/hula/hula.sh +++ /dev/null @@ -1,3 +0,0 @@ -export HULADIR=/opt/hula -export PATH=$PATH:$HULADIR/bin -export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:$HULADIR/lib/pkgconfig diff --git a/community/libghemical/sasaeval.diff b/community/libghemical/sasaeval.diff deleted file mode 100644 index fe719f8d9..000000000 --- a/community/libghemical/sasaeval.diff +++ /dev/null @@ -1,21 +0,0 @@ ---- a/src/sasaeval.cpp 2008-08-01 09:39:01.000000000 +0530 -+++ b/src/sasaeval.cpp 2008-08-01 09:40:33.000000000 +0530 -@@ -21,6 +21,8 @@ - #include "sasaeval.h" - - #include "engine.h" -+#include <algorithm> -+using namespace std; - - // the surface area code apparently contains some bugs, since it sometimes - // crashes. another possibility is that the surface area math contains some ---- a/src/sasaeval.h 2008-07-31 00:40:08.000000000 +0530 -+++ b/src/sasaeval.h 2008-08-01 09:40:04.000000000 +0530 -@@ -24,6 +24,7 @@ - #define SASAEVAL_H - - #include "typedef.h" -+#include <stdlib.h> - - struct cg_nbt3_nl; // SASA neighbor list. - diff --git a/community/perf/PKGBUILD b/community/perf/PKGBUILD deleted file mode 100644 index 67c6b6a5c..000000000 --- a/community/perf/PKGBUILD +++ /dev/null @@ -1,29 +0,0 @@ -# $Id$ -# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net> - -pkgname=perf -pkgver=3.1.3 -pkgrel=1 -pkgdesc="Linux kernel $pkgver performance tool" -license=('GPL2') -arch=('i686' 'x86_64') -url='http://www.kernel.org' -options=(!strip) -depends=('python2' 'libnewt' 'elfutils') -makedepends=('asciidoc' 'xmlto') -source=("http://ftp.kernel.org/pub/linux/kernel/v3.0/linux-$pkgver.tar.xz") -md5sums=('d15080e5be9c05e6981320232ca68e3f') - -build() { - cd linux-$pkgver/tools/perf - make PYTHON=python2 DESTDIR="${pkgdir}/usr" perfexecdir="lib/$pkgname" PERF_VERSION=$pkgver \ - all man -} - -package() { - cd linux-${pkgver}/tools/perf - make PYTHON=python2 DESTDIR="${pkgdir}/usr" perfexecdir="lib/$pkgname" PERF_VERSION=$pkgver \ - install install-man -} - -# vim:set ts=2 sw=2 ft=sh et: diff --git a/community/sslh/conf.sslh b/community/sslh/conf.sslh deleted file mode 100644 index e49283da2..000000000 --- a/community/sslh/conf.sslh +++ /dev/null @@ -1,3 +0,0 @@ -# vim:set ts=2 sw=2 ft=sh noet: - -SSLH_OPTIONS='-p 192.168.0.1:443 --ssh 127.0.0.1:22 --ssl 127.0.0.1:443 -u nobody -P /var/lock/sslh.lock' diff --git a/community/sslh/rc.sslh b/community/sslh/rc.sslh deleted file mode 100644 index 57912922c..000000000 --- a/community/sslh/rc.sslh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -. /etc/rc.conf -. /etc/rc.d/functions -. /etc/conf.d/sslh - - -PID=$(pidof -o %PPID /usr/sbin/sslh) - -case "$1" in - start) - stat_busy "Starting sslh daemon" - [[ ! $PID ]] && /usr/sbin/sslh ${SSLH_OPTIONS} && add_daemon sslh && stat_done && exit 0 - stat_fail - ;; - stop) - stat_busy "Stopping sslh daemon" - [[ $PID ]] && kill $PID &> /dev/null && rm_daemon sslh && stat_done && exit 0 - stat_fail - ;; - restart) - $0 stop - $0 start - exit 0 - ;; - *) - echo "usage: ${0##*/} {start|stop|restart}" >&2 - ;; -esac - -exit 1 - -# vim:set ts=2 sw=2 ft=sh noet: diff --git a/community/tremulous/tremded.launcher b/community/tremulous/tremded.launcher deleted file mode 100644 index 630fb5886..000000000 --- a/community/tremulous/tremded.launcher +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -case `uname -m` in - i686) arch=x86 ;; - x86_64) arch=x86_64 ;; - *) exit 1 ;; -esac - -cd "/opt/tremulous" -./tremded.$arch "$@" -exit $? diff --git a/community/tremulous/tremulous.launcher b/community/tremulous/tremulous.launcher deleted file mode 100644 index 1bba6f848..000000000 --- a/community/tremulous/tremulous.launcher +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -case `uname -m` in - i686) arch=x86 ;; - x86_64) arch=x86_64 ;; - *) exit 1 ;; -esac - -cd "/opt/tremulous" -./tremulous.$arch "$@" -exit $? |