summaryrefslogtreecommitdiff
path: root/community/ccrtp
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-05-17 18:53:45 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2012-05-17 18:53:45 +0200
commitb84f8dfdf58409163a410c241009870ecbd35952 (patch)
tree0ae6ab56ed3cbbc209f7ed0691a7fca52dc5d093 /community/ccrtp
parent6feb300093e37e58027d52ca5734624565e09598 (diff)
parentf675762300c4ee2717e029975bb3f94312245276 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/ccrtp/PKGBUILD community/freerdp/PKGBUILD community/python2-pymongo/PKGBUILD community/yaz/PKGBUILD extra/apr/PKGBUILD extra/gnome-panel/PKGBUILD extra/perl-ev/PKGBUILD extra/poppler/PKGBUILD extra/sqlite/PKGBUILD extra/vim/PKGBUILD extra/xfce4-mount-plugin/PKGBUILD extra/xfce4-mpc-plugin/PKGBUILD extra/xfce4-smartbookmark-plugin/PKGBUILD multilib/lib32-atk/PKGBUILD multilib/lib32-cairo/PKGBUILD multilib/lib32-e2fsprogs/PKGBUILD multilib/lib32-gmp/PKGBUILD multilib/lib32-libldap/PKGBUILD multilib/lib32-libssh2/PKGBUILD multilib/lib32-libxi/PKGBUILD multilib/lib32-mpg123/PKGBUILD multilib/lib32-openssl/PKGBUILD multilib/lib32-v4l-utils/PKGBUILD testing/glib2/PKGBUILD testing/openmpi/PKGBUILD
Diffstat (limited to 'community/ccrtp')
-rw-r--r--community/ccrtp/PKGBUILD23
1 files changed, 6 insertions, 17 deletions
diff --git a/community/ccrtp/PKGBUILD b/community/ccrtp/PKGBUILD
index 25595a7d7..311579ea4 100644
--- a/community/ccrtp/PKGBUILD
+++ b/community/ccrtp/PKGBUILD
@@ -1,41 +1,30 @@
-# $Id: PKGBUILD 64382 2012-02-12 15:47:02Z arodseth $
+# $Id: PKGBUILD 70714 2012-05-15 11:37:10Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Jeff Mickey <jeff@archlinux.org>
# Contributor: John Proctor <jproctor@prium.net>
# Contributor: Alexander Rødseth <rodseth@gmail.com>
pkgname=ccrtp
-pkgver=1.8.0
-pkgrel=2
+pkgver=2.0.3
+pkgrel=1
pkgdesc="GNU ccRTP"
arch=('x86_64' 'i686' 'mips64el')
url="http://www.gnu.org/software/ccrtp/"
license=('GPL' 'custom')
-depends=('commoncpp2' 'zlib' 'libxml2' 'libgcrypt')
+depends=('zlib' 'libxml2' 'libgcrypt' 'ucommon')
options=('!libtool')
install=$pkgname.install
-source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz"
- 'gcc46.patch')
-sha256sums=('365feddd276c78104600204ae6db4e76c66036df1e5b905e855239daac6a2473'
- '4ac9385228dc8b8893e0868d5a06477e4009e9fb2dc191460406da58fc6a6fb3')
+source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz")
+sha256sums=('365feddd276c78104600204ae6db4e76c66036df1e5b905e855239daac6a2473')
build() {
cd "$srcdir/$pkgname-$pkgver"
-
- patch -Np1 -i "$srcdir/gcc46.patch"
- # arch64 fix from Mandriva
- [ "$CARCH" == "x86_64" ] && export CXXFLAGS="$CXXFLAGS -fpermissive"
- export LDFLAGS="$LDFLAGS `pkg-config --libs libccgnu2`"
./configure --prefix=/usr --mandir=/usr/share/man
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
-
make DESTDIR="$pkgdir" install
install -Dm644 COPYING.addendum "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
- #rm -rf "$pkgdir/usr/share/info/dir"
}
-
-# vim:set ts=2 sw=2 et: