summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-10-30 01:04:25 -0700
committerroot <root@rshg054.dnsready.net>2013-10-30 01:04:25 -0700
commit7c151ac5589d3dbef5972f69a62b847ecf565bfa (patch)
tree9450bd13169930e602731e9c431b79fdaaad2c02 /community
parent38b1ce25596ae456fefb3214a73c3d1005da568f (diff)
Wed Oct 30 01:01:59 PDT 2013
Diffstat (limited to 'community')
-rw-r--r--community/bmake/PKGBUILD29
-rw-r--r--community/chrony/PKGBUILD10
-rw-r--r--community/exim/PKGBUILD11
-rw-r--r--community/fbpanel/PKGBUILD6
-rw-r--r--community/gmic/PKGBUILD6
-rw-r--r--community/ipset/01-Fix-configure-failure-when-with-kmod.patch43
-rw-r--r--community/ipset/PKGBUILD15
-rw-r--r--community/libclens/PKGBUILD43
-rw-r--r--community/libmediainfo/PKGBUILD6
-rw-r--r--community/lz4/PKGBUILD6
-rw-r--r--community/mailman/PKGBUILD10
-rw-r--r--community/mediainfo-gui/PKGBUILD6
-rw-r--r--community/mediainfo/PKGBUILD6
-rw-r--r--community/mg/PKGBUILD32
-rw-r--r--community/mg/README74
-rw-r--r--community/mg/cleanup.patch178
-rw-r--r--community/mpv/PKGBUILD8
-rw-r--r--community/passenger/PKGBUILD17
-rw-r--r--community/perl-berkeleydb/PKGBUILD13
-rw-r--r--community/perl-fuse/PKGBUILD15
-rw-r--r--community/perl-fuse/build-fix.patch13
-rw-r--r--community/perl-gstreamer/PKGBUILD8
-rw-r--r--community/plank/PKGBUILD8
-rw-r--r--community/python-psutil/PKGBUILD6
-rw-r--r--community/squid/PKGBUILD7
-rw-r--r--community/tcc/PKGBUILD10
-rw-r--r--community/vdrift/PKGBUILD4
27 files changed, 216 insertions, 374 deletions
diff --git a/community/bmake/PKGBUILD b/community/bmake/PKGBUILD
new file mode 100644
index 000000000..76eb57865
--- /dev/null
+++ b/community/bmake/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 99556 2013-10-29 17:22:35Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Alex Szczuczko <alex at szc dot ca>
+# Contributor: Devin Cofer <ranguvar{AT]archlinux[DOT}us>
+# Contributor: Imanol Celaya <ilcra1989@gmail.com>
+
+pkgname=bmake
+pkgver=20131001
+pkgrel=1
+pkgdesc="Portable version of the NetBSD 'make' build tool"
+arch=('i686' 'x86_64')
+url="http://www.crufty.net/help/sjg/bmake.html"
+license=('BSD')
+depends=('bmake-mk-files')
+source=("http://www.crufty.net/ftp/pub/sjg/bmake-$pkgver.tar.gz")
+sha256sums=('0a91ac60b82270c4b4f21a43e66eb51c32b4df55e01ea592e42eb323909a559b')
+
+build() {
+ rm -rf bmake-build
+ mkdir bmake-build
+ cd bmake-build
+ ../bmake/configure --prefix=/usr --with-default-sys-path=/usr/share/mk
+ sh make-bootstrap.sh
+}
+
+package() {
+ install -Dm755 bmake-build/bmake "$pkgdir"/usr/bin/bmake
+ install -Dm644 bmake/bmake.1 "$pkgdir"/usr/share/man/man1/bmake.1
+}
diff --git a/community/chrony/PKGBUILD b/community/chrony/PKGBUILD
index b6b088bee..c04c7d4a1 100644
--- a/community/chrony/PKGBUILD
+++ b/community/chrony/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 95307 2013-08-09 02:41:57Z thestinger $
+# $Id: PKGBUILD 99445 2013-10-29 00:06:24Z thestinger $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Daniel Micay <danielmicay@gmail.com>
# Contributor: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
@@ -9,7 +9,7 @@
pkgname=chrony
pkgver=1.29
-pkgrel=1
+pkgrel=2
pkgdesc='Lightweight NTP client and server'
arch=('i686' 'x86_64')
url="http://chrony.tuxfamily.org/"
@@ -34,9 +34,9 @@ package() {
install -Dm0644 "$srcdir/$pkgname-$pkgver/examples/chrony.conf.example" "$pkgdir/etc/chrony.conf"
- # Arch's kernel has enhanced RTC support, make chrony use it by default
- sed -i '/^! \(rtconutc\|rtcfile \/var\/lib\/chrony\/rtc\)$/ s/^! //' \
- "$pkgdir/etc/chrony.conf"
+ echo -e "\n# Enable kernel RTC sync\nrtcsync" >> "$pkgdir/etc/chrony.conf"
+
+ sed -i '/^! rtconutc$/ s/^! //' "$pkgdir/etc/chrony.conf"
mv "$pkgdir/usr/sbin/chronyd" "$pkgdir/usr/bin"
rmdir "$pkgdir/usr/sbin"
diff --git a/community/exim/PKGBUILD b/community/exim/PKGBUILD
index f2bacb9de..403671761 100644
--- a/community/exim/PKGBUILD
+++ b/community/exim/PKGBUILD
@@ -1,11 +1,12 @@
-# $Id: PKGBUILD 92250 2013-06-03 11:15:19Z allan $
-# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de>
+# $Id: PKGBUILD 99560 2013-10-29 18:01:02Z bpiotrowski $
+# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
+# Contributor: Lukas Fleischer <archlinux at cryptocrack dot de>
# Contributor: Angel Velasquez <angvp@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
pkgname=exim
-pkgver=4.80.1
-pkgrel=5
+pkgver=4.82
+pkgrel=1
pkgdesc="Message Transfer Agent"
arch=('x86_64' 'i686')
url='http://www.exim.org/'
@@ -25,7 +26,7 @@ source=("http://mirror.switch.ch/ftp/mirror/exim/exim/exim4/exim-$pkgver.tar.bz2
exim@.service
exim.socket
exim-submission.socket)
-sha256sums=('9565b10f06be224fd03adafae2e07e6fdbb479f8873e3894ddb13f98eeebe78f'
+sha256sums=('46dedfb6ced2aa4a1eddc5d8ce46a790a961508bd389faa2e215302ae80d91cf'
'932c9149b6809c70e94c1256e28325d197bbf80d27322793e217d4b692d49c5a'
'7f1408f9c5d905968e665941f5c5efcf9da53e7a0bbef6c66220343bc2ae994b'
'd33b8595e92ec812c9f6961f98e50b6a3986d5bd966ed4efec2c52c1fce47636'
diff --git a/community/fbpanel/PKGBUILD b/community/fbpanel/PKGBUILD
index 53119bb8e..287189613 100644
--- a/community/fbpanel/PKGBUILD
+++ b/community/fbpanel/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 98391 2013-10-09 14:15:54Z spupykin $
+# $Id: PKGBUILD 99522 2013-10-29 10:57:06Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Jeff Mickey <jeff@archlinux.org>
# Contributor: Torin Daniel <torindan@gmail.com>
@@ -6,7 +6,7 @@
pkgname=fbpanel
pkgver=6.1
-pkgrel=4
+pkgrel=5
pkgdesc="NetWM compliant desktop panel"
arch=('i686' 'x86_64')
url="http://fbpanel.sourceforge.net/"
@@ -20,7 +20,7 @@ md5sums=('80ca0c64195b30587cfcb8c2cd9887a0'
build() {
cd "$srcdir/$pkgname-$pkgver"
patch -p1 <$srcdir/battery_fix.patch
- ./configure --prefix=/usr
+ ./configure --prefix=/usr --libexecdir=/usr/lib
echo "LDFLAGSX += -lX11 -lm" >>config.mk
make
}
diff --git a/community/gmic/PKGBUILD b/community/gmic/PKGBUILD
index 847a91c81..3c4dece82 100644
--- a/community/gmic/PKGBUILD
+++ b/community/gmic/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 97134 2013-09-13 13:41:46Z spupykin $
+# $Id: PKGBUILD 99532 2013-10-29 11:26:02Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Jan "heftig" Steffens <jan.steffens@gmail.com>
# Contributor: farid <farid at archlinuc-br.org>
@@ -6,7 +6,7 @@
pkgbase=gmic
pkgname=("gmic" "gimp-plugin-gmic" "zart")
-pkgver=1.5.7.0
+pkgver=1.5.7.2
pkgrel=1
arch=("i686" "x86_64")
url="http://gmic.sourceforge.net"
@@ -15,7 +15,7 @@ makedepends=('gimp' 'qt4' 'fftw' 'openexr' 'opencv' 'mesa' 'gtk2')
#options=('!emptydirs')
source=("http://downloads.sourceforge.net/sourceforge/gmic/gmic_${pkgver}.tar.gz"
"opencv-buildfix.patch")
-md5sums=('76e4cc4847afb7fe8afa4d7f8690d4dc'
+md5sums=('08aa65f01b5bec9cb0ff71b30102cf4e'
'120319b0d6c81c5af186abe2281b79ca')
prepare() {
diff --git a/community/ipset/01-Fix-configure-failure-when-with-kmod.patch b/community/ipset/01-Fix-configure-failure-when-with-kmod.patch
deleted file mode 100644
index d42884355..000000000
--- a/community/ipset/01-Fix-configure-failure-when-with-kmod.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From a76488a84db452865e114336b3fde6257e327715 Mon Sep 17 00:00:00 2001
-From: Oliver Smith <oliver@8.c.9.b.0.7.4.0.1.0.0.2.ip6.arpa>
-Date: Fri, 11 Oct 2013 16:41:12 +0200
-Subject: [PATCH 1/2] netfilter: ipset: Fix configure failure when
- --with-kmod=no
-
-When configuring the sources to build without kernel modules, the path
-to the kernel sources was not set and the kernel header files were still
-checked.
-
-Now, we do not check the kernel sources for compatibility if we're not
-going to build any kernel modules.
-
-Signed-off-by: Oliver Smith <oliver@8.c.9.b.0.7.4.0.1.0.0.2.ip6.arpa>
-Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
----
- configure.ac | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index 0eb1022..d56328c 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -167,6 +167,8 @@ AC_CHECK_TYPES([union nf_inet_addr],,,[#include <linux/types.h>
- dnl Checks for functions
- AC_CHECK_FUNCS(gethostbyname2)
-
-+if test "$BUILDKMOD" == "yes"
-+then
- dnl Check kernel incompatibilities... Ugly like hell
- AC_MSG_CHECKING([kernel source for struct xt_action_param])
- if test -f $ksourcedir/include/linux/netfilter/x_tables.h && \
-@@ -309,6 +311,7 @@ else
- AC_MSG_RESULT(no)
- AC_MSG_ERROR([Netns support is required in the Linux kernel tree])
- fi
-+fi
-
- dnl Checks for compiler characteristics.
- dnl Check extra warning flags except
---
-1.8.4
-
diff --git a/community/ipset/PKGBUILD b/community/ipset/PKGBUILD
index 5ec207883..e62823d19 100644
--- a/community/ipset/PKGBUILD
+++ b/community/ipset/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 98882 2013-10-21 00:55:51Z seblu $
+# $Id: PKGBUILD 99568 2013-10-29 21:15:35Z seblu $
# Maintainer: Sébastien Luttringer
pkgname=ipset
-pkgver=6.20
-pkgrel=2
+pkgver=6.20.1
+pkgrel=1
pkgdesc='Administration tool for IP sets'
arch=('i686' 'x86_64')
url='http://ipset.netfilter.org'
@@ -11,17 +11,10 @@ license=('GPL2')
depends=('libmnl')
backup=("etc/$pkgname.conf")
source=("http://ipset.netfilter.org/$pkgname-$pkgver.tar.bz2"
- '01-Fix-configure-failure-when-with-kmod.patch'
"$pkgname.service")
-md5sums=('af28b3af356fff3e4a8e321ff7145678'
- '5569fd4ee93acac4ae01d091002cc2f5'
+md5sums=('8af741492752fbf24d3a28a9d1473d40'
'6be6a2b34c1f38fc8ad60828403e2077')
-prepare() {
- patch -p1 -d $pkgname-$pkgver < 01-Fix-configure-failure-when-with-kmod.patch
- cd $pkgname-$pkgver && ./autogen.sh
-}
-
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --sbindir=/usr/bin --with-kmod=no
diff --git a/community/libclens/PKGBUILD b/community/libclens/PKGBUILD
new file mode 100644
index 000000000..5e521a830
--- /dev/null
+++ b/community/libclens/PKGBUILD
@@ -0,0 +1,43 @@
+# $Id: PKGBUILD 99539 2013-10-29 11:41:22Z spupykin $
+# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
+# Maintainer: Dan Ziemba <zman0900@gmail.com>
+
+pkgname=libclens
+pkgver=0.7.0
+pkgrel=1
+pkgdesc="Convenience library to aid in porting code from OpenBSD"
+arch=(i686 x86_64)
+url="https://opensource.conformal.com/wiki/clens"
+license=(ISC)
+makedepends=(libbsd)
+options=('staticlibs')
+source=(https://opensource.conformal.com/snapshots/clens/clens-$pkgver.tar.gz)
+sha1sums=('71eb0011eef16f1e87131b5aba34d44db92b1145')
+
+build() {
+ cd "clens-$pkgver"
+ mkdir -p obj
+ make LOCALBASE=/usr
+}
+
+package() {
+ cd "clens-$pkgver"
+ make LOCALBASE=/usr DESTDIR="$pkgdir" install
+
+ mkdir -p $pkgdir/usr/share/licenses/libclens
+ cat <<EOF >$pkgdir/usr/share/licenses/libclens/LICENSE
+ ISC
+ .
+ Permission to use, copy, modify, and distribute this software for any
+ purpose with or without fee is hereby granted, provided that the above
+ copyright notice and this permission notice appear in all copies.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
+ IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
+ OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+EOF
+}
diff --git a/community/libmediainfo/PKGBUILD b/community/libmediainfo/PKGBUILD
index 3561880a4..a73eb9a2b 100644
--- a/community/libmediainfo/PKGBUILD
+++ b/community/libmediainfo/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 90920 2013-05-15 13:45:55Z spupykin $
+# $Id: PKGBUILD 99524 2013-10-29 10:57:24Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: hydro <hydro@freenet.de>
pkgname=libmediainfo
-pkgver=0.7.63
+pkgver=0.7.64
pkgrel=1
pkgdesc="shared library for mediainfo"
arch=('i686' 'x86_64')
@@ -14,7 +14,7 @@ makedepends=('libtool' 'automake' 'autoconf')
options=(!libtool)
source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2
libmediainfo-0.7.50-libmms.patch)
-md5sums=('7a50881744a29dac6f93a8f6cbaebc0c'
+md5sums=('27a6afbf5993c894bd38fab9b8e0fc27'
'2f4b21cc250f663d52b497dedb963e3b')
build() {
diff --git a/community/lz4/PKGBUILD b/community/lz4/PKGBUILD
index 4fcf145a9..8e8999037 100644
--- a/community/lz4/PKGBUILD
+++ b/community/lz4/PKGBUILD
@@ -1,12 +1,12 @@
-# $Id: PKGBUILD 99061 2013-10-23 18:48:04Z seblu $
+# $Id: PKGBUILD 99573 2013-10-29 21:29:01Z seblu $
# Maintainer: Sébastien Luttringer
# Contacted by mail, author use svn commit as release version.
# He only push tested release code into svn and support using revision as version
pkgname=lz4
-pkgver=106
-pkgrel=2
+pkgver=107
+pkgrel=1
pkgdesc='Very fast lossless compression algorithm'
arch=('i686' 'x86_64')
url='https://code.google.com/p/lz4/'
diff --git a/community/mailman/PKGBUILD b/community/mailman/PKGBUILD
index 91ef3a656..5bbe42856 100644
--- a/community/mailman/PKGBUILD
+++ b/community/mailman/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 83707 2013-02-04 14:51:45Z seblu $
-# Maintainer: Sébastien Luttringer <seblu@archlinux.org>
+# $Id: PKGBUILD 99571 2013-10-29 21:25:25Z seblu $
+# Maintainer: Sébastien Luttringer
# Contributor: Paul Mattal <paul@archlinux.org>
pkgname=mailman
-pkgver=2.1.15
-pkgrel=3
+pkgver=2.1.16
+pkgrel=1
pkgdesc='The GNU Mailing List Manager'
arch=(i686 x86_64)
license=('GPL')
@@ -20,7 +20,7 @@ source=("http://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tgz"
"$pkgname.profile.sh"
"$pkgname.profile.csh"
"$pkgname.service")
-md5sums=('7d207489e8e9de0727cb334d46029833'
+md5sums=('ab8969dc68661f7a7af3beb797a46b3e'
'ed04d062379eb21e39ce1e70e6b1ade2'
'a9c71ec940c56173415fbd49087d10b0'
'85a8c30ffc444e677b286f54df530482'
diff --git a/community/mediainfo-gui/PKGBUILD b/community/mediainfo-gui/PKGBUILD
index cf721eebe..d8fa8daba 100644
--- a/community/mediainfo-gui/PKGBUILD
+++ b/community/mediainfo-gui/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 90926 2013-05-15 13:47:03Z spupykin $
+# $Id: PKGBUILD 99528 2013-10-29 10:58:03Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: hydro <hydro@freenet.de>
pkgname=mediainfo-gui
-pkgver=0.7.63
+pkgver=0.7.64
pkgrel=1
pkgdesc="GUI for mediainfo"
arch=('i686' 'x86_64')
@@ -13,7 +13,7 @@ depends=('libmediainfo' 'wxgtk')
makedepends=('libtool' 'automake' 'autoconf')
install=mediainfo-gui.install
source=(http://downloads.sourceforge.net/mediainfo/mediainfo_${pkgver}.tar.bz2)
-md5sums=('bd794e4066b6bb197af23cb7b8ba832b')
+md5sums=('f5cb798cf3b121359ab3173d70526518')
build() {
cd $srcdir/MediaInfo/Project/GNU/GUI
diff --git a/community/mediainfo/PKGBUILD b/community/mediainfo/PKGBUILD
index 3166fd6ad..951ec689f 100644
--- a/community/mediainfo/PKGBUILD
+++ b/community/mediainfo/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 90924 2013-05-15 13:46:41Z spupykin $
+# $Id: PKGBUILD 99526 2013-10-29 10:57:46Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: hydro <hydro@freenet.de>
pkgname=mediainfo
-pkgver=0.7.63
+pkgver=0.7.64
pkgrel=1
pkgdesc="supplies technical and tag information about a video or audio file"
arch=('i686' 'x86_64')
@@ -12,7 +12,7 @@ license=('GPL')
depends=('libmediainfo')
makedepends=('libtool' 'automake' 'autoconf')
source=(http://downloads.sourceforge.net/mediainfo/${pkgname}_${pkgver}.tar.bz2)
-md5sums=('bd794e4066b6bb197af23cb7b8ba832b')
+md5sums=('f5cb798cf3b121359ab3173d70526518')
build() {
cd $srcdir/MediaInfo/Project/GNU/CLI
diff --git a/community/mg/PKGBUILD b/community/mg/PKGBUILD
index be271595b..607c3b6c2 100644
--- a/community/mg/PKGBUILD
+++ b/community/mg/PKGBUILD
@@ -1,34 +1,38 @@
-# $Id: PKGBUILD 62917 2012-01-29 07:15:53Z spupykin $
+# $Id: PKGBUILD 99541 2013-10-29 11:42:26Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Hannes Rist <hrist@phreeknet.org>
pkgname=mg
-pkgver=20110905
+pkgver=20130922
pkgrel=1
pkgdesc="mg is Micro GNU/emacs, this is a portable version of the mg maintained by the OpenBSD team."
arch=('i686' 'x86_64')
url="http://homepage.boetes.org/software/mg/"
-depends=('ncurses')
+depends=('ncurses' 'libbsd')
+makedepends=('bmake' 'libclens')
license=('custom')
options=(!libtool)
source=(http://homepage.boetes.org/software/mg/mg-$pkgver.tar.gz
- README
cleanup.patch)
-md5sums=('2de35316fa8ebafe6003efaae70b723e'
- '8cc5195ad4fabcf7c6782764f9617748'
- 'e009afe0d249593f3436b2fea110f72e')
+md5sums=('35bd196ab32bae3531d6bc48be8779d0'
+ '163ca88d422cf0cf0a3a44de9a2a3ac3')
-build() {
+prepare() {
cd $srcdir/$pkgname-$pkgver
- unset CFLAGS
patch -p1 <$srcdir/cleanup.patch
- ./configure
- make prefix=/usr
+}
+
+build() {
+ cd $srcdir/$pkgname-$pkgver
+ bmake prefix=/usr
+}
+
+package() {
+ cd $srcdir/$pkgname-$pkgver
mkdir -p $pkgdir/usr/bin
- make install INSTALL=/bin/install prefix=$pkgdir/usr
+ bmake install INSTALL=install prefix=/usr DESTDIR=$pkgdir BINDIR=/usr/bin
mkdir -p $pkgdir/usr/share/
- mv $pkgdir/usr/man $pkgdir/usr/share/
- install -D -m0644 $srcdir/README $pkgdir/usr/share/licenses/$pkgname/README
+ install -D -m0644 README $pkgdir/usr/share/licenses/$pkgname/README
}
diff --git a/community/mg/README b/community/mg/README
deleted file mode 100644
index cf2d78917..000000000
--- a/community/mg/README
+++ /dev/null
@@ -1,74 +0,0 @@
-[This is an edited version of the original mg README, updated slightly to
-reflect changes in the last 20 years.]
-
-
-Mg (mg) is a Public Domain EMACS style editor. It is "broadly"
-compatible with GNU Emacs, the latest creation of Richard M.
-Stallman, Chief GNUisance and inventor of Emacs. GNU Emacs (and other
-portions of GNU as they are released) are essentially free, (there are
-handling charges for obtaining it) and so is Mg. You may never have
-to learn another editor. (But probably will, at least long enough to
-port Mg...) Mg was formerly named MicroGnuEmacs, the name change was
-done at the request of Richard Stallman.
-
-Mg is not associated with the GNU project, and most of it does not
-have the copyright restrictions present in GNU Emacs. (However, some
-of the system dependent modules and the regular expression module do
-have copyright notices. Look at the source code for exact
-copyright restrictions.) The Mg authors individually may or may not
-agree with the opinions expressed by Richard Stallman in "The GNU
-Manifesto".
-
-This program is intended to be a small, fast, and portable editor for
-people who can't (or don't want to) run real Emacs for one reason
-or another. It is compatible with GNU because there shouldn't be
-any reason to learn more than one Emacs flavor.
-
-
-Beyond the work of Dave Conroy, author of the original public domain
-v30, the current version contains the work of:
-
- blarson@ecla.usc.edu Bob Larson
- mic@emx.utexas.edu Mic Kaczmarczik
- mwm@violet.berkeley.edu Mike Meyer
- sandra@cs.utah.edu Sandra Loosemore
- mp1u+@andrew.cmu.edu Michael Portuesi
- RCKG01M@CALSTATE.BITNET Stephen Walton
- hakanson@mist.cs.orst.edu Marion Hakanson
-
-People who have worked on previous versions of Mg:
-
- rtech!daveb@sun.com Dave Brower
-
-Currently maintained in the OpenBSD src tree, with contributions from
-many others.
-
-----------------------------------------------------------------------
-
-Known limitations:
-
-Recursive bindings may cause help and key rebinding code to go into
-an infinite loop, aborting with a stack overflow.
-
-Overwrite mode does not work in macros. (Characters are inserted
-rather than overwriting.)
-
-Dired mode has some problems: Rename does not update the buffer.
-Doing a dired again will update the buffer (whether it needs it or
-not) and will lose any marks for deletion. .. and . are not
-recognized as special cases.
-
-On systems with 16 bit integers, the kill buffer cannot exceed 32767
-bytes.
-
-
-
-New implementation oddities:
-
-insert and define-key are new commands corresponding to the mocklisp
-functions in Gnu Emacs. (Mg does not have non-command functions.)
-(Mg's insert will only insert one string.)
-
-The display wrap code does not work at all like that of GNU emacs.
-
-
diff --git a/community/mg/cleanup.patch b/community/mg/cleanup.patch
index 5a8e761cb..b12ed8fea 100644
--- a/community/mg/cleanup.patch
+++ b/community/mg/cleanup.patch
@@ -1,163 +1,21 @@
-Only in mg-20110120.my: autoexec.o
-Only in mg-20110120.my: basename.o
-Only in mg-20110120.my: basic.o
-Only in mg-20110120.my: buffer.o
-Only in mg-20110120.my: cinfo.o
-diff -wbBur mg-20110120/cmode.c mg-20110120.my/cmode.c
---- mg-20110120/cmode.c 2011-01-20 07:36:13.000000000 +0300
-+++ mg-20110120.my/cmode.c 2011-11-21 15:40:11.000000000 +0400
-@@ -158,7 +158,7 @@
- cc_indent(int f, int n)
- {
- int pi, mi; /* Previous indents */
-- int ci, dci; /* current indent, don't care */
-+ int ci; /* current indent, don't care */
- struct line *lp;
- int ret;
-
-@@ -181,7 +181,7 @@
- /* Strip leading space on current line */
- delleadwhite(FFRAND, 1);
- /* current indent is computed only to current position */
-- dci = getindent(curwp->w_dotp, &ci);
-+ getindent(curwp->w_dotp, &ci);
-
- if (pi + ci < 0)
- ret = indent(FFOTHARG, 0);
-@@ -217,7 +217,6 @@
- {
- int lo, co; /* leading space, current offset*/
- int nicol = 0; /* position count */
-- int ccol = 0; /* current column */
- int c = '\0'; /* current char */
- int newind = 0; /* new index value */
- int stringp = FALSE; /* in string? */
-@@ -226,7 +225,6 @@
- int nparen = 0; /* paren count */
- int obrace = 0; /* open brace count */
- int cbrace = 0; /* close brace count */
-- int contp = FALSE; /* Continue? */
- int firstnwsp = FALSE; /* First nonspace encountered? */
- int colonp = FALSE; /* Did we see a colon? */
- int questionp = FALSE; /* Did we see a question mark? */
-@@ -256,13 +254,11 @@
- nicol = 0;
+diff -wbBur mg-20130922/Makefile mg-20130922.y/Makefile
+--- mg-20130922/Makefile 2013-09-22 18:06:43.000000000 +0400
++++ mg-20130922.y/Makefile 2013-10-29 15:18:18.795139731 +0400
+@@ -4,7 +4,7 @@
+ NOGCCERROR= true
+ PROG= mg
- newind = 0;
-- ccol = nicol; /* current column */
- /* Compute modifiers */
- for (co = lo; co < llength(lp); co++) {
- c = lgetc(lp, co);
- /* We have a non-whitespace char */
- if (!firstnwsp && !isspace(c)) {
-- contp = TRUE;
- if (c == '#')
- cppp = TRUE;
- firstnwsp = TRUE;
-@@ -285,7 +281,6 @@
- } else if (c == '{') {
- obrace++;
- firstnwsp = FALSE;
-- contp = FALSE;
- } else if (c == '}') {
- cbrace++;
- } else if (c == '?') {
-@@ -294,9 +289,6 @@
- /* ignore (foo ? bar : baz) construct */
- if (!questionp)
- colonp = TRUE;
-- } else if (c == ';') {
-- if (nparen > 0)
-- contp = FALSE;
- } else if (c == '/') {
- /* first nonwhitespace? -> indent */
- if (firstnwsp) {
-Only in mg-20110120.my: cmode.o
-diff -wbBur mg-20110120/config.h mg-20110120.my/config.h
---- mg-20110120/config.h 2011-01-20 07:37:40.000000000 +0300
-+++ mg-20110120.my/config.h 2011-11-21 15:39:43.000000000 +0400
-@@ -7,4 +7,8 @@
- #ifndef MAXLOGNAME
- #define MAXLOGNAME LOGIN_NAME_MAX
- #endif
--#define HAVE_ARC4RANDOM
-+#define HAVE_NOSTRTONUM
-+#define HAVE_NOSTRLCPY
-+#define HAVE_NOSTRLCAT
-+#define HAVE_NOFGETLN
-+#define GNU_LS
-Only in mg-20110120.my: config.log
-Only in mg-20110120.my: dired.o
-Only in mg-20110120.my: dirname.o
-Only in mg-20110120.my: dir.o
-Only in mg-20110120.my: display.o
-Only in mg-20110120.my: echo.o
-Only in mg-20110120.my: extend.o
-Only in mg-20110120.my: fgetln.o
-diff -wbBur mg-20110120/fileio.c mg-20110120.my/fileio.c
---- mg-20110120/fileio.c 2008-12-30 19:04:23.000000000 +0300
-+++ mg-20110120.my/fileio.c 2011-11-21 15:43:12.000000000 +0400
-@@ -121,10 +121,8 @@
- * future writes will do the same thing.
- */
- if (bp && bp->b_fi.fi_mode) {
-- int ret;
--
- fchmod(fd, bp->b_fi.fi_mode & 07777);
-- ret = fchown(fd, bp->b_fi.fi_uid, bp->b_fi.fi_gid);
-+ (void)fchown(fd, bp->b_fi.fi_uid, bp->b_fi.fi_gid);
- }
- return (FIOSUC);
- }
-Only in mg-20110120.my: fileio.o
-Only in mg-20110120.my: file.o
-Only in mg-20110120.my: funmap.o
-Only in mg-20110120.my: grep.o
-Only in mg-20110120.my: help.o
-Only in mg-20110120.my: kbd.o
-Only in mg-20110120.my: keymap.o
-Only in mg-20110120.my: line.o
-Only in mg-20110120.my: macro.o
-Only in mg-20110120.my: main.o
-Only in mg-20110120.my: Makefile
-Only in mg-20110120.my: match.o
-Only in mg-20110120.my: mg
-Only in mg-20110120.my: modes.o
-Only in mg-20110120.my: paragraph.o
-Only in mg-20110120.my: random.o
-Only in mg-20110120.my: region.o
-Only in mg-20110120.my: re_search.o
-Only in mg-20110120.my: search.o
-Only in mg-20110120.my: spawn.o
-Only in mg-20110120.my: strlcat.o
-Only in mg-20110120.my: strlcpy.o
-Only in mg-20110120.my: strtonum.o
-Only in mg-20110120.my: theo.o
-Only in mg-20110120.my: ttyio.o
-Only in mg-20110120.my: ttykbd.o
-Only in mg-20110120.my: tty.o
-diff -wbBur mg-20110120/undo.c mg-20110120.my/undo.c
---- mg-20110120/undo.c 2011-01-03 01:57:57.000000000 +0300
-+++ mg-20110120.my/undo.c 2011-11-21 15:41:05.000000000 +0400
-@@ -464,14 +464,14 @@
- struct undo_rec *ptr, *nptr;
- int done, rval;
- struct line *lp;
-- int offset, save, dot;
-+ int offset, save;
- static int nulled = FALSE;
- int lineno;
+-LDADD+= -lcurses -lutil -lclens
++LDADD+= -lcurses -lutil -lclens -lbsd
+ DPADD+= ${LIBCURSES} ${LIBUTIL}
- if (n < 0)
- return (FALSE);
+ # (Common) compile-time options:
+@@ -17,7 +17,7 @@
+ #
+ CFLAGS = -O2
+ CFLAGS += -Wall -DFKEYS -DREGEX -DXKEYS
+-CFLAGS += -I/usr/local/include/clens
++CFLAGS += -I/usr/include/clens -isystem /usr/include/bsd -DLIBBSD_OVERLAY
-- dot = find_dot(curwp->w_dotp, curwp->w_doto);
-+ find_dot(curwp->w_dotp, curwp->w_doto);
-
- ptr = curbp->b_undoptr;
-
-Only in mg-20110120.my: undo.o
-Only in mg-20110120.my: version.o
-Only in mg-20110120.my: window.o
-Only in mg-20110120.my: word.o
-Only in mg-20110120.my: yank.o
+ SRCS= autoexec.c basic.c bell.c buffer.c cinfo.c dir.c display.c \
+ echo.c extend.c file.c fileio.c funmap.c help.c kbd.c keymap.c \
diff --git a/community/mpv/PKGBUILD b/community/mpv/PKGBUILD
index 66cf7c9a1..3f5d53af8 100644
--- a/community/mpv/PKGBUILD
+++ b/community/mpv/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 99435 2013-10-28 20:04:56Z bpiotrowski $
+# $Id: PKGBUILD 99558 2013-10-29 17:41:46Z bpiotrowski $
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: Eivind Uggedal <eivind@uggedal.com>
pkgname=mpv
pkgver=0.2.1
-pkgrel=3
+pkgrel=4
pkgdesc='Video player based on MPlayer/mplayer2'
arch=('i686' 'x86_64')
license=('GPL')
@@ -12,9 +12,9 @@ url='http://mpv.io'
depends=(
'portaudio' 'ffmpeg' 'lcms2' 'libdvdread' 'libcdio-paranoia' 'libxinerama'
'libquvi' 'mpg123' 'libxv' 'libxkbcommon' 'libva' 'lirc-utils'
- 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils'
+ 'desktop-file-utils' 'hicolor-icon-theme' 'xdg-utils' 'lua51'
)
-makedepends=('mesa' 'python-docutils' 'lua')
+makedepends=('mesa' 'python-docutils')
options=(!emptydirs)
install=mpv.install
source=("https://github.com/mpv-player/$pkgname/archive/v$pkgver.tar.gz")
diff --git a/community/passenger/PKGBUILD b/community/passenger/PKGBUILD
index b32b989fb..401cefd29 100644
--- a/community/passenger/PKGBUILD
+++ b/community/passenger/PKGBUILD
@@ -1,8 +1,8 @@
-# $Id: PKGBUILD 96150 2013-08-20 11:37:13Z spupykin $
+# $Id: PKGBUILD 99543 2013-10-29 12:13:00Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=passenger
-pkgver=4.0.14
+pkgver=4.0.21
pkgrel=1
pkgdesc="mod_rails passenger"
arch=('i686' 'x86_64')
@@ -14,11 +14,20 @@ makedepends=('apache')
install=passenger.install
options=('!emptydirs')
source=($pkgname-$pkgver.tar.gz::https://github.com/FooBarWidget/passenger/archive/release-$pkgver.tar.gz)
-md5sums=('064ba40c29364351e2a67c2ac6a13ce4')
+md5sums=('200ba8636baa06c9a44d30c7bbb50ac3')
prepare() {
cd $srcdir/passenger-release-$pkgver
- sed -i '1,1i#include <stdint.h>' ext/common/Utils/MD5.cpp
+ sed -i '1,1i#include <stdint.h>' \
+ ext/common/Utils/MD5.cpp \
+ ext/common/Logging.cpp \
+ ext/common/Utils/StrIntUtils.cpp \
+ ext/common/Utils.cpp \
+ ext/common/ApplicationPool2/AppTypes.cpp \
+ ext/boost/libs/thread/src/pthread/once.cpp \
+ ext/boost/libs/thread/src/pthread/once_atomic.cpp \
+ ext/boost/libs/thread/src/pthread/thread.cpp \
+ ext/boost/atomic/atomic.hpp
}
build(){
diff --git a/community/perl-berkeleydb/PKGBUILD b/community/perl-berkeleydb/PKGBUILD
index 59fc61a37..598d127e3 100644
--- a/community/perl-berkeleydb/PKGBUILD
+++ b/community/perl-berkeleydb/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 93668 2013-07-08 11:19:35Z spupykin $
+# $Id: PKGBUILD 99506 2013-10-29 10:25:03Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Charles Mauch <cmauch@gmail.com>
# Contributor: Francois Charette <firmicus@gmx.net>
pkgname=perl-berkeleydb
-pkgver=0.52
-pkgrel=1
+pkgver=0.53
+pkgrel=2
pkgdesc="Interface to Berkeley DB version 2, 3 or 4"
arch=('i686' 'x86_64')
url="http://search.cpan.org/dist/BerkeleyDB/"
@@ -13,7 +13,7 @@ license=('GPL' 'PerlArtistic')
depends=('perl' 'db')
options=('!emptydirs')
source=(http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/BerkeleyDB-$pkgver.tar.gz)
-md5sums=('e1031f4cd3062fdb1597af4373789d79')
+md5sums=('899c6967316c7a36b1d5b6a4c7ffbb02')
build() {
cd $srcdir/BerkeleyDB-$pkgver
@@ -22,8 +22,9 @@ build() {
}
package() {
- _dbver=`pacman -Q db | cut -d\ -f2 | cut -d- -f1`
- depends=('perl' "db=$_dbver")
+ _dbver1=`pacman -Q db | cut -d\ -f2 | cut -d- -f1 | cut -f1 -d.`
+ _dbver2=`pacman -Q db | cut -d\ -f2 | cut -d- -f1 | cut -f2 -d.`
+ depends=('perl' "db>=${_dbver1}.${_dbver2}" "db<${_dbver1}.$(expr $_dbver2 + 1)")
cd $srcdir/BerkeleyDB-$pkgver
make pure_install doc_install DESTDIR=$pkgdir
diff --git a/community/perl-fuse/PKGBUILD b/community/perl-fuse/PKGBUILD
index a7efcd34d..ca5b8ce33 100644
--- a/community/perl-fuse/PKGBUILD
+++ b/community/perl-fuse/PKGBUILD
@@ -1,17 +1,24 @@
-# $Id: PKGBUILD 95164 2013-08-06 11:52:21Z spupykin $
+# $Id: PKGBUILD 99530 2013-10-29 10:58:33Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer: Tom K <tomk@runbox.com>
pkgname=perl-fuse
-pkgver=0.15
+pkgver=0.16
pkgrel=1
pkgdesc="write filesystems in Perl using FUSE"
arch=('i686' 'x86_64')
url="http://search.cpan.org/dist/Fuse"
depends=('perl' 'fuse')
license=('GPL')
-source=(http://www.cpan.org/authors/id/D/DP/DPAVLIN/Fuse-$pkgver.tar.gz)
-md5sums=('5c521508bea036fed946d43b44d56056')
+source=(http://search.cpan.org/CPAN/authors/id/D/DP/DPATES/Fuse-$pkgver.tar.gz
+ build-fix.patch)
+md5sums=('d7f36eb55392270d2c6b2f05737b553f'
+ '16d985400e620286efdf4610d78cb5d6')
+
+prepare() {
+ cd $srcdir/Fuse-$pkgver
+ patch -p1 <$srcdir/build-fix.patch
+}
build() {
cd $srcdir/Fuse-$pkgver
diff --git a/community/perl-fuse/build-fix.patch b/community/perl-fuse/build-fix.patch
new file mode 100644
index 000000000..51cb5ebce
--- /dev/null
+++ b/community/perl-fuse/build-fix.patch
@@ -0,0 +1,13 @@
+diff -wbBur Fuse-0.16/Fuse.xs Fuse-0.16.q/Fuse.xs
+--- Fuse-0.16/Fuse.xs 2013-09-13 06:16:35.000000000 +0400
++++ Fuse-0.16.q/Fuse.xs 2013-10-29 14:38:44.000000000 +0400
+@@ -754,6 +754,9 @@
+
+ int _PLfuse_release (const char *file, struct fuse_file_info *fi) {
+ int rv;
++#ifndef PERL_HAS_64BITINT
++ char *temp;
++#endif
+ int flags = fi->flags;
+ FUSE_CONTEXT_PRE;
+ DEBUGf("release begin\n");
diff --git a/community/perl-gstreamer/PKGBUILD b/community/perl-gstreamer/PKGBUILD
index 99d656129..215b84d7e 100644
--- a/community/perl-gstreamer/PKGBUILD
+++ b/community/perl-gstreamer/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 91674 2013-05-26 09:25:14Z bluewind $
+# $Id: PKGBUILD 99484 2013-10-29 10:21:54Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Corrado Primier <bardo@aur.archlinux.org>
pkgname=perl-gstreamer
-pkgver=0.18
-pkgrel=2
+pkgver=0.19
+pkgrel=1
pkgdesc="Interface to the GStreamer library"
arch=('i686' 'x86_64')
url="http://search.cpan.org/dist/GStreamer"
@@ -12,7 +12,7 @@ license=('GPL' 'PerlArtistic')
depends=('glib-perl>=1.180' 'gstreamer0.10' 'perl-extutils-pkgconfig>=1.07' 'perl-extutils-depends>=0.205')
options=('!emptydirs')
source=(http://search.cpan.org/CPAN/authors/id/X/XA/XAOC/GStreamer-$pkgver.tar.gz)
-md5sums=('7ac748677f00d1fd966b09e10448cff6')
+md5sums=('886bc1f553fa288ca86842332ddadd8e')
build() {
cd GStreamer-${pkgver}
diff --git a/community/plank/PKGBUILD b/community/plank/PKGBUILD
index c36204e7b..94521202e 100644
--- a/community/plank/PKGBUILD
+++ b/community/plank/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 99220 2013-10-25 21:06:18Z alucryd $
+# $Id: PKGBUILD 99552 2013-10-29 14:43:20Z alucryd $
# Maintainer: Maxime Gauduin <alucryd at gmail dot com>
# Contributor: Ner0 <darkelfdarkelf666 at yahoo dot co dot uk>
# Contributor: dcelasun <dcelasun at gmaild dot com>
pkgname=plank
pkgver=0.4.0
-pkgrel=1
+pkgrel=2
pkgdesc="Elegant, simple, clean dock"
arch=('i686' 'x86_64')
url="https://launchpad.net/plank"
license=('GPL3')
-depends=('bamf' 'libdbusmenu-gtk3' 'libgee' 'python2')
+depends=('bamf' 'libdbusmenu-gtk3' 'libgee06' 'python2')
makedepends=('gnome-common' 'intltool' 'vala')
install="${pkgname}.install"
source=("https://launchpad.net/${pkgname}/1.0/${pkgver}/+download/${pkgname}-${pkgver}.tar.xz")
@@ -25,7 +25,7 @@ prepare() {
build() {
cd ${pkgname}-${pkgver}
- ./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var'
+ ./configure --prefix='/usr' --sysconfdir='/etc' --localstatedir='/var' --disable-gee-0.8
make
}
diff --git a/community/python-psutil/PKGBUILD b/community/python-psutil/PKGBUILD
index 3e3408638..0346c6098 100644
--- a/community/python-psutil/PKGBUILD
+++ b/community/python-psutil/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 98418 2013-10-09 22:50:40Z seblu $
+# $Id: PKGBUILD 99570 2013-10-29 21:24:23Z seblu $
# Maintainer: Sébastien Luttringer
pkgbase=python-psutil
pkgname=('python-psutil' 'python2-psutil')
-pkgver=1.1.1
+pkgver=1.1.2
pkgrel=1
arch=('i686' 'x86_64')
url='http://code.google.com/p/psutil/'
license=('custom: BSD')
makedepends=('python' 'python-setuptools' 'python2' 'python2-setuptools')
source=("https://pypi.python.org/packages/source/p/psutil/psutil-$pkgver.tar.gz")
-md5sums=('24430ee6486be2f1a960d9ce4dc87ad0')
+md5sums=('fe9c9a3ed95fe6564acf8b4500c7b5da')
build() {
cd psutil-$pkgver
diff --git a/community/squid/PKGBUILD b/community/squid/PKGBUILD
index febc414d7..b624edbae 100644
--- a/community/squid/PKGBUILD
+++ b/community/squid/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 97531 2013-09-23 16:17:02Z spupykin $
+# $Id: PKGBUILD 99520 2013-10-29 10:35:25Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Mark Coolen <mark.coolen@gmail.com>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
@@ -6,7 +6,7 @@
pkgname=squid
pkgver=3.3.9
-pkgrel=1
+pkgrel=2
pkgdesc='Full-featured Web proxy cache server'
arch=('x86_64' 'i686')
url='http://www.squid-cache.org'
@@ -87,7 +87,8 @@ build() {
--with-default-user=proxy \
--enable-async-io \
--enable-truncate \
- --enable-icap-client
+ --enable-icap-client \
+ --enable-ssl-crtd
make
}
diff --git a/community/tcc/PKGBUILD b/community/tcc/PKGBUILD
index ebb5f21b3..352c80b5b 100644
--- a/community/tcc/PKGBUILD
+++ b/community/tcc/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 86525 2013-03-18 16:24:05Z spupykin $
+# $Id: PKGBUILD 99550 2013-10-29 14:08:21Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer : Gergely Imreh <imrehgATgmailDOTcom>
# Contributor : dschauer <dschauerATgmailDOTcom>
@@ -7,13 +7,13 @@
pkgname=tcc
pkgver=0.9.26
-pkgrel=1
+pkgrel=2
pkgdesc="Tiny C Compiler"
arch=('i686' 'x86_64')
url="http://bellard.org/tcc/"
license=('LGPL')
makedepends=('gcc')
-options=('docs')
+options=('docs' 'staticlibs')
source=(http://download.savannah.nongnu.org/releases/tinycc/${pkgname}-${pkgver}.tar.bz2)
md5sums=('5fb28e4abc830c46a7f54c1f637fb25d')
@@ -44,7 +44,7 @@ package() {
install
make clean
- make CFLAGS="-fPIC" libtcc.o
- ld -shared -soname libtcc.so -o libtcc.so libtcc.o
+ make CFLAGS="-fPIC"
+ ld -shared -soname libtcc.so -o libtcc.so *.o
install -D -m 755 libtcc.so "${pkgdir}/usr/lib/libtcc.so"
}
diff --git a/community/vdrift/PKGBUILD b/community/vdrift/PKGBUILD
index 0225b12f9..7ea03206f 100644
--- a/community/vdrift/PKGBUILD
+++ b/community/vdrift/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 94910 2013-08-01 06:55:43Z bpiotrowski $
+# $Id: PKGBUILD 99451 2013-10-29 09:00:10Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
# Contributor: Lone_Wolf lonewolf@xs4all.nl
pkgname=vdrift
pkgver=2012.07.22
-pkgrel=5
+pkgrel=6
pkgdesc="Open source driving simulation made with drift racing in mind"
arch=('i686' 'x86_64')
url="http://vdrift.net/"