summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/gsoap/PKGBUILD6
-rw-r--r--community/kmod/PKGBUILD25
-rw-r--r--community/kpartsplugin/LICENSE28
-rw-r--r--community/kpartsplugin/PKGBUILD33
-rw-r--r--community/ndisc6/PKGBUILD10
-rw-r--r--community/omniorb/PKGBUILD9
-rw-r--r--community/qtfm/PKGBUILD7
-rw-r--r--community/qtfm/qtfm.changelog5
8 files changed, 109 insertions, 14 deletions
diff --git a/community/gsoap/PKGBUILD b/community/gsoap/PKGBUILD
index c86e71fd6..0e8d448c8 100644
--- a/community/gsoap/PKGBUILD
+++ b/community/gsoap/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 59577 2011-11-28 11:48:45Z spupykin $
+# $Id: PKGBUILD 60745 2011-12-17 14:07:20Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Tor Krill <tor@krill.nu>
# Contributor: Lee.MaRS <leemars@gmail.com>
pkgname=gsoap
-pkgver=2.8.5
+pkgver=2.8.6
pkgrel=1
pkgdesc="Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++"
url="http://www.cs.fsu.edu/~engelen/soap.html"
@@ -14,7 +14,7 @@ depends=('openssl' 'zlib' 'gcc-libs')
makedepends=('autoconf' 'automake')
source=(http://prdownloads.sourceforge.net/gsoap2/${pkgname}_${pkgver}.zip
LICENSE)
-md5sums=('541dcff86d1c6171cb8540cf51a4cfa8'
+md5sums=('c0b962c6216bcf59255dc4288783252f'
'27aaa3f5166db94d44044c11a7b2c37b')
build() {
diff --git a/community/kmod/PKGBUILD b/community/kmod/PKGBUILD
new file mode 100644
index 000000000..94a4def89
--- /dev/null
+++ b/community/kmod/PKGBUILD
@@ -0,0 +1,25 @@
+# $Id$
+# Maintainer: Sebastien Luttringer <seblu@aur.archlinux.org>
+
+pkgname=kmod
+pkgver=1
+pkgrel=1
+pkgdesc='A set of tools to handle common tasks with Linux kernel modules'
+arch=('i686' 'x86_64')
+url='http://git.profusion.mobi/cgit.cgi/kmod.git/'
+license=('GPL2')
+options=('!libtool')
+source=("http://packages.profusion.mobi/$pkgname/$pkgname-$pkgver.tar.bz2")
+md5sums=('c80f3d430304ad78279353788c18681f')
+
+build() {
+ cd $pkgname-$pkgver
+ ./configure --prefix=/usr
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/kpartsplugin/LICENSE b/community/kpartsplugin/LICENSE
new file mode 100644
index 000000000..8328ff550
--- /dev/null
+++ b/community/kpartsplugin/LICENSE
@@ -0,0 +1,28 @@
+Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are
+met:
+ * Redistributions of source code must retain the above copyright
+ notice, this list of conditions and the following disclaimer.
+ * Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in
+ the documentation and/or other materials provided with the
+ distribution.
+ * Neither the name of Nokia Corporation and its Subsidiary(-ies) 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 BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file
diff --git a/community/kpartsplugin/PKGBUILD b/community/kpartsplugin/PKGBUILD
new file mode 100644
index 000000000..c0494e486
--- /dev/null
+++ b/community/kpartsplugin/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 60774 2011-12-17 17:24:00Z tredaelli $
+# Maintainer: Timothy Redaelli <timothy.redaelli@gmail.com>
+# Contributor: birdflesh <antkoul at gmail dot com>
+# Contributor: Frikilinux <frikilinux at frikilinux.com.ar>
+pkgname=kpartsplugin
+pkgver=20110823
+pkgrel=2
+pkgdesc="This plugin uses KDE's KParts to embed file viewers into non-KDE browsers"
+arch=('i686' 'x86_64')
+url="http://www.unix-ag.uni-kl.de/~fischer/kpartsplugin/"
+license=('GPL3' 'BSD')
+depends=('kdelibs')
+makedepends=('automoc4' 'cmake')
+source=("${url}${pkgname}-${pkgver}.tar.bz2" "LICENSE")
+md5sums=('d134198ff2f05ba414719920030ea71b'
+ 'c4cc811349e40e9f34e77e27b902ad96')
+
+build(){
+ sed -i 's/nsbrowser/mozilla/g' ${pkgname}-${pkgver}/CMakeLists.txt
+ 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
+ install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENCE"
+}
diff --git a/community/ndisc6/PKGBUILD b/community/ndisc6/PKGBUILD
index 206db2574..df7d0ce45 100644
--- a/community/ndisc6/PKGBUILD
+++ b/community/ndisc6/PKGBUILD
@@ -1,15 +1,16 @@
-# $Id: PKGBUILD 57422 2011-10-27 13:12:24Z cbrannon $
+# $Id: PKGBUILD 60785 2011-12-17 22:54:36Z cbrannon $
# Maintainer: Chris Brannon <chris@the-brannons.com>
# Contributor: Mark Smith <markzzzsmith@yahoo.com.au>
pkgname=ndisc6
pkgver=1.0.2
-pkgrel=1
+pkgrel=2
pkgdesc="A collection of IPv6 networking utilities - ndisc6, rdisc6, tcptraceroute6, tracert6, rltraceroute6, tcpspray6"
arch=('i686' 'x86_64')
url="http://www.remlab.net/ndisc6/"
license=("GPL")
-depends=('glibc')
+depends=('glibc' 'perl')
makedepends=('glibc' 'gcc')
+options=(emptydirs)
source=(http://www.remlab.net/files/ndisc6/$pkgname-$pkgver.tar.bz2
rdnssd.rc.d
rdnssd.confd)
@@ -28,7 +29,8 @@ package() {
make DESTDIR="$pkgdir" install
install -Dm755 "$srcdir/rdnssd.rc.d" "$pkgdir/etc/rc.d/rdnssd"
install -Dm644 "$srcdir/rdnssd.confd" "$pkgdir/etc/conf.d/rdnssd"
-
+ install -Dm644 /dev/null "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
+ echo "d /var/run/rdnssd 0755 nobody root" > "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
}
md5sums=('50cb4c19606cf6ff2b7388e71832f579'
diff --git a/community/omniorb/PKGBUILD b/community/omniorb/PKGBUILD
index a67bc410a..0102fb639 100644
--- a/community/omniorb/PKGBUILD
+++ b/community/omniorb/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 45305 2011-04-19 11:39:08Z jelle $
+# $Id: PKGBUILD 60722 2011-12-17 09:55:07Z lcarlier $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Essien Ita Essien <me@essienitaessien.com>
# Contributor: Brice Mealier <mealier_brice@yahoo.fr>
pkgname=omniorb
-pkgver=4.1.5
+pkgver=4.1.6
pkgrel=1
pkgdesc="A CORBA object request broker for C++ and Python."
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ license=('GPL2' 'LGPL2')
depends=('gcc-libs' 'python2' 'openssl')
makedepends=('pkgconfig')
source=(http://downloads.sourceforge.net/omniorb/omniORB-$pkgver.tar.bz2)
-md5sums=('1f6070ff9b6339876976d61981eeaa6a')
+md5sums=('44990f8139c349b53ab43110de6c629b')
build() {
cd $srcdir/omniORB-$pkgver
@@ -34,10 +34,11 @@ build() {
}
package(){
cd $srcdir/omniORB-$pkgver
+
make DESTDIR=$pkgdir install
+
for i in man/man1/*.1; do
install -D -m 644 $i $pkgdir/usr/share/$i
done
chmod 755 $pkgdir/{usr,usr/bin,usr/lib,usr/share,usr/include,usr/share/idl,usr/lib/pkgconfig,usr/lib/python2.7,usr/lib/python2.7/site-packages}
}
-md5sums=('579af43a7ab1f2f88a845f1436e5238b')
diff --git a/community/qtfm/PKGBUILD b/community/qtfm/PKGBUILD
index 5ca145662..922fc22fe 100644
--- a/community/qtfm/PKGBUILD
+++ b/community/qtfm/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 60270 2011-12-08 20:02:24Z jlichtblau $
+# $Id: PKGBUILD 60761 2011-12-17 15:22:46Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Wittfella <wittfella@wittfella.com>
pkgname=qtfm
-pkgver=5.2
+pkgver=5.3
pkgrel=1
pkgdesc="A lightweight file manager"
arch=('i686' 'x86_64')
@@ -12,8 +12,9 @@ url="http://www.qtfm.org/"
license=('GPL')
depends=('qt')
install=$pkgname.install
+changelog=$pkgname.changelog
source=(http://www.qtfm.org/$pkgname-$pkgver.tar.gz)
-sha256sums=('289b93956958729ccf02657acf7745d4ba621bfb18e8180988196a0a1310e99b')
+sha256sums=('2748be826a769e98d2e0f2f07865808442aa497be463b0885a395f3b586614d2')
build() {
cd ${srcdir}/$pkgname-$pkgver
diff --git a/community/qtfm/qtfm.changelog b/community/qtfm/qtfm.changelog
new file mode 100644
index 000000000..d148864cf
--- /dev/null
+++ b/community/qtfm/qtfm.changelog
@@ -0,0 +1,5 @@
+2011-12-17 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * qtfm 5.3-1
+
+2011-12-08 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * qtfm 5.2-1