summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-03-17 09:08:37 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-03-17 09:08:37 +0000
commite31aca632e200605ece79effbfa723cbae4c47af (patch)
tree895c23c4d1384837f271fa8828c57ea95e076bb6 /testing
parent8f001577f4f3e4b29459bf363e0da5711982864f (diff)
downloadaports-e31aca632e200605ece79effbfa723cbae4c47af.tar.bz2
aports-e31aca632e200605ece79effbfa723cbae4c47af.tar.xz
testing/opensips: removed from stable branch
Diffstat (limited to 'testing')
-rw-r--r--testing/opensips/APKBUILD37
-rw-r--r--testing/opensips/opensips.initd26
-rw-r--r--testing/opensips/opensips.post-install5
-rw-r--r--testing/opensips/opensips.pre-install5
4 files changed, 0 insertions, 73 deletions
diff --git a/testing/opensips/APKBUILD b/testing/opensips/APKBUILD
deleted file mode 100644
index d54b3dec..00000000
--- a/testing/opensips/APKBUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# Contributor: Michael Mason <ms13sp@gmail.com>
-# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
-pkgname=opensips
-pkgver=1.5.0
-pkgrel=4
-pkgdesc="Flexible and customizable sip routing engine"
-url="http://www.opensips.org/"
-license="GPL"
-depends="uclibc expat"
-makedepends="bison flex expat-dev coreutils"
-install="$pkgname.pre-install $pkgname.post-install"
-subpackages="$pkgname-doc"
-source="http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver-notls_src.tar.gz
- $install
- $pkgname.initd"
-
-build() {
- cd "$srcdir/$pkgname-$pkgver-notls"
- sed -i -e 's:^cfg-target.*:cfg-target = $(cfg-dir):' \
- -e 's:^cfg-prefix.*:cfg-prefix = $(basedir):' Makefile.defs
-
- cd scripts
- sed -i -e 's:/var/run/opensips.pid:/var/run/opensips/opensips.pid:g' \
- opensipsctl.base opensipsctlrc osipsconsole osipsconsolerc
- cd ..
-
- make prefix=/usr || return 1
- make prefix=/usr basedir="$pkgdir" install
- chmod 750 "$pkgdir"/etc/opensips/opensips.cfg
- install -d "$pkgdir"/var/run/opensips
- install -Dm755 ../$pkgname.initd "$pkgdir"/etc/init.d/$pkgname
-}
-
-md5sums="ba99592a6e42e8b4dc2d38964420dfec opensips-1.5.0-notls_src.tar.gz
-3a8a5d3c4c23ce9f2fc60b449ad61820 opensips.pre-install
-d9b551148d2b60466c05b4295b935091 opensips.post-install
-7fb51d35517f7f10cfe6e89139f7060a opensips.initd"
diff --git a/testing/opensips/opensips.initd b/testing/opensips/opensips.initd
deleted file mode 100644
index 09c03fd5..00000000
--- a/testing/opensips/opensips.initd
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/runscript
-
-daemon=/usr/sbin/opensips
-pidfile=/var/run/opensips/opensips.pid
-
-depend() {
- need net
- after firewall
-}
-
-start() {
- ebegin "Starting OpenSIPS"
- start-stop-daemon --start --quiet --pidfile $pidfile --exec $daemon \
- -- \
- -u ${OPENSIPS_USER:-opensips} \
- -g ${OPENSIPS_GROUP:-opensips} \
- -P $pidfile
- eend $?
-}
-
-stop() {
- ebegin "Stopping OpenSIPS"
- start-stop-daemon --stop --quiet --pidfile $pidfile
- eend $?
-}
-
diff --git a/testing/opensips/opensips.post-install b/testing/opensips/opensips.post-install
deleted file mode 100644
index eb9d86d9..00000000
--- a/testing/opensips/opensips.post-install
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-chown -R opensips:opensips /var/run/opensips
-chgrp opensips /etc/opensips/opensips.cfg
-exit 0
diff --git a/testing/opensips/opensips.pre-install b/testing/opensips/opensips.pre-install
deleted file mode 100644
index 4b9ccd41..00000000
--- a/testing/opensips/opensips.pre-install
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-adduser -H -h /var/empty -s /bin/false -D opensips 2>/dev/null
-
-exit 0