summaryrefslogtreecommitdiff
path: root/community/ccrtp
diff options
context:
space:
mode:
Diffstat (limited to 'community/ccrtp')
-rw-r--r--community/ccrtp/PKGBUILD30
-rw-r--r--community/ccrtp/ccrtp.install22
-rw-r--r--community/ccrtp/gcc46.patch11
3 files changed, 0 insertions, 63 deletions
diff --git a/community/ccrtp/PKGBUILD b/community/ccrtp/PKGBUILD
deleted file mode 100644
index 061bb0488..000000000
--- a/community/ccrtp/PKGBUILD
+++ /dev/null
@@ -1,30 +0,0 @@
-# $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=2.0.3
-pkgrel=1
-pkgdesc="GNU ccRTP"
-arch=('i686' 'x86_64')
-url="http://www.gnu.org/software/ccrtp/"
-license=('GPL' 'custom')
-depends=('zlib' 'libxml2' 'libgcrypt' 'ucommon')
-options=('!libtool')
-install=$pkgname.install
-source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz")
-sha256sums=('365feddd276c78104600204ae6db4e76c66036df1e5b905e855239daac6a2473')
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./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"
-}
diff --git a/community/ccrtp/ccrtp.install b/community/ccrtp/ccrtp.install
deleted file mode 100644
index 51b971c5c..000000000
--- a/community/ccrtp/ccrtp.install
+++ /dev/null
@@ -1,22 +0,0 @@
-infodir=usr/share/info
-filelist=(ccrtp.info)
-
-post_install() {
- [[ -x usr/bin/install-info ]] || return 0
- for file in "${filelist[@]}"; do
- install-info "$infodir/$file.gz" "$infodir/dir" 2> /dev/null
- done
-}
-
-post_upgrade() {
- post_install "$1"
-}
-
-pre_remove() {
- [[ -x usr/bin/install-info ]] || return 0
- for file in "${filelist[@]}"; do
- install-info --delete "$infodir/$file.gz" "$infodir/dir" 2> /dev/null
- done
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/ccrtp/gcc46.patch b/community/ccrtp/gcc46.patch
deleted file mode 100644
index a4b25b369..000000000
--- a/community/ccrtp/gcc46.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -aur ccrtp-1.8.0.old//src/ccrtp/sources.h ccrtp-1.8.0.new//src/ccrtp/sources.h
---- ccrtp-1.8.0.old//src/ccrtp/sources.h 2011-05-14 03:15:35.993564505 -0700
-+++ ccrtp-1.8.0.new//src/ccrtp/sources.h 2011-05-14 03:19:02.033569568 -0700
-@@ -46,6 +46,7 @@
-
- #include <string>
- #include <ccrtp/rtcppkt.h>
-+#include <stddef.h>
-
- #ifdef CCXX_NAMESPACES
- namespace ost {