summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-02 13:37:59 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-12-02 13:37:59 -0300
commit3383a1fbd954b78716dd8ff9d9f2097e176d2279 (patch)
tree68aa3acbd50e6d0d7bdcfa2947d1772f7edb8a0d /community
parent7f3d7e2203a9252280361a1d095528cb056d08dc (diff)
parent9e9ab642711f2424f828e21d14b98c45cdef2b29 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community-testing/packagekit/PKGBUILD community/liboglappth/PKGBUILD community/texvc/PKGBUILD extra/libvdpau/PKGBUILD extra/minicom/PKGBUILD extra/muparser/PKGBUILD extra/netkit-bsd-finger/PKGBUILD extra/normalize/PKGBUILD
Diffstat (limited to 'community')
-rw-r--r--community/blueman/PKGBUILD52
-rw-r--r--community/duplicity/PKGBUILD8
-rw-r--r--community/fotoxx/PKGBUILD8
-rw-r--r--community/ghemical/PKGBUILD35
-rw-r--r--community/ghemical/ghemical.desktop4
-rw-r--r--community/libghemical/PKGBUILD23
-rw-r--r--community/liboglappth/PKGBUILD23
-rw-r--r--community/linux-tools/PKGBUILD64
-rw-r--r--community/linux-tools/cpupower.conf14
-rw-r--r--community/linux-tools/cpupower.rc31
-rw-r--r--community/mxml/PKGBUILD7
-rw-r--r--community/nvdock/PKGBUILD21
-rw-r--r--community/ocaml-findlib/PKGBUILD2
-rw-r--r--community/pcsc-tools/PKGBUILD9
-rw-r--r--community/podofo/PKGBUILD4
-rw-r--r--community/psqlodbc/PKGBUILD12
-rw-r--r--community/sigil/PKGBUILD8
-rw-r--r--community/sysvbanner/PKGBUILD28
-rw-r--r--community/sysvbanner/man.patch16
-rw-r--r--community/texvc/PKGBUILD13
-rw-r--r--community/tls/PKGBUILD28
21 files changed, 287 insertions, 123 deletions
diff --git a/community/blueman/PKGBUILD b/community/blueman/PKGBUILD
index 21e070311..7ef622c93 100644
--- a/community/blueman/PKGBUILD
+++ b/community/blueman/PKGBUILD
@@ -1,45 +1,43 @@
-# $Id: PKGBUILD 56850 2011-10-14 21:12:20Z spupykin $
+# $Id: PKGBUILD 59799 2011-11-30 12:25:12Z spupykin $
# Maintainer : Ionut Biru <ibiru@archlinux.org
# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
pkgname=blueman
pkgver=1.23
-pkgrel=1
+pkgrel=2
pkgdesc="GTK+ bluetooth manager"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
url="http://blueman-project.org"
-depends=('python-notify' 'bluez' 'dbus-python' 'gtk2' 'pygobject' 'startup-notification' 'obex-data-server' 'polkit-gnome' 'xdg-utils' 'hicolor-icon-theme')
+depends=('python-notify' 'bluez' 'dbus-python' 'gtk2' 'pygobject' 'startup-notification'
+ 'obex-data-server' 'polkit-gnome' 'xdg-utils' 'hicolor-icon-theme' 'libpulse')
makedepends=('pyrex' 'intltool')
optdepends=('dnsmasq: For creating PAN network'
- 'gconf: For gconf configuration support'
- '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')
+ 'gconf: For gconf configuration support'
+ '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')
options=('!libtool')
install=$pkgname.install
-source=(http://download.tuxfamily.org/blueman/${pkgname}-${pkgver}.tar.gz
- PulsePatch.patch)
-md5sums=('f0bee59589f4c23e35bf08c2ef8acaef'
- 'cdce55a57d7628ed8b6c7fcf4391f4f0')
+source=(http://download.tuxfamily.org/blueman/${pkgname}-${pkgver}.tar.gz)
+md5sums=('f0bee59589f4c23e35bf08c2ef8acaef')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
+ cd "${srcdir}/${pkgname}-${pkgver}"
-# patch -Np1 -i "${srcdir}/PulsePatch.patch"
+ export PYTHON=python2
+ for file in apps/blueman*; do
+ sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
+ done
+ sed -i 's|"blueman-tray"|"blueman"|' blueman/plugins/applet/StatusIcon.py
- # python2 fix
- for file in apps/blueman*; do
- sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
- done
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --libexecdir=/usr/lib/blueman \
- --with-no-runtime-deps-check
- make
- make DESTDIR="${pkgdir}" install
- echo "OnlyShowIn=GNOME;XFCE;" >> ${pkgdir}/etc/xdg/autostart/blueman.desktop
+ [ -f Makefile ] || ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/blueman \
+ --with-no-runtime-deps-check
+ make
+ make DESTDIR="${pkgdir}" install
+ echo "OnlyShowIn=GNOME;XFCE;" >> ${pkgdir}/etc/xdg/autostart/blueman.desktop
}
diff --git a/community/duplicity/PKGBUILD b/community/duplicity/PKGBUILD
index dcb1cec73..0a2b48572 100644
--- a/community/duplicity/PKGBUILD
+++ b/community/duplicity/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 59484 2011-11-26 14:33:23Z lfleischer $
+# $Id: PKGBUILD 59792 2011-11-30 10:03:59Z lfleischer $
# Maintainer: Kaiting Chen <kaitocracy@gmail.com>
# Contributor: Aaron Schaefer <aaron@elasticdog.com>
pkgname=duplicity
pkgver=0.6.17
-pkgrel=1
+pkgrel=2
pkgdesc='A utility for encrypted, bandwidth-efficient backups using the rsync algorithm'
arch=('i686' 'x86_64' 'mips64el')
url='http://www.nongnu.org/duplicity/'
@@ -23,4 +23,8 @@ build() {
done
python2 setup.py install --root="$pkgdir" --optimize=1
+
+ chmod 644 $pkgdir/usr/share/man/man1/$pkgname.1
+ chmod 644 $pkgdir/usr/share/man/man1/rdiffdir.1
+ chmod 644 $pkgdir/usr/share/doc/$pkgname-$pkgver/*
}
diff --git a/community/fotoxx/PKGBUILD b/community/fotoxx/PKGBUILD
index b253d453b..d5eab3b8d 100644
--- a/community/fotoxx/PKGBUILD
+++ b/community/fotoxx/PKGBUILD
@@ -1,9 +1,9 @@
-# $Id: PKGBUILD 59254 2011-11-22 03:06:06Z ebelanger $
+# $Id: PKGBUILD 59840 2011-12-01 01:26:04Z ebelanger $
# Maintainer: Stefan Husmann <stefan-husmann@t-online.de>
pkgname=fotoxx
-pkgver=11.11.1
-pkgrel=3
+pkgver=11.12
+pkgrel=1
pkgdesc="A program for improving image files made with a digital camera"
url="http://kornelix.squarespace.com/fotoxx"
arch=('i686' 'x86_64' 'mips64el')
@@ -12,7 +12,7 @@ depends=('gimp-ufraw' 'perl-exiftool' 'xdg-utils')
optdepends=('mashup: for composing pages to print from within fotoxx' 'brasero: for burning')
install=fotoxx.install
source=("http://kornelix.squarespace.com/storage/downloads/$pkgname-$pkgver.tar.gz")
-md5sums=('c51f6682639bd7d2e5f1df4d03f09e53')
+md5sums=('3734fc182c9002f45c664f7b0e42314d')
build() {
cd "$srcdir/$pkgname-$pkgver"
diff --git a/community/ghemical/PKGBUILD b/community/ghemical/PKGBUILD
index 122c319b6..320a3aa7d 100644
--- a/community/ghemical/PKGBUILD
+++ b/community/ghemical/PKGBUILD
@@ -1,34 +1,27 @@
-# $Id: PKGBUILD 32528 2010-11-14 16:07:40Z xyne $
-# Maintainer: Abhishek Dasgupta <abhidg@gmail.com>
+# Maintainer: Xyne <ac xunilhcra enyx, backwards>
# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
pkgname=ghemical
-pkgver=2.99.2
-pkgrel=5
+pkgver=3.0.0
+pkgrel=1
pkgdesc="Computational chemistry package."
license=("GPL")
arch=(i686 x86_64 'mips64el')
url="http://bioinformatics.org/ghemical/ghemical/"
-depends=('libghemical>=2.99' 'liboglappth>=0.98' 'mesa' 'libglade' 'libxmu' 'ttf-dejavu' 'gtkglext' 'openbabel')
+depends=('libghemical>=3.0' 'liboglappth>=1.0' 'mesa' 'libglade' 'libxmu' 'ttf-dejavu' 'gtkglext' 'openbabel')
makedepends=('pkgconfig' 'intltool>=0.40.0' 'gettext')
-
-source=(http://bioinformatics.org/ghemical/download/current/${pkgname}-${pkgver}.tar.gz ghemical.desktop ghemical.diff)
+source=(http://bioinformatics.org/ghemical/download/release20111012/${pkgname}-${pkgver}.tar.gz ghemical.desktop)
+md5sums=('becf98626f0eba73f7f042bc92aa60ac'
+ '7e8789d42d1318a427a30f3bf64cb5a6')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}/
- patch -p1 -i ${srcdir}/ghemical.diff || return 1
-
- for i in eldview gpcview oglview p1dview p2dview; do
- sed -i "s/courier 12/monospace 10/g" "src/${i}_wcl.cpp" || return 1
- done
-
- install -D -m644 ../ghemical.desktop ${pkgdir}/usr/share/applications/ghemical.desktop
+ cd -- "$srcdir/$pkgname-$pkgver/"
./configure --prefix=/usr
- make || return 1
- make DESTDIR=${pkgdir} install || return 1
-
+ make
}
-md5sums=('30f29b21d2f0649fc79823a7042131b5'
- '14742b5efb2ccb94716b17f209adfd9e'
- '6cd605a689aab17b8f26249a42261569')
+package() {
+ install -D -m644 "$srcdir"/ghemical.desktop "$pkgdir"/usr/share/applications/ghemical.desktop
+ cd -- "$srcdir/$pkgname-$pkgver/"
+ make DESTDIR="$pkgdir" install
+}
diff --git a/community/ghemical/ghemical.desktop b/community/ghemical/ghemical.desktop
index 5b307b06e..eff450186 100644
--- a/community/ghemical/ghemical.desktop
+++ b/community/ghemical/ghemical.desktop
@@ -1,12 +1,12 @@
[Desktop Entry]
Type=Application
-Version=1.0
+Version=3.0.0
Name=Ghemical
GenericName=Computational chemistry package
GenericName[de]=Chemisches Berechnungsprogramm
Comment=3D molecule editor and computing program
Comment[de]=3D Moleküleditor und Berechnungsprogramm
-Icon=/usr/share/ghemical/2.99.2/pixmaps/ghemical.png
+Icon=/usr/share/ghemical/3.0.0/pixmaps/ghemical.png
Exec=/usr/bin/ghemical
Terminal=false
Categories=Science;Chemistry;Education;
diff --git a/community/libghemical/PKGBUILD b/community/libghemical/PKGBUILD
index ff32e14ad..c94b7e300 100644
--- a/community/libghemical/PKGBUILD
+++ b/community/libghemical/PKGBUILD
@@ -1,9 +1,8 @@
-# $Id: PKGBUILD 13759 2010-03-27 17:00:03Z xyne $
-# Maintainer: Abhishek Dasgupta <abhidg@gmail.com>
+# Maintainer: Xyne <ac xunilhcra enyx, backwards>
# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
pkgname=libghemical
-pkgver=2.99.1
+pkgver=3.0.0
pkgrel=1
pkgdesc="Library containing computational chemistry facility of ghemical"
license=("GPL")
@@ -12,14 +11,16 @@ url="http://bioinformatics.org/ghemical/libghemical/"
depends=('gcc-libs')
makedepends=('openbabel' 'intltool>=0.40.0')
options=(!libtool)
-source=(http://bioinformatics.org/ghemical/download/current/${pkgname}-${pkgver}.tar.gz sasaeval.diff)
-md5sums=('d2dae2d7d786d3cba335cb29d85033ea'
- '4c520ded165acc14b5477a55541554ef')
+source=(http://bioinformatics.org/ghemical/download/release20111012/${pkgname}-${pkgver}.tar.gz)
+md5sums=('1d5c9c19bb119470d2bb41a7e681eafd')
build() {
- cd ${startdir}/src/${pkgname}-${pkgver}/
- #patch -p1 -i ${srcdir}/sasaeval.diff || return 1
+ cd -- "$srcdir/$pkgname-$pkgver/"
./configure --prefix=/usr --enable-openbabel
- make || return 1
- make DESTDIR=${startdir}/pkg install || return 1
-} \ No newline at end of file
+ make
+}
+
+package() {
+ cd -- "$srcdir/$pkgname-$pkgver/"
+ make DESTDIR="$pkgdir" install
+}
diff --git a/community/liboglappth/PKGBUILD b/community/liboglappth/PKGBUILD
index d96dfba27..fd9809fb2 100644
--- a/community/liboglappth/PKGBUILD
+++ b/community/liboglappth/PKGBUILD
@@ -1,10 +1,9 @@
-# $Id: PKGBUILD 17276 2010-05-22 17:07:31Z xyne $
-# Maintainer: Abhishek Dasgupta <abhidg@gmail.com>
+# Maintainer: Xyne <ac xunilhcra enyx, backwards>
# Contributor: Abhishek Dasgupta <abhidg@gmail.com>
pkgname=liboglappth
-pkgver=0.98
-pkgrel=2
+pkgver=1.0.0
+pkgrel=1
pkgdesc="Library containing computational chemistry facility of ghemical"
license=("GPL")
arch=('i686' 'x86_64' 'mips64el')
@@ -12,12 +11,16 @@ url="http://bioinformatics.org/ghemical/libghemical/"
depends=('gcc-libs')
makedepends=('mesa')
options=(!libtool)
-source=(http://bioinformatics.org/ghemical/download/current/${pkgname}-${pkgver}.tar.gz)
+source=(http://bioinformatics.org/ghemical/download/release20111012/${pkgname}-${pkgver}.tar.gz)
+md5sums=('48261e5f4cf99e113fb22e524f0b1eeb')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}/
- ./configure --prefix=/usr
- make || return 1
- make DESTDIR=${pkgdir} install || return 1
+ cd -- "$srcdir/$pkgname-$pkgver/"
+ ./configure --prefix=/usr --enable-openbabel
+ make
+}
+
+package() {
+ cd -- "$srcdir/$pkgname-$pkgver/"
+ make DESTDIR="$pkgdir" install
}
-md5sums=('dd280286a51fcba6a47264a383a2f1fe')
diff --git a/community/linux-tools/PKGBUILD b/community/linux-tools/PKGBUILD
new file mode 100644
index 000000000..34165dbe9
--- /dev/null
+++ b/community/linux-tools/PKGBUILD
@@ -0,0 +1,64 @@
+# $Id: PKGBUILD 59838 2011-12-01 00:13:46Z seblu $
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+
+pkgbase=linux-tools
+pkgname=('perf' 'cpupower')
+pkgver=3.1.4
+pkgrel=1
+license=('GPL2')
+arch=('i686' 'x86_64')
+url='http://www.kernel.org'
+options=('!strip')
+makedepends=('asciidoc' 'xmlto')
+# split packages need all package dependencies set manually in makedepends
+makedepends+=('python2' 'libnewt' 'elfutils' 'pciutils')
+source=("http://ftp.kernel.org/pub/linux/kernel/v3.0/linux-$pkgver.tar.xz"
+ 'cpupower.rc'
+ 'cpupower.conf')
+md5sums=('e48e246675a3e790062d4fecf36cd6e3'
+ 'd8b119eff7dc1a2d655eb71a47fa6215'
+ '218fd36a7957d3170ed8bd1a0be1f62f')
+
+build() {
+ msg2 'Build perf'
+ cd linux-$pkgver/tools/perf
+ make PYTHON=python2 DESTDIR="${pkgdir}/usr" perfexecdir="lib/$pkgname" PERF_VERSION=$pkgver \
+ all man
+
+ msg2 'Build cpupower'
+ # we cannot use --as-needed
+ LDFLAGS=${LDFLAGS:+"$LDFLAGS,--no-as-needed"}
+ cd "$srcdir/linux-$pkgver/tools/power/cpupower"
+ make
+}
+
+package_perf() {
+ pkgdesc='Linux kernel perf tool'
+ depends=('python2' 'libnewt' 'elfutils')
+
+ cd linux-${pkgver}/tools/perf
+ make PYTHON=python2 DESTDIR="${pkgdir}/usr" perfexecdir="lib/$pkgname" PERF_VERSION=$pkgver \
+ install install-man
+}
+
+package_cpupower() {
+ pkgdesc='Linux kernel power tool'
+ backup=('etc/conf.d/cpupower')
+ depends=('pciutils')
+ conflicts=('cpufrequtils')
+ provides=("cpufrequtils=$pkgver")
+
+ cd linux-$pkgver/tools/power/cpupower
+ make \
+ DESTDIR="$pkgdir" \
+ INSTALL='/bin/install -c' \
+ mandir='/usr/share/man' \
+ docdir='/usr/share/doc/cpupower' \
+ install install-man
+
+ # install rc.d script
+ install -D -m 755 "$srcdir/cpupower.rc" "$pkgdir/etc/rc.d/cpupower"
+ install -D -m 644 "$srcdir/cpupower.conf" "$pkgdir/etc/conf.d/cpupower"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/linux-tools/cpupower.conf b/community/linux-tools/cpupower.conf
new file mode 100644
index 000000000..0f56836b1
--- /dev/null
+++ b/community/linux-tools/cpupower.conf
@@ -0,0 +1,14 @@
+# valid governors:
+# ondemand, performance, powersave,
+# conservative, userspace
+#governor="ondemand"
+
+# limit frequency range (optional)
+# valid suffixes: Hz, kHz (default), MHz, GHz, THz
+#min_freq="2.25GHz"
+#max_freq="3GHz"
+
+# use freq to set up the exact cpu frequency using it with userspace governor
+#freq=
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/linux-tools/cpupower.rc b/community/linux-tools/cpupower.rc
new file mode 100644
index 000000000..812637b61
--- /dev/null
+++ b/community/linux-tools/cpupower.rc
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+[[ -f /etc/conf.d/cpupower ]] && . /etc/conf.d/cpupower
+
+case "$1" in
+ start|restart)
+ stat_busy "Setting cpupower rules"
+
+ declare params=''
+ if [[ "$governor" ]]; then
+ params="-g $governor "
+ params+="${min_freq:+-d $min_freq} "
+ params+="${max_freq:+-u $max_freq} "
+ params+="${freq:+-f $freq} "
+ cpupower frequency-set $params >/dev/null || { stat_fail; exit 1; }
+ stat_done
+ else
+ stat_append ': Invalid configuration'
+ stat_fail
+ fi
+ ;;
+ *)
+ echo "usage: $0 {start|restart}"
+esac
+
+true
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/mxml/PKGBUILD b/community/mxml/PKGBUILD
index 5356d74ba..df116ea61 100644
--- a/community/mxml/PKGBUILD
+++ b/community/mxml/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 57065 2011-10-20 07:22:50Z andrea $
+# $Id: PKGBUILD 59790 2011-11-30 09:27:23Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Roman Kyrylych <roman@archlinux.org>
# Contributor: Johannes Sjolund <j.sjolund@gmail.com>
pkgname=mxml
pkgver=2.6
-pkgrel=2
+pkgrel=4
pkgdesc="A small XML parsing library"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.minixml.org/"
@@ -15,7 +15,8 @@ md5sums=('68977789ae64985dddbd1a1a1652642e')
build() {
cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr
+# [ "$CARCH" = x86_64 ] && export CFLAGS="$CFLAGS -fPIC"
+ ./configure --prefix=/usr --enable-shared
make
}
diff --git a/community/nvdock/PKGBUILD b/community/nvdock/PKGBUILD
index 0a70eb271..cd8728d08 100644
--- a/community/nvdock/PKGBUILD
+++ b/community/nvdock/PKGBUILD
@@ -1,27 +1,32 @@
-# $Id: PKGBUILD 8929 2010-01-22 18:37:23Z giovanni $
+# $Id: PKGBUILD 59826 2011-11-30 20:47:00Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Matthew Sharpe <matt.sharpe@gmail.com>
pkgname=nvdock
pkgver=1.02
-pkgrel=3
+pkgrel=4
pkgdesc="A tray icon for easy launching of the NVIDIA control panel"
arch=('i686' 'x86_64' 'mips64el')
url="http://www.opsat.net/user/bob/projects/nvdock"
license=('BSD')
depends=('gtk2')
makedepends=('glib')
-source=(http://bobmajdakjr.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2)
+source=("http://bobmajdakjr.googlecode.com/files/${pkgname}-${pkgver}.tar.bz2")
md5sums=('e18c4eeff936dc3b671fd8b5a9bb5145')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
- make || return 1
- install -D -m755 build/nvdock "${pkgdir}/usr/bin/nvdock" || return 1
- install -D -m644 data/nvdock.png "${pkgdir}/usr/share/pixmaps/nvdock.png" || return 1
- install -D -m644 data/nvdock.desktop "${pkgdir}/usr/share/applications/nvdock.desktop" || return 1
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ install -D -m755 build/nvdock "${pkgdir}/usr/bin/nvdock"
+ install -D -m644 data/nvdock.png "${pkgdir}/usr/share/pixmaps/nvdock.png"
+ install -D -m644 data/nvdock.desktop "${pkgdir}/usr/share/applications/nvdock.desktop"
# Install license
- install -D COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" || return 1
+ install -D COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
diff --git a/community/ocaml-findlib/PKGBUILD b/community/ocaml-findlib/PKGBUILD
index 366f9fc14..215a4ffb7 100644
--- a/community/ocaml-findlib/PKGBUILD
+++ b/community/ocaml-findlib/PKGBUILD
@@ -4,7 +4,7 @@
# scj <scj archlinux us>
pkgname=ocaml-findlib
pkgver=1.2.7
-pkgrel=1
+pkgrel=2
license=('MIT')
arch=('i686' 'x86_64' 'mips64el')
pkgdesc="Objective Caml (OCaml) package manager"
diff --git a/community/pcsc-tools/PKGBUILD b/community/pcsc-tools/PKGBUILD
index 5a9cb6066..a22b0529b 100644
--- a/community/pcsc-tools/PKGBUILD
+++ b/community/pcsc-tools/PKGBUILD
@@ -1,22 +1,23 @@
-# $Id: PKGBUILD 44872 2011-04-12 10:42:15Z giovanni $
+# $Id: PKGBUILD 59828 2011-11-30 21:11:50Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Lorenzo Nizzi Grifi Gargiolli <lorenzo.nizzi.grifi@gmail.com>
# Contributor: marc0s <marc0s@fsfe.org>
pkgname=pcsc-tools
pkgver=1.4.17
-pkgrel=4
+pkgrel=5
pkgdesc="PC/SC Architecture smartcard tools"
arch=('i686' 'x86_64' 'mips64el')
url="http://ludovic.rousseau.free.fr/softwares/pcsc-tools/"
license=('GPL')
depends=('pcsclite' 'pcsc-perl' 'gtk2-perl' 'glib-perl')
-makedepends=('pkgconfig')
-source=(http://ludovic.rousseau.free.fr/softwares/${pkgname}/${pkgname}-${pkgver}.tar.gz)
+makedepends=('pkg-config')
+source=("http://ludovic.rousseau.free.fr/softwares/${pkgname}/${pkgname}-${pkgver}.tar.gz")
md5sums=('2767238e1e737f94d13a91bdab1174ca')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
+
sed -i -e 's:-Wall -O2:${CFLAGS}:g' Makefile
make
diff --git a/community/podofo/PKGBUILD b/community/podofo/PKGBUILD
index ebee2b0a6..efb32fa9c 100644
--- a/community/podofo/PKGBUILD
+++ b/community/podofo/PKGBUILD
@@ -1,11 +1,11 @@
-# $Id: PKGBUILD 45713 2011-04-27 19:09:19Z giovanni $
+# $Id: PKGBUILD 59830 2011-11-30 22:21:17Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: BlackEagle < ike DOT devolder AT gmail DOT com >
# Contributor: Preecha Patumchareonpol <yumyai at gmail.com>
pkgname=podofo
pkgver=0.9.1
-pkgrel=1
+pkgrel=2
pkgdesc="A C++ library to work with the PDF file format"
arch=('i686' 'x86_64' 'mips64el')
url="http://podofo.sourceforge.net"
diff --git a/community/psqlodbc/PKGBUILD b/community/psqlodbc/PKGBUILD
index 890aef702..5b672e2c3 100644
--- a/community/psqlodbc/PKGBUILD
+++ b/community/psqlodbc/PKGBUILD
@@ -1,16 +1,16 @@
-# $Id: PKGBUILD 14188 2010-04-02 00:06:50Z andrea $
+# $Id: PKGBUILD 59801 2011-11-30 12:36:10Z spupykin $
# Maintainer:
# Contributor: Douglas Soares de Andrade <dsa@aur.archlinux-br.org>
# Contributor: Rick Rein <jeebusroxors@gmail.com>
pkgname=psqlodbc
pkgver=08.04.0100
-pkgrel=2
+pkgrel=3
pkgdesc="PostgreSQL ODBC driver"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
url="http://www.postgresql.org"
-depends=('unixodbc' 'postgresql-libs' 'libtool')
+depends=('unixodbc' 'postgresql-libs')
makedepends=('postgresql')
options=('!libtool')
source=(ftp://ftp2.it.postgresql.org/mirrors/postgres//odbc/versions/src/$pkgname-$pkgver.tar.gz
@@ -20,11 +20,9 @@ md5sums=('2328c3e97e6a376620a5d317137515ff'
build() {
cd "$srcdir/$pkgname-$pkgver"
-
- patch -p1 -i "$srcdir/fix-function-declarations.patch" || return 1
-
+ patch -p1 -i "$srcdir/fix-function-declarations.patch"
./configure --prefix=/usr
- make || return 1
+ make
}
package() {
diff --git a/community/sigil/PKGBUILD b/community/sigil/PKGBUILD
index f4af9acf3..b9f3f0e1a 100644
--- a/community/sigil/PKGBUILD
+++ b/community/sigil/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 58533 2011-11-13 16:05:39Z andrea $
+# $Id: PKGBUILD 59836 2011-11-30 22:56:23Z giovanni $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Larry Hajali <larryhaja [at] gmail [dot] com>
pkgname=sigil
pkgver=0.4.2
-pkgrel=1
+pkgrel=2
pkgdesc="A WYSIWYG ebook editor"
arch=('i686' 'x86_64' 'mips64el')
url="http://code.google.com/p/sigil/"
@@ -12,8 +12,8 @@ license=('GPL3')
depends=('qt')
makedepends=('cmake')
install=sigil.install
-source=(http://sigil.googlecode.com/files/Sigil-${pkgver}-Code.zip
- ${pkgname}.desktop)
+source=("http://sigil.googlecode.com/files/Sigil-${pkgver}-Code.zip"
+ "${pkgname}.desktop")
md5sums=('ce27976254236f8b11b787fd05be9acb'
'fef6aa492af487ccccd6b133635cee5a')
diff --git a/community/sysvbanner/PKGBUILD b/community/sysvbanner/PKGBUILD
new file mode 100644
index 000000000..44304f42a
--- /dev/null
+++ b/community/sysvbanner/PKGBUILD
@@ -0,0 +1,28 @@
+# Maintainer: Sebastien Luttringer <seblu+arch@seblu.net>
+
+pkgname=sysvbanner
+pkgver=1.0.15
+pkgrel=1
+pkgdesc='System-V banner clone'
+arch=('i686' 'x86_64')
+url='http://packages.qa.debian.org/s/sysvbanner.html'
+conflicts=('bsd-games')
+license=('custom')
+source=("http://cdn.debian.net/debian/pool/main/s/sysvbanner/${pkgname}_${pkgver}.tar.gz"
+ 'man.patch')
+md5sums=('5a7bd216a42faa20bfd91268a77cc41d'
+ '003aa4532e00c32f747dfba6566c094d')
+
+build() {
+ cd $pkgname-$pkgver
+ patch -p 1 < ../man.patch
+ make
+}
+
+package() {
+ cd $pkgname-$pkgver
+ make DESTDIR="$pkgdir" install
+ install -D -m444 "debian/copyright" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 ft=sh et:
diff --git a/community/sysvbanner/man.patch b/community/sysvbanner/man.patch
new file mode 100644
index 000000000..3719d5ebf
--- /dev/null
+++ b/community/sysvbanner/man.patch
@@ -0,0 +1,16 @@
+--- a/banner.1 2007-04-08 00:26:57.000000000 +0200
++++ b/banner.1 2011-12-01 04:16:43.677157180 +0100
+@@ -3,12 +3,10 @@
+ banner \- print large banner
+ .SH SYNOPSIS
+ .B banner
+-.I text
++.B [\fItext\fB]
+ .br
+ .SH "DESCRIPTION"
+ .B banner
+ prints out the first 10 characters of
+ .I text
+ in large letters.
+-.SH SEE ALSO
+-.BR banner "(6)."
diff --git a/community/texvc/PKGBUILD b/community/texvc/PKGBUILD
index 0ec5e473c..a76b828bc 100644
--- a/community/texvc/PKGBUILD
+++ b/community/texvc/PKGBUILD
@@ -1,21 +1,22 @@
-# $Id: PKGBUILD 52119 2011-07-20 10:22:26Z spupykin $
+# $Id: PKGBUILD 59805 2011-11-30 12:45:27Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=texvc
-pkgver=1.17.0
+pkgver=1.18.0
+_svnrev=103240
pkgrel=1
pkgdesc="tex to HTML/MathML/png converter used by mediawiki"
arch=(i686 x86_64 'mips64el')
-url="http://www.mediawiki.org/"
+url="http://www.mediawiki.org/wiki/Extension:Math"
license=("GPL")
depends=('imagemagick' 'ghostscript' 'texlive-core' 'texlive-latexextra')
makedepends=('ocaml')
-source=(http://download.wikimedia.org/mediawiki/1.17/mediawiki-$pkgver.tar.gz)
-md5sums=('871a00a8eb6dcae1b7b654ae635af7cd')
+source=(http://upload.wikimedia.org/ext-dist/Math-MW1.18-r${_svnrev}.tar.gz)
+md5sums=('bd24346536339034b29e65341683a2c1')
build() {
- cd $srcdir/mediawiki-$pkgver/math
+ cd $srcdir/Math/math
make
install -d -m 0755 $pkgdir/usr/bin
install -m 0755 texvc $pkgdir/usr/bin
diff --git a/community/tls/PKGBUILD b/community/tls/PKGBUILD
index c604b4237..a12e807fb 100644
--- a/community/tls/PKGBUILD
+++ b/community/tls/PKGBUILD
@@ -1,25 +1,31 @@
-# $Id: PKGBUILD 14340 2010-04-02 23:21:39Z foutrelis $
+# $Id: PKGBUILD 59810 2011-11-30 14:40:18Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s@gmail.com>
-# Contributor: Mario Vazquez <mariovazq@gmail.com>
+# Contributor: Mario Vazquez <mariovazq@gmail.com>
pkgname=tls
pkgver=1.6
-pkgrel=3
+pkgrel=4
pkgdesc="OpenSSL extension to Tcl"
arch=('i686' 'x86_64' 'mips64el')
url="http://tls.sourceforge.net/"
license=('GPL')
depends=('tcl' 'openssl' 'awk')
-source=(http://downloads.sourceforge.net/$pkgname/$pkgname$pkgver-src.tar.gz)
+source=(http://downloads.sourceforge.net/project/tls/tls/$pkgver/tls$pkgver-src.tar.gz)
md5sums=('eb326ff9e6fc3b9885aa5c72fb8df3bf')
build() {
- cd $startdir/src/tls$pkgver
-
+ cd $srcdir/tls$pkgver
./configure --prefix=/usr --with-ssl-dir=/usr
- make || return 1
- make test | awk '{print}/FAILED/{F=1}END{if(F)exit 1}'
- make DESTDIR=$startdir/pkg install || return 1
-# sed -i 's|ifneeded tls 1.5|ifneeded tls 1.50|' $startdir/pkg/usr/lib/tls1.50/pkgIndex.tcl
- ln -s tls1.6/libtls1.6.so $pkgdir/usr/lib/libtls1.6.so
+ make
+}
+
+check() {
+ cd $srcdir/tls$pkgver
+# make test | awk '{print}/FAILED/{F=1}END{if(F)exit 1}'
+}
+
+package() {
+ cd $srcdir/tls$pkgver
+ make DESTDIR=$pkgdir install
+ ln -s tls$pkgver/libtls$pkgver.so $pkgdir/usr/lib/libtls$pkgver.so
}