summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-03-01 03:21:19 +0000
committerroot <root@rshg054.dnsready.net>2012-03-01 03:21:19 +0000
commit6f297b1cf462a11227d811a87124006c55911d63 (patch)
tree325073cc18485496bf07d32e56edf643f3b7a2bf /community
parent32b05a621cb20af1bd4b7cd6f5609b7512bb20f1 (diff)
Thu Mar 1 03:21:19 UTC 2012
Diffstat (limited to 'community')
-rw-r--r--community/lilyterm/PKGBUILD9
-rw-r--r--community/lwm/PKGBUILD21
-rw-r--r--community/macchanger/PKGBUILD23
-rw-r--r--community/mongodb/PKGBUILD5
-rwxr-xr-xcommunity/python-scipy/PKGBUILD15
-rw-r--r--community/qtcurve-gtk2/PKGBUILD24
-rw-r--r--community/rlwrap/PKGBUILD21
-rw-r--r--community/scantailor/PKGBUILD6
-rw-r--r--community/scite/PKGBUILD8
-rw-r--r--community/typespeed/PKGBUILD18
-rw-r--r--community/xmlrpc-c/PKGBUILD13
11 files changed, 105 insertions, 58 deletions
diff --git a/community/lilyterm/PKGBUILD b/community/lilyterm/PKGBUILD
index a6627c72d..74a1cc483 100644
--- a/community/lilyterm/PKGBUILD
+++ b/community/lilyterm/PKGBUILD
@@ -1,10 +1,12 @@
+# $Id: PKGBUILD 66757 2012-02-28 08:33:19Z giovanni $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
# Contributor: TDY <tdy@gmx.com>
# Contributor: DonVla <donvla@users.sourceforge.net>
-# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
+# Contributor: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=lilyterm
pkgver=0.9.8
-pkgrel=1
+pkgrel=2
pkgdesc="A light and easy to use libvte based X terminal emulator"
arch=('i686' 'x86_64')
url="http://lilyterm.luna.com.tw/index_en.html"
@@ -17,7 +19,8 @@ md5sums=('995f7b4634523bf5e150b529a4bdbf6f')
build() {
cd "$srcdir/lilyterm-$pkgver"
./autogen.sh
- ./configure --prefix=/usr --sysconfdir=/etc
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc
make
}
diff --git a/community/lwm/PKGBUILD b/community/lwm/PKGBUILD
index 015928b53..e9aed0a46 100644
--- a/community/lwm/PKGBUILD
+++ b/community/lwm/PKGBUILD
@@ -1,25 +1,32 @@
-# $Id: PKGBUILD 6621 2009-12-18 08:13:19Z giovanni $
-# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
+# $Id: PKGBUILD 66767 2012-02-28 10:21:19Z giovanni $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
# Contributor: Jeff Mickey <j@codemac.net>
# Contributor: Ben Mazer <blm@groknil.org>
pkgname=lwm
pkgver=1.2.2
-pkgrel=1
-pkgdesc="a very light weight window manager"
+pkgrel=2
+pkgdesc="A very light weight window manager"
arch=('i686' 'x86_64')
license=('GPL')
url="http://www.jfc.org.uk/software/lwm.html"
-depends=('xorg-server')
+depends=('xorg-server' 'libsm' 'libxext')
makedepends=('imake')
source=(http://www.jfc.org.uk/files/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('1748722a293e03d632b615275ef84498')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
+
+ sed -i -e "s/(SMLIB)/& -lICE/g" Imakefile
xmkmf
- make || return 1
- strip lwm
+ make EXTRA_LDOPTIONS="${CFLAGS} ${LDFLAGS}" CFLAGS="${CFLAGS}"
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+
install -Dm755 lwm ${pkgdir}/usr/bin/lwm
install -Dm644 lwm.man ${pkgdir}/usr/share/man/man1/lwm.1
}
diff --git a/community/macchanger/PKGBUILD b/community/macchanger/PKGBUILD
index 2b270ddd8..2ba309655 100644
--- a/community/macchanger/PKGBUILD
+++ b/community/macchanger/PKGBUILD
@@ -1,18 +1,27 @@
-# $Id: PKGBUILD 7199 2010-01-03 07:55:05Z dgriffiths $
+# $Id: PKGBUILD 66755 2012-02-28 08:12:38Z giovanni $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=macchanger
pkgver=1.5.0
-pkgrel=3
+pkgrel=4
pkgdesc="A small utility to change you NIC's MAC address"
arch=('i686' 'x86_64')
url="http://ftp.gnu.org/gnu/macchanger"
license=('GPL')
-source=(http://ftp.gnu.org/gnu/macchanger/$pkgname-$pkgver.tar.gz)
+source=(http://ftp.gnu.org/gnu/macchanger/${pkgname}-${pkgver}.tar.gz)
md5sums=('79b7cdaeca3d8ebafa764c4b0dd03ab7')
build() {
- cd $startdir/src/$pkgname-$pkgver
- ./configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/man
- make || return 1
- make DESTDIR=$startdir/pkg install || return 1
+ cd ${srcdir}/${pkgname}-${pkgver}
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/man
+ make
+}
+
+package() {
+ cd ${srcdir}/${pkgname}-${pkgver}
+
+ make DESTDIR=${pkgdir} install
}
diff --git a/community/mongodb/PKGBUILD b/community/mongodb/PKGBUILD
index 2330362dd..bc451a553 100644
--- a/community/mongodb/PKGBUILD
+++ b/community/mongodb/PKGBUILD
@@ -1,9 +1,10 @@
+# $Id: PKGBUILD 66824 2012-02-29 00:49:06Z tdziedzic $
# Maintainer: Thomas Dziedzic < gostrc at gmail >
# Contributor: Mathias Stearn <mathias@10gen.com>
# Contributor: Alec Thomas
pkgname=mongodb
-pkgver=2.0.2
+pkgver=2.0.3
pkgrel=1
pkgdesc='A high-performance, open source, schema-free document-oriented database.'
arch=('i686' 'x86_64')
@@ -18,7 +19,7 @@ install="mongodb.install"
source=("http://downloads.mongodb.org/src/mongodb-src-r${pkgver}.tar.gz"
'mongodb.rc'
'mongodb.conf')
-md5sums=('5dcf819249955a3e9cc61a341e45403a'
+md5sums=('f588cae93196b94599ec50e3c4956592'
'9c67e00f4626ad761a8f7d4e037a54d7'
'4839fe1d638187ca3226e8267b947318')
diff --git a/community/python-scipy/PKGBUILD b/community/python-scipy/PKGBUILD
index 9b7280d04..460313b10 100755
--- a/community/python-scipy/PKGBUILD
+++ b/community/python-scipy/PKGBUILD
@@ -6,15 +6,16 @@
# Contributor: Andrzej Giniewicz <gginiu@gmail.com>
pkgname=('python-scipy' 'python2-scipy')
-pkgver=0.10.0
+pkgver=0.10.1
pkgrel=1
pkgdesc="SciPy is open-source software for mathematics, science, and engineering."
arch=('i686' 'x86_64')
url="http://www.scipy.org/"
license=('BSD')
makedepends=('gcc-fortran' 'python-numpy' 'python2-numpy')
+checkdepends=('python-nose' 'python2-nose')
source=("http://downloads.sourceforge.net/scipy/scipy-${pkgver}.tar.gz")
-md5sums=('e357c08425fd031dce63bc4905789088')
+md5sums=('6ad976549e22e04ca93e70cf55b70a22')
build() {
unset LDFLAGS
@@ -42,6 +43,16 @@ build() {
python2 setup.py config_fc --fcompiler=gnu95 build
}
+check() {
+ cd scipy-${pkgver}
+# figure out how to run tests in the source tree easily
+# python -c "from scipy import test; test('full')"
+
+ cd ../scipy-${pkgver}-py2
+# figure out how to run tests in the source tree easily
+# python2 -c "from scipy import test; test('full')"
+}
+
package_python-scipy() {
depends=('python-numpy')
provides=('python3-scipy' 'scipy')
diff --git a/community/qtcurve-gtk2/PKGBUILD b/community/qtcurve-gtk2/PKGBUILD
index f6dde224d..b77e5b18c 100644
--- a/community/qtcurve-gtk2/PKGBUILD
+++ b/community/qtcurve-gtk2/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 65720 2012-02-22 11:50:01Z svenstaro $
+# $Id: PKGBUILD 66821 2012-02-28 23:45:44Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgname=qtcurve-gtk2
-pkgver=1.8.13
+pkgver=1.8.14
pkgrel=1
pkgdesc="A configurable set of widget styles for KDE and Gtk"
arch=('i686' 'x86_64')
@@ -15,19 +15,19 @@ makedepends=('cmake')
groups=('qtcurve')
options=('!libtool')
source=("http://craigd.wikispaces.com/file/view/QtCurve-Gtk2-${pkgver}.tar.bz2")
-md5sums=('11cee806fd3f78d375498d5bd304799e')
+md5sums=('4d8e703c5e906e8e3d27b1a38b57db9b')
build() {
- cd "${srcdir}"
- mkdir build
- cd build
- cmake ../QtCurve-Gtk2-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr
- make
+ cd "${srcdir}"
+ mkdir build
+ cd build
+ cmake ../QtCurve-Gtk2-${pkgver} \
+ -DCMAKE_BUILD_TYPE=Release \
+ -DCMAKE_INSTALL_PREFIX=/usr
+ make
}
package() {
- cd "${srcdir}"/build
- make DESTDIR="${pkgdir}" install
+ cd "${srcdir}"/build
+ make DESTDIR="${pkgdir}" install
}
diff --git a/community/rlwrap/PKGBUILD b/community/rlwrap/PKGBUILD
index 590bbe886..3cef5ba91 100644
--- a/community/rlwrap/PKGBUILD
+++ b/community/rlwrap/PKGBUILD
@@ -1,23 +1,30 @@
-# $Id: PKGBUILD 16714 2010-05-06 11:51:51Z mherych $
-# Maintainer : wizzomafizzo <wizzomafizzo@gmail.com>
-# Maintainer: Mateusz Herych <heniekk@gmail.com>
+# $Id: PKGBUILD 66761 2012-02-28 08:57:15Z giovanni $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+# Contributor: wizzomafizzo <wizzomafizzo@gmail.com>
+# Contributor: Mateusz Herych <heniekk@gmail.com>
# Contributor: Benjamin Andresen <benny AT klapmuetz DOT org>
# Contributor: Douglas Thrift <douglas@douglasthrift.net>
pkgname=rlwrap
pkgver=0.37
-pkgrel=1
+pkgrel=2
pkgdesc="A 'readline wrapper'"
arch=('i686' 'x86_64')
url="http://utopia.knoware.nl/~hlub/uck/rlwrap/"
license=('GPL')
-depends=('readline')
+depends=('perl')
source=(http://utopia.knoware.nl/~hlub/uck/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('04cd6e2c257eb5a86b297f2ebf91dbbf')
build() {
cd $srcdir/$pkgname-$pkgver
+
./configure --prefix=/usr
- make || return 1
- make DESTDIR=$pkgdir install || return 1
+ make
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
+
+ make DESTDIR=$pkgdir install
}
diff --git a/community/scantailor/PKGBUILD b/community/scantailor/PKGBUILD
index 3de94b785..859b781e0 100644
--- a/community/scantailor/PKGBUILD
+++ b/community/scantailor/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 66680 2012-02-27 10:02:02Z spupykin $
+# $Id: PKGBUILD 66775 2012-02-28 14:29:17Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Denis Terskov aka neurosurgeon <terskov.den@gmail.com>
pkgname=scantailor
-pkgver=0.9.11
+pkgver=0.9.11.1
pkgrel=1
pkgdesc="Interactive post-processing tool for scanned pages"
arch=(i686 x86_64)
@@ -13,7 +13,7 @@ depends=('qt')
makedepends=('cmake' 'boost')
options=('!makeflags')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz)
-md5sums=('15984c8828ecb2de542ac94e3c41a810')
+md5sums=('6cdca1b6d1dafd022ea94b4800dad340')
build() {
cd $srcdir/$pkgname-$pkgver
diff --git a/community/scite/PKGBUILD b/community/scite/PKGBUILD
index 1a48fee56..aec527268 100644
--- a/community/scite/PKGBUILD
+++ b/community/scite/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 61725 2012-01-07 01:42:13Z arodseth $
+# $Id: PKGBUILD 66814 2012-02-28 22:45:12Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Thomas S Hatch <thatch45@gmail.com>
# Contributor: Corrado 'bardo' Primier <corrado.primier@mail.polimi.it>
# Contributor: Jochem Kossen <j.kossen@home.nl>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=scite
-pkgver=3.0.2
+pkgver=3.0.3
pkgrel=1
pkgdesc='Editor with facilities for building and running programs'
arch=('x86_64' 'i686')
@@ -14,9 +14,9 @@ license=('custom:scite')
depends=('desktop-file-utils' 'gtk2')
makedepends=('setconf')
backup=('usr/share/scite/SciTEGlobal.properties')
-install=scite.install
+install=$pkgname.install
source=("http://downloads.sourceforge.net/sourceforge/scintilla/${pkgname}${pkgver//./}.tgz")
-sha256sums=('a5687faaa201c39a4ec9608e8a77e418e259f525b21871a5c9f1282c62e58eaa')
+sha256sums=('0d02b81f6f182366abe8133f4e727d802b756d33e9eeba5fe9ac69c4a17286fd')
build() {
cd "$srcdir"
diff --git a/community/typespeed/PKGBUILD b/community/typespeed/PKGBUILD
index 8c574c877..a899715a1 100644
--- a/community/typespeed/PKGBUILD
+++ b/community/typespeed/PKGBUILD
@@ -1,8 +1,10 @@
-# $Id: PKGBUILD 34838 2010-12-12 22:33:17Z angvp $
-# Maintainer: Angel Velasquez <angvp@archlinux.org>
+# $Id: PKGBUILD 66763 2012-02-28 09:12:45Z giovanni $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+# Contributor: Angel Velasquez <angvp@archlinux.org>
+
pkgname=typespeed
pkgver=0.6.5
-pkgrel=3
+pkgrel=4
pkgdesc="Test your typing speed, and get your fingers' CPS."
arch=('i686' 'x86_64')
url="http://typespeed.sourceforge.net"
@@ -11,12 +13,18 @@ depends=('ncurses')
install=$pkgname.install
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('578102b418c7df84903d3e90df2e7483')
+
build() {
cd $srcdir/$pkgname-$pkgver
+
./configure --prefix=/usr \
--localstatedir=/var \
--sysconfdir=/etc
- make
- make DESTDIR=$pkgdir install
+ make
}
+package() {
+ cd $srcdir/$pkgname-$pkgver
+
+ make DESTDIR=$pkgdir install
+}
diff --git a/community/xmlrpc-c/PKGBUILD b/community/xmlrpc-c/PKGBUILD
index 64dc13d4b..a51b38f27 100644
--- a/community/xmlrpc-c/PKGBUILD
+++ b/community/xmlrpc-c/PKGBUILD
@@ -1,10 +1,11 @@
-# $Id: PKGBUILD 63853 2012-02-06 08:42:18Z arodseth $
+# $Id: PKGBUILD 66818 2012-02-28 23:03:08Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Daenyth <Daenyth+Arch [at] gmail [dot] com>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
# Contributor: Vitaliy Berdinskikh <skipper13@root.ua>
+
pkgname=xmlrpc-c
-pkgver=1.16.39
+pkgver=1.29.2
epoch=1
pkgrel=1
pkgdesc='XML-RPC for C and C++'
@@ -14,11 +15,11 @@ license=('custom')
depends=('curl' 'libxml2' 'gcc-libs' 'zlib')
makedepends=('libtool' 'setconf')
options=('!makeflags' '!libtool')
-source=("http://sourceforge.net/projects/$pkgname/files/Xmlrpc-c%20Super%20Stable/$pkgver/$pkgname-$pkgver.tgz")
-sha256sums=('54adc6dae0af044fcbbfe97625f256f8afe7d7f0768ef82cef1f98d03c3fbb39')
+source=("http://xmlrpc-c.svn.sourceforge.net/viewvc/xmlrpc-c/advanced.tar.gz")
+sha256sums=('0807e829ef333bd161d0e6fa1327e6698f467015366fb70f236753cb096ee794')
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir/advanced"
[ "$CARCH" != "i686" ] && export CFLAGS="$CFLAGS -fPIC"
./configure --prefix=/usr \
@@ -34,7 +35,7 @@ build() {
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$srcdir/advanced"
make DESTDIR="$pkgdir" install
install -Dm644 doc/COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"