From 415856bdd4f48ab4f2732996f0bae58595092bbe Mon Sep 17 00:00:00 2001 From: Parabola Date: Tue, 5 Apr 2011 14:26:38 +0000 Subject: Tue Apr 5 14:26:38 UTC 2011 --- community/flumotion/PKGBUILD | 45 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 community/flumotion/PKGBUILD (limited to 'community/flumotion/PKGBUILD') diff --git a/community/flumotion/PKGBUILD b/community/flumotion/PKGBUILD new file mode 100644 index 000000000..76930a05d --- /dev/null +++ b/community/flumotion/PKGBUILD @@ -0,0 +1,45 @@ +# $Id: PKGBUILD 40273 2011-02-22 18:15:11Z spupykin $ +# Maintainer: Sergej Pupykin +# Contributor: Geoffroy Carrier +# Contributor: William Rea + +pkgname=flumotion +pkgver=0.8.0 +pkgrel=6 +arch=('i686' 'x86_64') +pkgdesc="A streaming media server" +url="http://www.flumotion.net" +options=('!libtool') +license=('GPL') +backup=(etc/flumotion/workers/default.xml + etc/flumotion/managers/default/planet.xml) +depends=('gtk2' 'pygtk' 'gstreamer0.10-python' 'kiwi' 'gstreamer0.10-good-plugins' + 'gstreamer0.10-base-plugins' 'python2-pyopenssl' 'twisted' 'gnome-vfs') +makedepends=('perlxml') +source=(http://www.flumotion.net/src/$pkgname/$pkgname-$pkgver.tar.bz2 + python27.patch) +md5sums=('1df1f8fc47ca4cc6d3ead912f2ac76af' + '623a41a985d2b114c58db701c6d5d13e') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + # python2 fix + sed -i 's_candidate in python_candidate in python2_' configure + for file in $(find . -name '*.py' -print); do + sed -i 's_^#!.*/usr/bin/python_#!/usr/bin/python2_' $file + sed -i 's_^#!.*/usr/bin/env.*python_#!/usr/bin/env python2_' $file + done + + # python2.7 patch + patch -Np0 -i "$srcdir/python27.patch" + + ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var + + install -d "$pkgdir/etc/$pkgname" + make + make DESTDIR="$pkgdir" install + cp -R conf/workers "$pkgdir/etc/$pkgname" + cp -R conf/managers "$pkgdir/etc/$pkgname" + cp conf/default.pem "$pkgdir/etc/$pkgname" +} -- cgit v1.2.3-54-g00ecf