Added Ekiga libraries. They don't depend on gkt2, and this will make it easier for people installing Ekiga from CCR (or developers working on an Ekiga port to Qt ;).

This commit is contained in:
Adrian Chaves Fernandez (Gallaecio) 2011-06-15 20:04:27 +00:00
parent a9e430194e
commit e5da2087fc
4 changed files with 111 additions and 0 deletions

10
opal/ChangeLog Normal file
View File

@ -0,0 +1,10 @@
2011-02-22 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 3.8.4-1 :
Upgraded.
2010-12-17 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 3.8.2-1 :
Upgraded.
Reported by WillingMagic <willingmagic@gmail.com>.

37
opal/PKGBUILD Normal file
View File

@ -0,0 +1,37 @@
#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=opal
pkgver=3.8.4
_pkgver="Final"
_pkgver2="v3.8 Sirius"
pkgrel=1
pkgdesc="Open Phone Abstraction Library."
arch=('i686' 'x86_64')
url="http://www.opalvoip.org/"
license=('MPL')
depends=('ptlib' 'libtheora' 'x264>=20090416' 'speex')
makedepends=('ffmpeg')
changelog=ChangeLog
source=("http://downloads.sourceforge.net/project/opalvoip/$_pkgver2/$_pkgver/$pkgname-$pkgver.tar.bz2")
md5sums=('8128a42c25b6a37fb92d75ebd94333e1')
build() {
cd $srcdir/$pkgname-$pkgver
CFLAGS="$CFLAGS -D__STDC_CONSTANT_MACROS" \
./configure \
--localstatedir=/var \
--prefix=/usr \
--sysconfdir=/etc
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}

16
ptlib/ChangeLog Normal file
View File

@ -0,0 +1,16 @@
2011-02-22 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 2.8.4-1 :
Upgraded.
2010-12-17 Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
* 2.8.2-1 :
Upgraded.
Reported by WillingMagic <willingmagic@gmail.com>.
2010-11-04 Adrián Chaves Fernández (Gallaecio) <adriyetichaves[at]gmail[dot]com>
* 2.6.5-1 :
Imported from Arch Linux:
http://repos.archlinux.org/wsvn/packages/ptlib/trunk/?rev=75566

48
ptlib/PKGBUILD Normal file
View File

@ -0,0 +1,48 @@
#
# Apps Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=ptlib
pkgver=2.8.4
_pkgver="Final"
_pkgver2="v3.8 Sirius"
pkgrel=1
pkgdesc="Portable Windows Library."
arch=('i686' 'x86_64')
url="http://www.opalvoip.org/"
license=('MPL')
depends=('alsa-lib' 'expat' 'gcc-libs' 'v4l-utils' 'openssl' 'sdl')
changelog=ChangeLog
source=("http://downloads.sourceforge.net/project/opalvoip/$_pkgver2/$_pkgver/$pkgname-$pkgver.tar.bz2")
md5sums=('b851295423a96a9e8df58a8e329bf284')
build() {
cd $srcdir/$pkgname-$pkgver
./configure \
--disable-avc \
--disable-odbc \
--enable-dc \
--enable-expat \
--enable-httpforms \
--enable-ipv6 \
--enable-opal \
--enable-oss \
--enable-plugins \
--enable-sdl \
--enable-v4l \
--enable-v4l2 \
--libdir=/usr/lib \
--localstatedir=/var \
--prefix=/usr \
--sysconfdir=/etc
make
}
package() {
cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}