From 5abba8ccfedfb13f07a34eb4b6afbe4f30a8f767 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 7 Apr 2013 00:54:45 -0700 Subject: Sun Apr 7 00:54:38 PDT 2013 --- community/arpwatch/ChangeLog | 3 -- community/arpwatch/LICENSE | 18 +++++++ community/arpwatch/PKGBUILD | 57 +++++++++++++------- community/arpwatch/arpwatch.service | 11 ++++ community/avrdude/PKGBUILD | 6 +-- community/blueman/PKGBUILD | 24 ++++----- community/cairo-dock-plugins/PKGBUILD | 52 ++++++++---------- community/cairo-dock/PKGBUILD | 23 ++++---- community/duplicity/PKGBUILD | 18 +++++-- community/intellij-idea-libs/PKGBUILD | 8 +-- community/lksctp-tools/PKGBUILD | 12 ++--- community/nodejs/PKGBUILD | 6 +-- community/partclone/PKGBUILD | 14 ++--- community/pidgin-libnotify/PKGBUILD | 8 +-- ...1-doc-fix-makeinfo-errors-and-one-warning.patch | 57 ++++++++++++++++++++ community/quagga/PKGBUILD | 31 ++++++----- community/quagga/babeld.service | 6 ++- community/quagga/bgpd.service | 6 ++- community/quagga/isisd.service | 6 ++- community/quagga/ospf6d.service | 6 ++- community/quagga/ospfd.service | 6 ++- community/quagga/ripd.service | 6 ++- community/quagga/ripngd.service | 6 ++- community/quagga/zebra.service | 8 ++- community/rust/PKGBUILD | 63 ++++++++++++++++++++++ community/rxvt-unicode/PKGBUILD | 10 ++-- community/rxvt-unicode/urxvt-tabbed.desktop | 2 +- community/rxvt-unicode/urxvt.desktop | 2 +- community/rxvt-unicode/urxvtc.desktop | 2 +- community/sigil/PKGBUILD | 4 +- 30 files changed, 338 insertions(+), 143 deletions(-) delete mode 100644 community/arpwatch/ChangeLog create mode 100644 community/arpwatch/LICENSE create mode 100644 community/arpwatch/arpwatch.service create mode 100644 community/quagga/0001-doc-fix-makeinfo-errors-and-one-warning.patch create mode 100644 community/rust/PKGBUILD (limited to 'community') diff --git a/community/arpwatch/ChangeLog b/community/arpwatch/ChangeLog deleted file mode 100644 index d22a5592c..000000000 --- a/community/arpwatch/ChangeLog +++ /dev/null @@ -1,3 +0,0 @@ -2007-07-02 tardo -* Built for x86_64 - diff --git a/community/arpwatch/LICENSE b/community/arpwatch/LICENSE new file mode 100644 index 000000000..be49954d9 --- /dev/null +++ b/community/arpwatch/LICENSE @@ -0,0 +1,18 @@ +Copyright (c) 1992, 1993, 1994, 1995, 1996, 1998, 2000 + The Regents of the University of California. All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that: (1) source code distributions +retain the above copyright notice and this paragraph in its entirety, (2) +distributions including binary code include the above copyright notice and +this paragraph in its entirety in the documentation or other materials +provided with the distribution, and (3) all advertising materials mentioning +features or use of this software display the following acknowledgement: +``This product includes software developed by the University of California, +Lawrence Berkeley Laboratory and its contributors.'' Neither the name of +the University nor the names of its contributors may be used to endorse +or promote products derived from this software without specific prior +written permission. +THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED +WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/community/arpwatch/PKGBUILD b/community/arpwatch/PKGBUILD index 1a81aae7d..79f4bd51d 100644 --- a/community/arpwatch/PKGBUILD +++ b/community/arpwatch/PKGBUILD @@ -1,29 +1,48 @@ -# $Id: PKGBUILD 65045 2012-02-20 02:17:24Z spupykin $ +# $Id: PKGBUILD 87787 2013-04-06 15:38:17Z seblu $ # Maintainer: Sergej Pupykin # Contributor: Sergej Pupykin +# Contributor: Sébastien Luttringer pkgname=arpwatch pkgver=2.1a15 -pkgrel=8 -pkgdesc="arpwatch and arpsnmp network monitoring tools" -arch=(i686 x86_64) -url="ftp://ftp.ee.lbl.gov/" -license=("GPL") -depends=(libpcap) -source=(ftp://ftp.ee.lbl.gov/$pkgname-$pkgver.tar.gz) -md5sums=('cebfeb99c4a7c2a6cee2564770415fe7') - -build() { - cd $srcdir/$pkgname-$pkgver +pkgrel=10 +pkgdesc='Ethernet/FDDI station activity monitor' +arch=('i686' 'x86_64') +url='ftp://ftp.ee.lbl.gov/' +license=('BSD') +depends=('libpcap' 'smtp-forwarder') +source=("ftp://ftp.ee.lbl.gov/$pkgname-$pkgver.tar.gz" + 'LICENSE' + "$pkgname.service") +md5sums=('cebfeb99c4a7c2a6cee2564770415fe7' + '9359518c500562281e76cdb0b2fa9062' + '2324a202222303daa1a41d8abd7a7e4a') +prepare() { + cd $pkgname-$pkgver + # move arp database in /var/lib/arpwatch sed -i 's|ARPDIR = $(prefix)/arpwatch|ARPDIR = /var/lib/arpwatch|' Makefile.in + # binary ownership to root + sed -i 's/-\(o\|g\) bin/-\1 root/g' Makefile.in +} - ./configure --prefix=/usr +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --mandir=/usr/share/man make SENDMAIL=/usr/sbin/sendmail - install -d -m 0755 $pkgdir/usr/sbin - make DESTDIR=$pkgdir install - install -D -m 0644 arpwatch.8 $pkgdir/usr/share/man/man8/arpwatch.8 - install -D -m 0644 arpsnmp.8 $pkgdir/usr/share/man/man8/arpsnmp.8 - install -d -m 0755 $pkgdir/var/lib/arpwatch - touch $pkgdir/var/lib/arpwatch/arp.dat } + +package() { + cd $pkgname-$pkgver + install -d -m 0755 "$pkgdir"/usr/{sbin,share/man} + make DESTDIR="$pkgdir" install install-man + # install ether prefix database + install -Dm644 ethercodes.dat "$pkgdir/var/lib/$pkgname/ethercodes.dat" + cd "$srcdir" + # license + install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + # systemd + install -Dm644 $pkgname.service "$pkgdir/usr/lib/systemd/system/$pkgname@.service" +} + +# vim:set ts=2 sw=2 et: diff --git a/community/arpwatch/arpwatch.service b/community/arpwatch/arpwatch.service new file mode 100644 index 000000000..570f93852 --- /dev/null +++ b/community/arpwatch/arpwatch.service @@ -0,0 +1,11 @@ +[Unit] +Description=Watch ARP on interface %I +After=network.target + +[Service] +Type=forking +ExecStartPre=/usr/bin/touch /var/lib/arpwatch/%I.dat +ExecStart=/usr/sbin/arpwatch -f /var/lib/arpwatch/%I.dat -i %I + +[Install] +WantedBy=multi-user.target diff --git a/community/avrdude/PKGBUILD b/community/avrdude/PKGBUILD index 9d71d347b..7925992d9 100644 --- a/community/avrdude/PKGBUILD +++ b/community/avrdude/PKGBUILD @@ -1,15 +1,15 @@ -# $Id: PKGBUILD 81870 2013-01-02 15:51:02Z jelle $ +# $Id: PKGBUILD 87805 2013-04-06 19:56:39Z jelle $ # Contributor: Corrado Primier # Maintainer: Brad Fanella pkgname=avrdude pkgver=5.11.1 -pkgrel=2 +pkgrel=3 pkgdesc="Download/upload/manipulate the ROM and EEPROM contents of AVR microcontrollers" arch=('i686' 'x86_64') url="http://www.nongnu.org/avrdude/" license=('GPL') -depends=('libusb-compat' 'readline') +depends=('libusb-compat' 'readline' 'libftdi') source=(http://download.savannah.gnu.org/releases/avrdude/${pkgname}-${pkgver}.tar.gz{,.sig}) md5sums=('3a43e288cb32916703b6945e3f260df9' '0c23b005d4090aef4e081476aabc1958') diff --git a/community/blueman/PKGBUILD b/community/blueman/PKGBUILD index 7abc25c16..5029f8157 100644 --- a/community/blueman/PKGBUILD +++ b/community/blueman/PKGBUILD @@ -1,28 +1,26 @@ -# $Id: PKGBUILD 78176 2012-10-17 10:22:59Z allan $ +# $Id: PKGBUILD 87809 2013-04-06 22:04:55Z bgyorgy $ # Maintainer : Ionut Biru pkgname=blueman pkgver=1.23 -pkgrel=5 +pkgrel=6 pkgdesc="GTK+ bluetooth manager" arch=('i686' 'x86_64') license=('GPL') -url="http://blueman-project.org" -depends=('python2-notify' 'bluez' 'python2-dbus' 'gtk2' 'python2-gobject2' 'startup-notification' - 'obex-data-server' 'polkit-gnome' 'xdg-utils' 'hicolor-icon-theme' 'libpulse' - 'notification-daemon') +url="https://launchpad.net/blueman" +depends=('bluez' 'gnome-icon-theme' 'libpulse' 'obex-data-server' 'python2-dbus' + 'python2-notify' 'startup-notification' 'xdg-utils') makedepends=('pyrex' 'intltool') optdepends=('dnsmasq: For creating PAN network' - 'gconf: For gconf configuration support' + 'modemmanager: For modem management service' + 'notification-daemon: For desktop notifications' + 'polkit-gnome: For privileged actions' 'pulseaudio: To use the pulseaudio plugin' - 'notification-daemon: for desktop notifications' - 'libnotify: for desktop notifications' - 'modemmanager: for modem management service' - 'gnome-icon-theme: icon theme') + 'python2-gconf: For gconf configuration support') options=('!libtool') install=$pkgname.install -source=(http://download.tuxfamily.org/blueman/${pkgname}-${pkgver}.tar.gz) +source=(https://launchpad.net/${pkgname}/1.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz) md5sums=('f0bee59589f4c23e35bf08c2ef8acaef') build() { @@ -44,5 +42,5 @@ build() { package() { cd "${srcdir}/${pkgname}-${pkgver}" make DESTDIR="${pkgdir}" install - echo "OnlyShowIn=GNOME;XFCE;" >> ${pkgdir}/etc/xdg/autostart/blueman.desktop + echo "NotShowIn=KDE;" >> ${pkgdir}/etc/xdg/autostart/blueman.desktop } diff --git a/community/cairo-dock-plugins/PKGBUILD b/community/cairo-dock-plugins/PKGBUILD index 3099f6c74..c79d02162 100755 --- a/community/cairo-dock-plugins/PKGBUILD +++ b/community/cairo-dock-plugins/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 87222 2013-03-28 18:48:03Z alucryd $ +# $Id: PKGBUILD 87793 2013-04-06 17:02:52Z alucryd $ # Maintainer: Maxime Gauduin # Contributor: Tofe # Contributor: zhuqin @@ -7,52 +7,43 @@ pkgname=cairo-dock-plugins pkgver=3.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="Plugins for Cairo-Dock" url="https://launchpad.net/cairo-dock" license=('GPL') arch=('i686' 'x86_64') -groups=('cairo-dock') depends=('cairo-dock') -makedepends=('cmake' 'alsa-lib' 'fftw' 'gnome-menus' 'gtk-sharp-2' 'gvfs' 'libetpan' 'libexif' 'libical' 'libpulse' 'libxklavier' 'libxxf86vm' 'libzeitgeist' 'lm_sensors' 'ndesk-dbus-glib' 'python' 'ruby' 'upower' 'vala' 'vte3' 'webkitgtk3') -optdepends=('alsa-lib: Alsa-Mixer applet' - 'gnome-menus: GMenu applet' +makedepends=('cmake' 'alsa-lib' 'fftw' 'gnome-menus' 'gtk-sharp-2' 'gvfs' 'libetpan' 'libexif' 'libical' 'libpulse' 'libxklavier' 'libzeitgeist' 'lm_sensors' 'ndesk-dbus-glib' 'python' 'ruby' 'upower' 'vala' 'vte3' 'webkitgtk3') +optdepends=('alsa-lib: AlsaMixer, Sound Effects applets' 'fftw: Impulse applet' - 'libpulse: Impulse applet' - 'libxklavier: Keyboard-indicator applet' + 'gnome-menus: GMenu applet' + 'gtk-sharp-2: Mono API' + 'gvfs: GVFS integration' 'libetpan: Mail applet' - 'libzeitgeist: Recent-Events applet' + 'libexif: Slider applet' + 'libical: Clock applet' + 'libpulse: Impulse applet' + 'libxklavier: Keyboard Indicator applet' + 'libzeitgeist: Recent Events applet' + 'lm_sensors: System Monitor applet' + 'ndesk-dbus-glib: Mono API' + 'python: Python API' + 'ruby: Ruby API' + 'upower: Logout, PowerManager applets' 'vte3: Terminal applet' - 'webkitgtk3: Weblets applet' - 'libxxf86vm: XGamma applet' - 'gvfs: GVFS integration' - 'lm_sensors: Sensors support' - 'upower: UPower support' - 'libical: iCal support' - 'libexif: exif support' - 'python: Python interface' - 'gtk-sharp-2: Mono interface' - 'ndesk-dbus-glib: Mono interface' - 'ruby: Ruby interface' - 'vala: Vala interface') + 'webkitgtk3: Weblets applet') options=('!libtool') -source=("http://launchpad.net/cairo-dock-plug-ins/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" 'alsa-mixer-applet.patch' 'applet-host-ias.patch') -sha256sums=('e407e1c0d54ae37815726d0f2a66f12ec8263499df99198646bcecccfc688b5c' - 'e474314037fe85dfb9e90c17b18f87936a911699d97fee5470ccd812ff6697c1' - '28be6144e9006f5c166d8f0119de1747ee2caf8e13072177a8d0dab23fd964b3') +source=("http://launchpad.net/cairo-dock-plug-ins/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz") +sha256sums=('e407e1c0d54ae37815726d0f2a66f12ec8263499df99198646bcecccfc688b5c') build() { cd "${srcdir}"/${pkgname}-${pkgver} -# Patch - patch -Np1 -i ../alsa-mixer-applet.patch - patch -Np1 -i ../applet-host-ias.patch - -# Build if [[ -d build ]]; then rm -rf build fi mkdir build && cd build + cmake .. -DCMAKE_INSTALL_PREFIX=/usr make } @@ -60,7 +51,6 @@ build() { package() { cd "${srcdir}"/${pkgname}-${pkgver}/build -# Install make DESTDIR=${pkgdir} install } diff --git a/community/cairo-dock/PKGBUILD b/community/cairo-dock/PKGBUILD index 221a7b11f..5c742b33d 100755 --- a/community/cairo-dock/PKGBUILD +++ b/community/cairo-dock/PKGBUILD @@ -1,43 +1,44 @@ -# $Id: PKGBUILD 87221 2013-03-28 18:43:22Z alucryd $ +# $Id: PKGBUILD 87791 2013-04-06 16:56:43Z alucryd $ # Maintainer: Maxime Gauduin # Contributor: Tofe # Contributor: erm67 pkgname=cairo-dock pkgver=3.2.0 -pkgrel=1 +pkgrel=2 pkgdesc="Light eye-candy fully themable animated dock" arch=('i686' 'x86_64') url="https://launchpad.net/cairo-dock-core" license=('GPL') -groups=('cairo-dock') -depends=('curl' 'dbus-glib' 'gtk3' 'gtkglext' 'librsvg') -makedepends=('cmake' 'curl' 'dbus-glib' 'gtk3' 'gtkglext' 'inputproto' 'librsvg') +depends=('curl' 'dbus-glib' 'gtk3' 'librsvg') +makedepends=('cmake') +optdepends=('cairo-dock-plugins: Plugins for Cairo-Dock') options=('!libtool') source=("http://launchpad.net/${pkgname}-core/3.2/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz" 'gldit-rpath.patch') sha256sums=('69d57dab16e70bb0683ba91f1dfd19a9ee0de0b1642ca6480fef9dacbb9c2fd2' '5a5fbc67aaa210387ef4410701747fe741942c99c4bd84ae771b96a3bdd1c4cc') -build() { +prepare() { cd "${srcdir}"/${pkgname}-${pkgver} -# Patch patch -Np1 -i ../gldit-rpath.patch - sed -i 's|themes3.2|themes|' CMakeLists.txt +} + +build() { + cd "${srcdir}"/${pkgname}-${pkgver} -# Build if [[ -d build ]]; then rm -rf build fi mkdir build && cd build + cmake .. -DCMAKE_INSTALL_PREFIX=/usr make } -package_cairo-dock() { +package() { cd "${srcdir}"/${pkgname}-${pkgver}/build -# Install make DESTDIR="${pkgdir}" install } diff --git a/community/duplicity/PKGBUILD b/community/duplicity/PKGBUILD index dd8e8f3ed..fe50cb4ca 100644 --- a/community/duplicity/PKGBUILD +++ b/community/duplicity/PKGBUILD @@ -1,15 +1,23 @@ -# $Id: PKGBUILD 84281 2013-02-15 14:20:17Z lfleischer $ +# $Id: PKGBUILD 87789 2013-04-06 16:50:31Z bgyorgy $ # Maintainer: Kaiting Chen # Contributor: Aaron Schaefer pkgname=duplicity pkgver=0.6.21 -pkgrel=1 +pkgrel=2 pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync algorithm.' arch=('i686' 'x86_64') url='http://www.nongnu.org/duplicity/' license=('GPL') -depends=('librsync' 'ncftp' 'python2' 'python2-boto' 'python2-gnupginterface' 'python2-paramiko') +depends=('gnupg' 'librsync' 'ncftp' 'python2-paramiko') +optdepends=('lftp: FTPS backend' + 'python2-boto: Amazon S3 backend' + 'python2-gobject: GIO backend' + 'gvfs: GIO backend' + 'python2-gdata: Google Docs backend' + 'python2-httplib2: Ubuntu One backend' + 'python2-oauthlib: Ubuntu One backend' + 'rsync: rsync backend') source=("http://savannah.nongnu.org/download/$pkgname/$pkgname-$pkgver.tar.gz"{,.sig}) md5sums=('4ade1de475e0af64211bb6933b593057' '3521d679ba7dff46653313aa3b3e6855') @@ -19,8 +27,8 @@ build() { # python2 fix for file in $(find . -name '*.py' -print); do - sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file - sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file + sed -i 's_^#!.*/usr/bin/python$_#!/usr/bin/python2_' $file + sed -i 's_^#!.*/usr/bin/env.*python$_#!/usr/bin/env python2_' $file done } diff --git a/community/intellij-idea-libs/PKGBUILD b/community/intellij-idea-libs/PKGBUILD index 0893cf878..f2e0d699c 100644 --- a/community/intellij-idea-libs/PKGBUILD +++ b/community/intellij-idea-libs/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 84499 2013-02-19 13:15:06Z stativ $ +# $Id: PKGBUILD 87801 2013-04-06 19:27:42Z stativ $ # Maintainer: Lukas Jirkovsky pkgname=intellij-idea-libs -pkgver=12.0.4 -_pkgver=123.169 +pkgver=12.1 +_pkgver=129.161 pkgrel=1 pkgdesc="Architecture dependend libraries needed by the Intellij Idea IDE" arch=('i686' 'x86_64') @@ -10,7 +10,7 @@ url="http://www.jetbrains.org/" license=('apache') depends=('glibc') source=(http://download.jetbrains.com/idea/ideaIC-$pkgver.tar.gz) -md5sums=('eb7c86893ad138a9c3bb034dae2dc296') +md5sums=('687ba6aea524099f10605bb50569864d') package() { cd "$srcdir" diff --git a/community/lksctp-tools/PKGBUILD b/community/lksctp-tools/PKGBUILD index 8df17f34f..9bb4bd729 100644 --- a/community/lksctp-tools/PKGBUILD +++ b/community/lksctp-tools/PKGBUILD @@ -1,9 +1,9 @@ # $Id$ -# Maintainer: Sébastien Luttringer +# Maintainer: Sébastien Luttringer # Contributer: Nicolas Martyanoff pkgname=lksctp-tools -pkgver=1.0.13 +pkgver=1.0.14 pkgrel=1 pkgdesc='An implementation of the SCTP protocol' arch=('i686' 'x86_64') @@ -11,15 +11,11 @@ url='http://lksctp.sourceforge.net/' license=('GPL2' 'LGPL2.1') depends=('bash') options=('!libtool') -source=("http://downloads.sourceforge.net/sourceforge/lksctp/$pkgname-$pkgver.tar.gz" - '0001-Modernize-autotools.patch') -md5sums=('96436a1b0d30ae588d0a13f6b646549a' - '84635abc83bcd85ef263160b6f435336') +source=("http://downloads.sourceforge.net/sourceforge/lksctp/$pkgname-$pkgver.tar.gz") +md5sums=('12bc67f9b47ea631328a592ce7a53ca1') build() { cd $pkgname-$pkgver - # fix autotools - patch -p1 -i "$srcdir/0001-Modernize-autotools.patch" ./bootstrap ./configure --prefix=/usr make diff --git a/community/nodejs/PKGBUILD b/community/nodejs/PKGBUILD index db855d9d0..b466757ed 100644 --- a/community/nodejs/PKGBUILD +++ b/community/nodejs/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 87259 2013-03-29 09:42:40Z bpiotrowski $ +# $Id: PKGBUILD 87751 2013-04-06 09:18:35Z bpiotrowski $ # Maintainer: Bartłomiej Piotrowski # Contributor: Thomas Dziedzic < gostrc at gmail > # Contributor: James Campos @@ -8,7 +8,7 @@ # Contributor: TIanyi Cui pkgname=nodejs -pkgver=0.10.2 +pkgver=0.10.3 pkgrel=1 pkgdesc='Evented I/O for V8 javascript' arch=('i686' 'x86_64') @@ -18,7 +18,7 @@ depends=('openssl' 'python2') checkdepends=('curl') options=('!emptydirs') source=(http://nodejs.org/dist/v${pkgver}/node-v${pkgver}.tar.gz) -sha256sums=('4eb642897fdb945b49720f2604afc493587aec7a9ff1537e882df659e4dd8aa2') +sha256sums=('bc8796ff6414231fa0603e0383404f14648dfd2fe9fb0fa4d4a6043dfddbb328') build() { cd node-v${pkgver} diff --git a/community/partclone/PKGBUILD b/community/partclone/PKGBUILD index 4f51db0de..35162ec52 100644 --- a/community/partclone/PKGBUILD +++ b/community/partclone/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 83480 2013-02-01 21:35:48Z eric $ +# $Id: PKGBUILD 87807 2013-04-06 20:01:09Z jsteel $ # Maintainer: Jonathan Steel # Contrinutor: Dan Serban # Contributor: Franz Burgmann @@ -6,15 +6,15 @@ # Contributor: Ivan Sichmann Freitas pkgname=partclone -pkgver=0.2.48 -pkgrel=5 -pkgdesc="Back up and restore used-blocks of a partition" +pkgver=0.2.58 +pkgrel=1 +pkgdesc="Utilities to save and restore used blocks on a partition" arch=('i686' 'x86_64') url="http://partclone.org" license=('GPL') depends=('progsreiserfs' 'ntfs-3g') -source=(https://downloads.sourceforge.net/project/$pkgname/stable/$pkgver/${pkgname}_$pkgver.tar.gz) -md5sums=('c873588f26185d6ce8db7b4c5470aa00') +source=(https://downloads.sourceforge.net/project/$pkgname/stable/$pkgver/${pkgname}_$pkgver.orig.tar.gz) +md5sums=('8d8edeab8a0ce430d2e00efcc25f4ce7') build() { cd "$srcdir"/$pkgname-$pkgver @@ -28,5 +28,5 @@ build() { package() { cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir"/ install } diff --git a/community/pidgin-libnotify/PKGBUILD b/community/pidgin-libnotify/PKGBUILD index 3b8299727..cd5fa8149 100644 --- a/community/pidgin-libnotify/PKGBUILD +++ b/community/pidgin-libnotify/PKGBUILD @@ -4,14 +4,14 @@ pkgname=pidgin-libnotify pkgver=0.14 -pkgrel=6 +pkgrel=7 arch=('i686' 'x86_64') pkgdesc="pidgin plugin that enables popups when someone logs in or messages you." url="http://gaim-libnotify.sourceforge.net/" license=('GPL') -depends=('pidgin' 'libnotify' 'perlxml' 'gettext' 'notification-daemon') -makedepends=('libtool' 'intltool') -replaces=('gaim-libnotify') +depends=('pidgin' 'libnotify') +makedepends=('intltool') +optdepends=('notification-daemon') options=(!libtool) source=(http://downloads.sourceforge.net/sourceforge/gaim-libnotify/$pkgname-$pkgver.tar.gz language_fixes.patch pidgin-libnotify-0.14-libnotify-0.7.patch pidgin-libnotify-showbutton.patch) diff --git a/community/quagga/0001-doc-fix-makeinfo-errors-and-one-warning.patch b/community/quagga/0001-doc-fix-makeinfo-errors-and-one-warning.patch new file mode 100644 index 000000000..3119e34ac --- /dev/null +++ b/community/quagga/0001-doc-fix-makeinfo-errors-and-one-warning.patch @@ -0,0 +1,57 @@ +From 9e26f1c5a00c93b7a5dadb634d4452c769e48048 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Timo=20Ter=C3=A4s?= +Date: Fri, 22 Mar 2013 11:54:44 +0200 +Subject: [PATCH] doc: fix makeinfo errors and one warning +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +commit 4afa50b added few lines that are syntactically incorrect +with leading plus sign. + +Cc: Denis Ovsienko +Signed-off-by: Timo Teräs +--- + doc/ipv6.texi | 4 ++-- + doc/quagga.texi | 6 +++--- + 2 files changed, 5 insertions(+), 5 deletions(-) + +diff --git a/doc/ipv6.texi b/doc/ipv6.texi +index b6cc437..2482c1c 100644 +--- a/doc/ipv6.texi ++++ b/doc/ipv6.texi +@@ -136,8 +136,8 @@ for the lowest preference possible. + Default: 0 + @end deffn + +-+@deffn {Interface Command} {ipv6 nd home-agent-lifetime <0-65520>} {} +-+@deffnx {Interface Command} {no ipv6 nd home-agent-lifetime [<0-65520>]} {} ++@deffn {Interface Command} {ipv6 nd home-agent-lifetime <0-65520>} {} ++@deffnx {Interface Command} {no ipv6 nd home-agent-lifetime [<0-65520>]} {} + The value to be placed in Home Agent Option, when Home Agent config flag is set, + which indicates to hosts Home Agent Lifetime. The default value of 0 means to + place the current Router Lifetime value. +diff --git a/doc/quagga.texi b/doc/quagga.texi +index ff913aa..b4105ac 100644 +--- a/doc/quagga.texi ++++ b/doc/quagga.texi +@@ -1,13 +1,13 @@ + \input texinfo @c -*- texinfo -*- ++@c Set variables - sourced from defines.texi ++@include defines.texi ++ + @c %**start of header + @setchapternewpage odd + @settitle @uref{http://www.quagga.net,,@value{PACKAGE_NAME}} + @setfilename quagga.info + @c %**end of header + +-@c Set variables - sourced from defines.texi +-@include defines.texi +- + @c automake will automatically generate version.texi + @c and set EDITION, VERSION, UPDATED and UPDATED-MONTH + @include version.texi +-- +1.8.2 + diff --git a/community/quagga/PKGBUILD b/community/quagga/PKGBUILD index feb494344..5167a45b6 100644 --- a/community/quagga/PKGBUILD +++ b/community/quagga/PKGBUILD @@ -1,9 +1,9 @@ -# $Id: PKGBUILD 85920 2013-03-08 23:40:45Z foutrelis $ +# $Id: PKGBUILD 87783 2013-04-06 13:02:55Z seblu $ # Maintainer: Sébastien Luttringer pkgname=quagga pkgver=0.99.22 -pkgrel=2 +pkgrel=3 pkgdesc='BGP/OSPF/ISIS/RIP/RIPNG routing daemon suite' arch=('i686' 'x86_64') url='http://www.quagga.net' @@ -19,24 +19,30 @@ source=("http://download.savannah.gnu.org/releases/$pkgname/$pkgname-$pkgver.tar 'ospfd.service' 'ripd.service' 'ripngd.service' - 'zebra.service') + 'zebra.service' + '0001-doc-fix-makeinfo-errors-and-one-warning.patch') md5sums=('3057bf3a91116a1017dd0df7e5e8ef93' - '45d8bf56a426b0e7ebe429547be8a27a' - 'ab31ed8dafd7a92137f4f00ad0937b4f' - '4c05d0105cd0db23a2583bd75a1bde4d' - 'd087dce5eeba78ac64541157c7e04dfd' - 'c5f8a729685cebf8fc5b1a1552d37b6d' - 'e721b334bb0b31983642b307033c63d0' - 'effeb26ff78ffcafe7808596ddc5d3fc' - 'f0c0b99346b2c373a74158e45f04cf91') + '87bf4ae8aca3b3cf70e3986bc669aa78' + '9b14110bed4982baa801808db6ac9135' + 'b685b5c12637cb963e1fb78ecd926e14' + '1fee8cdf03f87b9bb129948058246c88' + '4d95a4af1ddb4ae21b867bebbedc77d5' + '7e33c2a2e1c12309ba28d75a34294ed0' + '6c682c0cd06c109bc10d29c1d9af3e38' + '18964536b7ed012aa5b22f2fa9fb3e87' + '214ed8ae0d58d080dcba9a176a94eb51') -build() { +prepare() { cd $pkgname-$pkgver shopt -s nullglob for _p in "$srcdir"/*.patch; do msg2 "Applying ${_p##*/}" patch -p 1 -i "$_p" done +} + +build() { + cd $pkgname-$pkgver ./configure \ --prefix=/usr \ --sysconfdir=/etc/quagga \ @@ -74,7 +80,6 @@ package() { done install -D -m 644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf" echo "d /run/$pkgname 0750 $pkgname $pkgname" > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf" - } # vim:set ts=2 sw=2 et: diff --git a/community/quagga/babeld.service b/community/quagga/babeld.service index 5b2848042..aa107afca 100644 --- a/community/quagga/babeld.service +++ b/community/quagga/babeld.service @@ -1,11 +1,15 @@ [Unit] Description=Babel routing daemon +Documentation=man:zebra(8) BindTo=zebra.service After=network.target zebra.service ConditionPathExists=/etc/quagga/babeld.conf [Service] -ExecStart=/usr/sbin/babeld +Type=forking +PIDFile=/run/quagga/babeld.pid +ExecStart=/usr/sbin/babeld -d +ExecReload=/bin/kill -HUP $MAINPID Restart=on-abort [Install] diff --git a/community/quagga/bgpd.service b/community/quagga/bgpd.service index 21ac18c8a..aae58be2c 100644 --- a/community/quagga/bgpd.service +++ b/community/quagga/bgpd.service @@ -1,11 +1,15 @@ [Unit] Description=BGP routing daemon +Documentation=man:bgpd(8) man:zebra(8) BindTo=zebra.service After=network.target zebra.service ConditionPathExists=/etc/quagga/bgpd.conf [Service] -ExecStart=/usr/sbin/bgpd +Type=forking +PIDFile=/run/quagga/bgpd.pid +ExecStart=/usr/sbin/bgpd -d +ExecReload=/bin/kill -HUP $MAINPID Restart=on-abort [Install] diff --git a/community/quagga/isisd.service b/community/quagga/isisd.service index 298946998..fa5a716e8 100644 --- a/community/quagga/isisd.service +++ b/community/quagga/isisd.service @@ -1,11 +1,15 @@ [Unit] Description=IS-IS routing daemon +Documentation=man:isis(8) man:zebra(8) BindTo=zebra.service After=network.target zebra.service ConditionPathExists=/etc/quagga/isisd.conf [Service] -ExecStart=/usr/sbin/isisd +Type=forking +PIDFile=/run/quagga/isisd.pid +ExecStart=/usr/sbin/isisd -d +ExecReload=/bin/kill -HUP $MAINPID Restart=on-abort [Install] diff --git a/community/quagga/ospf6d.service b/community/quagga/ospf6d.service index 31194fc6e..eacb89159 100644 --- a/community/quagga/ospf6d.service +++ b/community/quagga/ospf6d.service @@ -1,11 +1,15 @@ [Unit] Description=OSPF routing daemon for IPv6 +Documentation=man:ospfd(8) man:zebra(8) BindTo=zebra.service After=network.target zebra.service ConditionPathExists=/etc/quagga/ospf6d.conf [Service] -ExecStart=/usr/sbin/ospf6d +Type=forking +PIDFile=/run/quagga/ospf6d.pid +ExecStart=/usr/sbin/ospf6d -d +ExecReload=/bin/kill -HUP $MAINPID Restart=on-abort [Install] diff --git a/community/quagga/ospfd.service b/community/quagga/ospfd.service index f864aa258..57a946f8e 100644 --- a/community/quagga/ospfd.service +++ b/community/quagga/ospfd.service @@ -1,11 +1,15 @@ [Unit] Description=OSPF routing daemon +Documentation=man:ospfd(8) man:zebra(8) BindTo=zebra.service After=network.target zebra.service ConditionPathExists=/etc/quagga/ospfd.conf [Service] -ExecStart=/usr/sbin/ospfd +Type=forking +PIDFile=/run/quagga/ospfd.pid +ExecStart=/usr/sbin/ospfd -d +ExecReload=/bin/kill -HUP $MAINPID Restart=on-abort [Install] diff --git a/community/quagga/ripd.service b/community/quagga/ripd.service index 22716e2c9..bf7c5ac6f 100644 --- a/community/quagga/ripd.service +++ b/community/quagga/ripd.service @@ -1,11 +1,15 @@ [Unit] Description=RIP routing daemon +Documentation=man:ripd(8) man:zebra(8) BindTo=zebra.service After=network.target zebra.service ConditionPathExists=/etc/quagga/ripd.conf [Service] -ExecStart=/usr/sbin/ripd +Type=forking +PIDFile=/run/quagga/ripd.pid +ExecStart=/usr/sbin/ripd -d +ExecReload=/bin/kill -HUP $MAINPID Restart=on-abort [Install] diff --git a/community/quagga/ripngd.service b/community/quagga/ripngd.service index 9ac51bd1c..465263ba3 100644 --- a/community/quagga/ripngd.service +++ b/community/quagga/ripngd.service @@ -1,11 +1,15 @@ [Unit] Description=RIP routing daemon for IPv6 +Documentation=man:ripngd(8) man:zebra(8) BindTo=zebra.service After=network.target zebra.service ConditionPathExists=/etc/quagga/ripngd.conf [Service] -ExecStart=/usr/sbin/ripngd +Type=forking +PIDFile=/run/quagga/ripngd.pid +ExecStart=/usr/sbin/ripngd -d +ExecReload=/bin/kill -HUP $MAINPID Restart=on-abort [Install] diff --git a/community/quagga/zebra.service b/community/quagga/zebra.service index 0bba03972..c8707083e 100644 --- a/community/quagga/zebra.service +++ b/community/quagga/zebra.service @@ -1,11 +1,15 @@ [Unit] Description=GNU Zebra routing manager +Documentation=man:zebra(8) After=network.target ConditionPathExists=/etc/quagga/zebra.conf [Service] -ExecStartPre=/usr/sbin/ip route flush proto zebra -ExecStart=/usr/sbin/zebra +Type=forking +PIDFile=/run/quagga/zebra.pid +ExecStartPre=/sbin/ip route flush proto zebra +ExecStart=/usr/sbin/zebra -d +ExecReload=/bin/kill -HUP $MAINPID Restart=on-abort [Install] diff --git a/community/rust/PKGBUILD b/community/rust/PKGBUILD new file mode 100644 index 000000000..11a5af15f --- /dev/null +++ b/community/rust/PKGBUILD @@ -0,0 +1,63 @@ +# $Id: PKGBUILD 87747 2013-04-05 23:21:32Z thestinger $ +# Maintainer: Daniel Micay +pkgname=rust +pkgver=0.6 +pkgrel=3 +arch=('i686' 'x86_64') +pkgdesc='A safe, concurrent, practical language' +url='http://www.rust-lang.org/' +license=('MIT' 'Apache') +depends=(gcc-libs shared-mime-info) +makedepends=(libffi perl python2 curl chrpath emacs) +optdepends=('haskell-pandoc: documentation generator (rustdoc)') +source=("http://static.rust-lang.org/dist/rust-${pkgver}.tar.gz") +sha256sums=('e11cb529a1e20f27d99033181a9e0e131817136b46d2742f0fa1afa1210053e5') +install=rust.install + +build() { + cd rust-$pkgver + + ./configure --prefix=/usr --disable-docs + + # avoid python makedepend (force fallback to python2) + sed -i 's/^PYTHONVERSION.*/PYTHONVERSION := 3/' src/llvm/Makefile.rules + + make +} + +check() { + cd rust-$pkgver + make check +} + +package() { + cd rust-$pkgver + make DESTDIR="$pkgdir" install + + mkdir -p "$pkgdir/usr/share/vim" "$pkgdir/usr/share/licenses/rust" + + cp -a src/etc/vim "$pkgdir/usr/share/vim/vimfiles" + find "$pkgdir/usr/share/vim" -type f -exec chmod 644 {} + + find "$pkgdir/usr/share/vim" -type d -exec chmod 755 {} + + + install -Dm644 src/etc/kate/rust.xml "$pkgdir/usr/share/apps/katepart/syntax/rust.xml" + install -Dm644 src/etc/gedit/share/mime/packages/rust.xml \ + "$pkgdir/usr/share/mime/packages/rust.xml" + install -Dm644 src/etc/gedit/share/gtksourceview-3.0/language-specs/rust.lang \ + "$pkgdir/usr/share/gtksourceview-3.0/language-specs/rust.lang" + + install -m644 LICENSE-APACHE "$pkgdir/usr/share/licenses/rust" + install -m644 LICENSE-MIT "$pkgdir/usr/share/licenses/rust" + + cd src/etc/emacs + make + mkdir -p "$pkgdir/usr/share/emacs/site-lisp/" + install -Dm644 cm-mode.el{,c} rust-mode.el{,c} "$pkgdir/usr/share/emacs/site-lisp/" + + cd "$pkgdir/usr" + + # https://github.com/mozilla/rust/issues/5219 + chrpath -d bin/* lib/*.so lib/rustc/*/lib/*.so + + cp lib/rustc/*/lib/{librustdoc-*-0.6.so,librustpkg-*-0.6.so} lib/ +} diff --git a/community/rxvt-unicode/PKGBUILD b/community/rxvt-unicode/PKGBUILD index 3d092e90f..90b22198d 100644 --- a/community/rxvt-unicode/PKGBUILD +++ b/community/rxvt-unicode/PKGBUILD @@ -1,4 +1,4 @@ -# $Id: PKGBUILD 86929 2013-03-24 23:26:26Z seblu $ +# $Id: PKGBUILD 87749 2013-04-06 00:49:20Z seblu $ # Maintainer: Sébastien Luttringer # Contributor: Angel Velasquez # Contributor: tobias @@ -6,7 +6,7 @@ pkgname=rxvt-unicode pkgver=9.18 -pkgrel=1 +pkgrel=2 pkgdesc='An unicode enabled rxvt-clone terminal emulator (urxvt)' arch=('i686' 'x86_64') url='http://software.schmorp.de/pkg/rxvt-unicode.html' @@ -20,9 +20,9 @@ source=( 'urxvt-tabbed.desktop' ) md5sums=('963ccc748fe5bca925e7b92c0404d68b' - 'c2b828d37d06cbf4c32937a2959f2fc2' - '10e80aebaef042fb63d2585440dc3637' - '830abe6f31fb926a1bcd2650731be15e') + 'fec94dc986fa37ec380079d81de3e0b2' + 'fac55f0a8404c86dad3e702146762332' + '8a5599197568c63720e282b9722a7990') build() { cd $pkgname-$pkgver diff --git a/community/rxvt-unicode/urxvt-tabbed.desktop b/community/rxvt-unicode/urxvt-tabbed.desktop index bd48c0a72..172006b4a 100644 --- a/community/rxvt-unicode/urxvt-tabbed.desktop +++ b/community/rxvt-unicode/urxvt-tabbed.desktop @@ -3,7 +3,7 @@ Version=1.0 Name=urxvt (tabbed) Comment=An unicode capable and tabbed rxvt clone Exec=urxvt-tabbed -Icon=terminal +Icon=utilities-terminal Terminal=false Type=Application Categories=System;TerminalEmulator; diff --git a/community/rxvt-unicode/urxvt.desktop b/community/rxvt-unicode/urxvt.desktop index d90c182e2..762291870 100644 --- a/community/rxvt-unicode/urxvt.desktop +++ b/community/rxvt-unicode/urxvt.desktop @@ -3,7 +3,7 @@ Version=1.0 Name=urxvt Comment=An unicode capable rxvt clone Exec=urxvt -Icon=terminal +Icon=utilities-terminal Terminal=false Type=Application Categories=System;TerminalEmulator; diff --git a/community/rxvt-unicode/urxvtc.desktop b/community/rxvt-unicode/urxvtc.desktop index 67751095b..3a2df410f 100644 --- a/community/rxvt-unicode/urxvtc.desktop +++ b/community/rxvt-unicode/urxvtc.desktop @@ -3,7 +3,7 @@ Version=1.0 Name=urxvt (client) Comment=An unicode capable rxvt clone client for urxvtd Exec=urxvtc -Icon=terminal +Icon=utilities-terminal Terminal=false Type=Application Categories=System;TerminalEmulator; diff --git a/community/sigil/PKGBUILD b/community/sigil/PKGBUILD index 1f6510404..116d6f41d 100644 --- a/community/sigil/PKGBUILD +++ b/community/sigil/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 87437 2013-03-31 19:18:53Z stephane $ +# $Id: PKGBUILD 87797 2013-04-06 18:59:06Z giovanni $ # Maintainer: Giovanni Scafora # Contributor: Larry Hajali pkgname=sigil pkgver=0.7.1 -pkgrel=2 +pkgrel=3 pkgdesc="WYSIWYG ebook editor" arch=('i686' 'x86_64') url="http://code.google.com/p/sigil/" -- cgit v1.2.3-54-g00ecf