summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-04-15 00:01:28 +0000
committerroot <root@rshg054.dnsready.net>2012-04-15 00:01:28 +0000
commitf06b9295f0e60a0faa0d3231a0d0b3f2358d8459 (patch)
tree4bef4a67030f8ef621aaeeb16cc8d7f313c9eb67 /community
parentcaa3e47071c8516ac31afaa0b654f5aaa4911939 (diff)
Sun Apr 15 00:01:28 UTC 2012
Diffstat (limited to 'community')
-rw-r--r--community/avr-binutils/PKGBUILD87
-rw-r--r--community/avr-gcc/PKGBUILD56
-rw-r--r--community/dmd/PKGBUILD24
-rw-r--r--community/libcryptui/PKGBUILD30
-rw-r--r--community/libcryptui/libcryptui.install11
-rw-r--r--community/nbd/PKGBUILD6
-rw-r--r--community/nbd/config17
-rw-r--r--community/openbsd-netcat/PKGBUILD6
-rw-r--r--community/pgadmin3/PKGBUILD8
-rw-r--r--community/seahorse-nautilus/PKGBUILD31
-rw-r--r--community/seahorse-nautilus/seahorse-nautilus.install11
-rw-r--r--community/sfml/PKGBUILD37
-rw-r--r--community/stone-soup/PKGBUILD22
-rw-r--r--community/xmlrpc-c/PKGBUILD10
14 files changed, 220 insertions, 136 deletions
diff --git a/community/avr-binutils/PKGBUILD b/community/avr-binutils/PKGBUILD
index ebd67da97..18ef8f9e6 100644
--- a/community/avr-binutils/PKGBUILD
+++ b/community/avr-binutils/PKGBUILD
@@ -1,74 +1,67 @@
-# $Id: PKGBUILD 63813 2012-02-05 15:45:13Z bpiotrowski $
-# Maintainer: Brad Fanella <bradfanella@archlinux.us>
+# $Id: PKGBUILD 69306 2012-04-13 08:25:33Z schuay $
+# Maintainer: schuay <jakob.gruber@gmail.com>
+# Contributor: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
# Contributor: danst0 <danst0@west.de>
pkgname=avr-binutils
pkgver=2.22
-pkgrel=2
+pkgrel=3
+_pkgname=binutils
+_date=20120323
pkgdesc="A set of programs to assemble and manipulate binary and object files for the avr architecture"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/binutils/"
license=('GPL')
-depends=('glibc>=2.12-5' 'zlib')
+depends=('glibc>=2.15' 'zlib')
provides=("binutils-avr=$pkgver")
replaces=('binutils-avr')
options=('!libtool' '!distcc' '!ccache')
-source=(http://ftp.gnu.org/gnu/${pkgname/avr-}/${pkgname/avr-}-${pkgver}.tar.bz2{,.sig})
-md5sums=('ee0f10756c84979622b992a4a61ea3f5'
- '6aea2485019497583e5c3f5fc4a39cd5')
+source=(ftp://ftp.archlinux.org/other/${_pkgname}/${_pkgname}-${pkgver}_${_date}.tar.bz2)
+
+_builddir=binutils-build
build() {
- cd "${srcdir}"/${pkgname/avr-}-${pkgver}
+ cd ${srcdir}
+
+ config_guess=$(${_pkgname}/config.guess)
+ rm -rf ${_builddir}
+ mkdir ${_builddir} && cd ${_builddir}
- mkdir build
- cd build
+ [[ $CARCH == "x86_64" ]] && CONFIGFLAG="--enable-64-bit-bfd --disable-multilib"
- CC="gcc -L$(pwd)/bfd/.libs/"
- if [ "${CARCH}" = "x86_64" ]; then
- ../configure --build=$(../config.guess) \
- --disable-multilib \
- --disable-nls \
- --enable-64-bit-bfd \
- --enable-install-libbfd \
- --includedir=/usr/$(../config.guess)/include \
- --infodir=/usr/share/info \
- --libdir=/usr/lib \
- --mandir=/usr/share/man \
- --prefix=/usr \
- --target=avr
- else
- ../configure --build=$(../config.guess) \
- --disable-nls \
- --enable-install-libbfd \
- --includedir=/usr/$(../config.guess)/include \
- --infodir=/usr/share/info \
- --libdir=/usr/lib \
- --mandir=/usr/share/man \
- --prefix=/usr \
- --target=avr
- fi
+ ${srcdir}/${_pkgname}/configure \
+ --prefix=/usr \
+ --build=${config_guess} \
+ --disable-nls \
+ --enable-install-libbfd \
+ --includedir=/usr/${config_guess}/include \
+ --infodir=/usr/share/info \
+ --libdir=/usr/lib \
+ --mandir=/usr/share/man \
+ --target=avr \
+ $CONFIGFLAG
- # This checks the host environment and makes sure all the necessary tools are available to compile Binutils.
- make configure-host
+ # This checks the host environment and makes sure all the necessary tools are available to compile Binutils.
+ make configure-host
- make tooldir=/usr
+ make tooldir=${pkgdir}/usr
}
package() {
- cd "${srcdir}"/${pkgname/avr-}-${pkgver}
+ cd ${srcdir}/${_builddir}
- cd build
- make DESTDIR="${pkgdir}" tooldir=/usr install
+ make DESTDIR=${pkgdir} tooldir=/usr install
- rm -f ${pkgdir}/usr/lib/libiberty.a
+ rm -f ${pkgdir}/usr/lib/libiberty.a
- for bin in addr2line ar as c++filt gprof ld nm objcopy objdump ranlib readelf size strings strip ; do
- rm -f ${pkgdir}/usr/bin/${bin} || return 1
- done
+ for bin in ar as nm objcopy objdump ranlib strip ; do
+ rm -f ${pkgdir}/usr/bin/${bin}
+ done
- for info in as bfd binutils configure gprof ld standards; do
- mv ${pkgdir}/usr/share/info/${info}.info ${pkgdir}/usr/share/info/avr-${info}.info
- done
+ for info in as bfd binutils configure gprof ld standards; do
+ mv ${pkgdir}/usr/share/info/${info}.info ${pkgdir}/usr/share/info/avr-${info}.info
+ done
}
+md5sums=('de2ac4298732827f8af706fc24020330')
diff --git a/community/avr-gcc/PKGBUILD b/community/avr-gcc/PKGBUILD
index eff6d6b91..e09943802 100644
--- a/community/avr-gcc/PKGBUILD
+++ b/community/avr-gcc/PKGBUILD
@@ -1,60 +1,70 @@
-# $Id: PKGBUILD 67673 2012-03-13 17:43:08Z schuay $
+# $Id: PKGBUILD 69308 2012-04-13 08:26:08Z schuay $
# Maintainer: schuay <jakob.gruber@gmail.com>
# Contributor: Brad Fanella <bradfanella@archlinux.us>
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
# Contributor: danst0 <danst0@west.de>
pkgname=avr-gcc
-pkgver=4.6.3
+_pkgname=gcc
+pkgver=4.7.0
pkgrel=1
pkgdesc="The GNU avr Compiler Collection"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL' 'custom')
url="http://gcc.gnu.org/"
-depends=('binutils-avr>=2.22' 'cloog' 'ppl' 'gcc-libs>=4.6.0' 'libmpc')
+depends=('avr-binutils>=2.22-3' 'cloog' 'ppl' 'gcc-libs>=4.7.0' 'libmpc')
provides=("gcc-avr=$pkgver")
replaces=('gcc-avr')
-options=('!ccache' '!distcc' '!emptydirs' '!libtool' '!strip')
-source=(http://ftp.gnu.org/gnu/gcc/${pkgname/avr-}-${pkgver}/gcc-{core,g++}-${pkgver}.tar.bz2)
+options=('!libtool' '!emptydirs' '!libtool' '!strip')
+source=(http://ftp.gnu.org/gnu/gcc/${_pkgname}-${pkgver}/gcc-${pkgver}.tar.bz2)
+
+_basedir=${srcdir}/${_pkgname}-${pkgver}
build() {
+ # default CFLAGS lead to issues later on when configure
+ # calls avr-gcc with -march set.
export CFLAGS="-O2 -pipe"
export CXXFLAGS="-O2 -pipe"
- cd "${srcdir}/${pkgname/avr-}-${pkgver}"
+ cd ${_basedir}
- mkdir build
- cd build
- ../configure --disable-libssp \
- --disable-nls \
- --enable-languages=c,c++ \
- --infodir=/usr/share/info \
+ # Do not install libiberty
+ sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
+
+ echo ${pkgver} > gcc/BASE-VER
+
+ cd ${srcdir}
+ mkdir gcc-build && cd gcc-build
+
+ ${_basedir}/configure \
+ --prefix=/usr \
--libdir=/usr/lib \
--libexecdir=/usr/lib \
--mandir=/usr/share/man \
- --prefix=/usr \
+ --infodir=/usr/share/info \
+ --enable-languages=c,c++ \
+ --disable-libssp \
+ --disable-nls \
--target=avr \
- --with-gnu-as \
- --with-gnu-ld \
--with-as=/usr/bin/avr-as \
- --with-ld=/usr/bin/avr-ld
+ --with-ld=/usr/bin/avr-ld \
+ --with-gnu-as \
+ --with-gnu-ld
make
}
package() {
- cd "${srcdir}/${pkgname/avr-}-${pkgver}"
+ cd ${srcdir}/gcc-build
- cd build
make -j1 DESTDIR=${pkgdir} install
- install -Dm644 "${srcdir}/${pkgname/avr-}-${pkgver}/COPYING.RUNTIME" \
- "${pkgdir}/usr/share/licenses/${pkgname}/RUNTIME.LIBRARY.EXCEPTION"
+ # Install Runtime Library Exception
+ install -Dm644 ${_basedir}/COPYING.RUNTIME \
+ ${pkgdir}/usr/share/licenses/${pkgname}/RUNTIME.LIBRARY.EXCEPTION
- rm -f ${pkgdir}/usr/lib/libiberty.a
rm -rf ${pkgdir}/usr/share/man/man7
rm -rf ${pkgdir}/usr/share/info
}
-md5sums=('766091220c6a14fcaa2c06dd573e3758'
- '37515158a0fb3d0800ec41a08c05e69e')
+md5sums=('2a0f1d99fda235c29d40b561f81d9a77')
diff --git a/community/dmd/PKGBUILD b/community/dmd/PKGBUILD
index c0e843c15..9eab4e27a 100644
--- a/community/dmd/PKGBUILD
+++ b/community/dmd/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 68172 2012-03-18 20:40:01Z svenstaro $
+# $Id: PKGBUILD 69334 2012-04-14 03:33:13Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Chris Brannon <cmbrannon79@gmail.com>
# Contributor: Andrea Scarpino <andrea@archlinux.org>
@@ -7,15 +7,15 @@
pkgname=('dmd' 'libphobos')
pkgbase=dmd
-pkgver=2.058
-pkgrel=2
+pkgver=2.059
+pkgrel=1
pkgdesc="The Digital Mars D compiler"
arch=('i686' 'x86_64')
url="http://www.digitalmars.com/d/2.0/"
source=(http://ftp.digitalmars.com/$pkgname.$pkgver.zip
- tools.tar.gz::https://github.com/D-Programming-Language/tools/tarball/v${pkgver})
-md5sums=('81a0fe7b635d3a38ecbefff6048a37fe'
- 'cce5249b59a38a4c0eddf113aff87698')
+ tools-${pkgver}.tar.gz::https://github.com/D-Programming-Language/tools/tarball/v${pkgver})
+md5sums=('803b182e71c4b021dfd1811066201140'
+ '1605a9cff8ac7b2228dad5f4f217dfec')
license=('custom')
[[ $CARCH == "x86_64" ]] && _archbits="64"
@@ -33,8 +33,9 @@ build() {
cd ../phobos
make -f posix.mak MODEL=$_archbits DMD=../dmd/dmd
- cd $srcdir/D-Programming-Language-tools-*
- $srcdir/dmd2/src/dmd/dmd -I$srcdir/dmd2/src/druntime/import/ -I$srcdir/dmd2/src/phobos -L-L$srcdir/dmd2/src/phobos/generated/linux/release/$_archbits/ rdmd.d
+ # Building rdmd ourselves breaks in dmd 2.059
+ #cd $srcdir/D-Programming-Language-tools-*
+ #$srcdir/dmd2/src/dmd/dmd -I$srcdir/dmd2/src/druntime/import/ -I$srcdir/dmd2/src/phobos -L-L$srcdir/dmd2/src/phobos/generated/linux/release/$_archbits/ rdmd.d
}
package_dmd() {
@@ -57,7 +58,12 @@ package_dmd() {
find $pkgdir/usr -type f | xargs chmod 0644
chmod 755 $pkgdir/usr/bin/*
- install -Dm755 $srcdir/D-Programming-Language-tools-*/rdmd $pkgdir/usr/bin/rdmd
+ install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/ddemangle $pkgdir/usr/bin/ddemangle
+ install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/dman $pkgdir/usr/bin/dman
+ install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/dumpobj $pkgdir/usr/bin/dumpobj
+ install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/obj2asm $pkgdir/usr/bin/obj2asm
+ install -Dm755 $srcdir/dmd2/linux/bin${_archbits}/rdmd $pkgdir/usr/bin/rdmd
+ #install -Dm755 $srcdir/D-Programming-Language-tools-*/rdmd $pkgdir/usr/bin/rdmd
}
package_libphobos() {
diff --git a/community/libcryptui/PKGBUILD b/community/libcryptui/PKGBUILD
new file mode 100644
index 000000000..3e015cecf
--- /dev/null
+++ b/community/libcryptui/PKGBUILD
@@ -0,0 +1,30 @@
+# $Id: PKGBUILD 69329 2012-04-13 22:06:22Z bgyorgy $
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=libcryptui
+pkgver=3.4.0
+pkgrel=1
+pkgdesc="Library for OpenPGP prompts"
+arch=('i686' 'x86_64')
+url="http://git.gnome.org/browse/libcryptui/"
+license=('GPL')
+depends=('gtk3' 'libsm' 'gpgme' 'dbus-glib' 'libnotify' 'libgnome-keyring' 'dconf')
+makedepends=('intltool' 'gobject-introspection')
+options=('!libtool')
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('23e84fd9e733e58bd1640b229cfc35830287628125f0f15604ea6aecd606fac7')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-static --disable-schemas-compile
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+}
diff --git a/community/libcryptui/libcryptui.install b/community/libcryptui/libcryptui.install
new file mode 100644
index 000000000..7a903e80c
--- /dev/null
+++ b/community/libcryptui/libcryptui.install
@@ -0,0 +1,11 @@
+post_install() {
+ glib-compile-schemas usr/share/glib-2.0/schemas
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+post_remove() {
+ post_install $1
+}
diff --git a/community/nbd/PKGBUILD b/community/nbd/PKGBUILD
index 2952aacb4..a4d998095 100644
--- a/community/nbd/PKGBUILD
+++ b/community/nbd/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 68323 2012-03-21 16:50:13Z svenstaro $
+# $Id: PKGBUILD 69320 2012-04-13 16:10:58Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Christian Hesse <mail@eworm.de>
# Contributor: Ionut Biru <ibiru@archlinux.org>
@@ -6,7 +6,7 @@
pkgname=nbd
pkgver=3.0
-pkgrel=1
+pkgrel=2
pkgdesc="Tools for network block devices, allowing you to use remote block devices over TCP/IP."
arch=('i686' 'x86_64')
url="http://nbd.sourceforge.net"
@@ -17,7 +17,7 @@ backup=('etc/nbd-server/config')
depends=('glib2')
install=nbd.install
md5sums=('81f549155267536ad30851eb50ee8d1c'
- '075be420c3d7d7fc9408def3cb8c470d'
+ '2d05d426b8c2708d5f8a0d028fcbae05'
'e7b13a8b3369e11927d9917664557efa')
build(){
diff --git a/community/nbd/config b/community/nbd/config
index f90c36b23..777f0ef24 100644
--- a/community/nbd/config
+++ b/community/nbd/config
@@ -1,4 +1,3 @@
-# This is a comment
[generic]
# The [generic] section is required, even if nothing is specified
# there.
@@ -7,9 +6,18 @@
# _before_ opening files.
user = nbd
group = nbd
+ # Since version 2.9.17, nbd-server will do exports on a name
+ # basis (the used name is the name of the section in which the
+ # export is specified). This however required an incompatible
+ # protocol change. To enable backwards-compatible port-based
+ # exports, uncomment the following line:
+ # oldstyle = true
[export1]
exportname = /export/nbd/export1-file
- port = 12345
+ # The following line will be ignored unless the
+ # "oldstyle = true" line in the generic section above is
+ # enabled.
+ #port = 12345
authfile = /export/nbd/export1-authfile
timeout = 30
filesize = 10000000
@@ -20,5 +28,6 @@
postrun = rm -f %s
[otherexport]
exportname = /export/nbd/experiment
- port = 12346
- # The other options are all optional.
+ # The other options are all optional, except this one in case
+ # the oldstyle option is used in [generic]:
+ # port = 12346
diff --git a/community/openbsd-netcat/PKGBUILD b/community/openbsd-netcat/PKGBUILD
index 35f531dea..bcd294ade 100644
--- a/community/openbsd-netcat/PKGBUILD
+++ b/community/openbsd-netcat/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 67793 2012-03-14 13:02:34Z spupykin $
+# $Id: PKGBUILD 69318 2012-04-13 16:10:15Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Andrej Gelenberg <andrej.gelenberg@udo.edu>
pkgname="openbsd-netcat"
pkgver=1.105
-pkgrel=1
+pkgrel=2
_patch=4
pkgdesc="TCP/IP swiss army knife. OpenBSD variant."
arch=('i686' 'x86_64')
url="http://packages.debian.org/sid/netcat-openbsd"
license=('BSD')
-depends=('glib2' 'libbsd')
+depends=('libbsd')
makedepends=('gcc' 'make')
source=("http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver}.orig.tar.gz"
"http://ftp.debian.org/debian/pool/main/n/netcat-openbsd/netcat-openbsd_${pkgver}-${_patch}.debian.tar.gz")
diff --git a/community/pgadmin3/PKGBUILD b/community/pgadmin3/PKGBUILD
index 36ae0b451..f4332f51e 100644
--- a/community/pgadmin3/PKGBUILD
+++ b/community/pgadmin3/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 69179 2012-04-10 00:12:07Z spupykin $
+# $Id: PKGBUILD 69321 2012-04-13 16:11:02Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
# Contributor: Benjamin Andresen <benny@klapmuetz.org>
@@ -6,7 +6,7 @@
pkgname=pgadmin3
pkgver=1.14.2
-pkgrel=1
+pkgrel=2
pkgdesc="Comprehensive design and management interface for PostgreSQL"
arch=('i686' 'x86_64')
url="http://www.pgadmin.org"
@@ -18,13 +18,13 @@ md5sums=('49f039353539b346616b663bbedd17c8')
build() {
cd "$srcdir"
+ convert pgadmin3-${pkgver}/pgadmin/include/images/pgAdmin3.ico pgadmin3.png
+ cp pgadmin3-3.png pgadmin3.png
gendesk
cd "pgadmin3-${pkgver}"
[ -f Makefile ] || ./configure --prefix=/usr
make
-
- convert pgadmin/include/images/pgAdmin3.ico pgadmin3.png
}
package() {
diff --git a/community/seahorse-nautilus/PKGBUILD b/community/seahorse-nautilus/PKGBUILD
new file mode 100644
index 000000000..884840d1f
--- /dev/null
+++ b/community/seahorse-nautilus/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 69331 2012-04-14 01:17:42Z bgyorgy $
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+
+pkgname=seahorse-nautilus
+pkgver=3.4.0
+pkgrel=1
+pkgdesc="PGP encryption and signing for nautilus"
+arch=('i686' 'x86_64')
+url="http://git.gnome.org/browse/seahorse-nautilus/"
+license=('GPL')
+depends=('gconf' 'libcryptui' 'nautilus')
+makedepends=('intltool')
+replaces=('seahorse-plugins')
+options=('!libtool')
+install=$pkgname.install
+source=(http://ftp.gnome.org/pub/GNOME/sources/$pkgname/${pkgver%.*}/$pkgname-$pkgver.tar.xz)
+sha256sums=('4724438b8c09d5c25c30a304cbc398950d5a2fdd1e2ef3f6389ffbf18ac01480')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
+ --disable-static
+ make
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ make DESTDIR="$pkgdir/" install
+}
diff --git a/community/seahorse-nautilus/seahorse-nautilus.install b/community/seahorse-nautilus/seahorse-nautilus.install
new file mode 100644
index 000000000..2eaa60550
--- /dev/null
+++ b/community/seahorse-nautilus/seahorse-nautilus.install
@@ -0,0 +1,11 @@
+post_install() {
+ update-desktop-database -q
+}
+
+post_upgrade() {
+ post_install $1
+}
+
+post_remove() {
+ post_install $1
+}
diff --git a/community/sfml/PKGBUILD b/community/sfml/PKGBUILD
index 070110d74..9d7659488 100644
--- a/community/sfml/PKGBUILD
+++ b/community/sfml/PKGBUILD
@@ -1,45 +1,22 @@
-# $Id: PKGBUILD 68697 2012-03-31 21:54:47Z svenstaro $
+# $Id: PKGBUILD 69315 2012-04-13 15:58:59Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Ondrej Martinak <omartinak@gmail.com>
pkgname=sfml
-
-_git=true
-
-if [[ "${_git}" = "true" ]]; then
- pkgver=1.99.git20120331
-fi
-
+pkgver=2.0rc1
pkgrel=1
pkgdesc='A simple, fast, cross-platform, and object-oriented multimedia API'
arch=('i686' 'x86_64')
url='http://www.sfml-dev.org/'
license=('zlib')
depends=('libsndfile' 'libxrandr' 'libjpeg' 'openal' 'glew' 'freetype2')
-makedepends=('git' 'mesa' 'cmake' 'doxygen')
+makedepends=('mesa' 'cmake' 'doxygen')
install=sfml.install
-
-_gitroot='https://github.com/LaurentGomila/SFML.git'
-_gitname='SFML'
+source=("2.0-rc.tar.gz::https://github.com/LaurentGomila/SFML/tarball/2.0-rc")
+md5sums=('03c8e6817f4525092b94a3d44e8eada8')
build() {
- cd "$srcdir"
- msg "Connecting to GIT server...."
-
- if [ -d $_gitname ] ; then
- cd $_gitname && git pull origin
- msg "The local files are updated."
- else
- git clone $_gitroot
- cd $_gitname
- fi
-
- msg "GIT checkout done or server timeout"
- msg "Starting make..."
-
- rm -rf "$srcdir/$_gitname-build"
- cp -r "$srcdir/$_gitname" "$srcdir/$_gitname-build"
- cd "$srcdir/$_gitname-build"
+ cd "$srcdir"/Laurent*
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/usr .. \
@@ -50,7 +27,7 @@ build() {
}
package() {
- cd "$srcdir/$_gitname-build/build"
+ cd "$srcdir"/Laurent*/build
make DESTDIR="$pkgdir/" install
diff --git a/community/stone-soup/PKGBUILD b/community/stone-soup/PKGBUILD
index 232de3609..3dc942861 100644
--- a/community/stone-soup/PKGBUILD
+++ b/community/stone-soup/PKGBUILD
@@ -1,22 +1,28 @@
# Maintainer: Jakob Gruber <jakob.gruber@gmail.com>
pkgname=stone-soup
-pkgver=0.10.1
+pkgver=0.10.2
pkgrel=1
-pkgdesc='An open-source, single-player, role-playing roguelike game of exploration and treasure-hunting'
+pkgdesc='Open-source, single-player, role-playing roguelike game of exploration and treasure-hunting'
arch=('i686' 'x86_64')
url='http://crawl.develz.org/'
-depends=('lua' 'ncurses' 'sdl_image' 'sqlite3' 'libgl' 'mesa' 'freetype2')
-makedepends=('bison' 'flex')
+depends=('lua' 'ncurses' 'sdl_image' 'sqlite' 'libgl' 'mesa' 'freetype2')
+makedepends=('bison' 'flex' 'gendesk')
conflicts=('crawl' 'stone-soup-tile' 'stone-soup-git')
license=('custom')
install=stone-soup.install
-source=("http://downloads.sourceforge.net/sourceforge/crawl-ref/stone_soup-${pkgver}-nodeps.tar.xz"
- "${pkgname}.desktop")
+source=("http://downloads.sourceforge.net/sourceforge/crawl-ref/stone_soup-${pkgver}-nodeps.tar.xz")
+md5sums=('60f46bc6936db6fe5de81220ab8513bd')
+
+# used by gendesk to create .desktop file
+_exec=('crawl-tiles')
+_name=('Dungeon Crawl Stone Soup')
build() {
+ cd "$srcdir"
+ gendesk -n
- cd "${srcdir}/stone_soup-${pkgver}/source"
+ cd "stone_soup-${pkgver}/source"
# adjust makefile to use /usr/bin, owner root:root,
# disable setgid on executable
@@ -61,5 +67,3 @@ build() {
}
# vim: ts=4:sw=4:expandtab
-md5sums=('3afd529a30d73c9ab896e1704c4215a5'
- 'afdacb4c39342e75674efb88eeb3da21')
diff --git a/community/xmlrpc-c/PKGBUILD b/community/xmlrpc-c/PKGBUILD
index a51b38f27..b387f32cb 100644
--- a/community/xmlrpc-c/PKGBUILD
+++ b/community/xmlrpc-c/PKGBUILD
@@ -1,13 +1,15 @@
-# $Id: PKGBUILD 66818 2012-02-28 23:03:08Z arodseth $
+# $Id: PKGBUILD 69311 2012-04-13 13:20:52Z 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
+# The webpage is unclear on which version is the latest advanced version (2012-04-13)
+# Both the 1.29x series and 1.30.1 are mentioned. I'll go with 1.29.2 for now.
pkgver=1.29.2
epoch=1
-pkgrel=1
+pkgrel=2
pkgdesc='XML-RPC for C and C++'
arch=('x86_64' 'i686')
url='http://xmlrpc-c.sourceforge.net/'
@@ -15,8 +17,8 @@ license=('custom')
depends=('curl' 'libxml2' 'gcc-libs' 'zlib')
makedepends=('libtool' 'setconf')
options=('!makeflags' '!libtool')
-source=("http://xmlrpc-c.svn.sourceforge.net/viewvc/xmlrpc-c/advanced.tar.gz")
-sha256sums=('0807e829ef333bd161d0e6fa1327e6698f467015366fb70f236753cb096ee794')
+source=("$pkgname-advanced-$pkgver.tar.gz::http://xmlrpc-c.svn.sourceforge.net/viewvc/xmlrpc-c/advanced.tar.gz")
+sha256sums=('68f5ae842a490778899f51a7ebec3399b9238f28db94b764646202c48bd8381f')
build() {
cd "$srcdir/advanced"