summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-01-21 10:11:58 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-01-21 10:11:58 +0000
commit110ed65ec53ccfb6ab5e9acd55b4318bb90cb19e (patch)
tree0d808918ff6fca664d3e4ff61a0ffabe7f851cc7 /testing
parent6c5d758798572eadb08e582e6d35c5677bed5319 (diff)
downloadaports-110ed65ec53ccfb6ab5e9acd55b4318bb90cb19e.tar.bz2
aports-110ed65ec53ccfb6ab5e9acd55b4318bb90cb19e.tar.xz
main/uvncrepeater: moved from testing
Diffstat (limited to 'testing')
-rw-r--r--testing/uvncrepeater/APKBUILD43
-rw-r--r--testing/uvncrepeater/uvncrepeater.confd4
-rw-r--r--testing/uvncrepeater/uvncrepeater.initd32
-rw-r--r--testing/uvncrepeater/uvncrepeater.pre-install5
4 files changed, 0 insertions, 84 deletions
diff --git a/testing/uvncrepeater/APKBUILD b/testing/uvncrepeater/APKBUILD
deleted file mode 100644
index d4464fe1..00000000
--- a/testing/uvncrepeater/APKBUILD
+++ /dev/null
@@ -1,43 +0,0 @@
-# Contributor:
-# Maintainer:
-pkgname=uvncrepeater
-pkgver=014
-pkgrel=1
-pkgdesc="VNC repeater based on ultravnc repeater"
-url="http://koti.mbnet.fi/jtko/"
-license="GPL-2"
-depends="openrc>=0.6"
-makedepends=
-install="$pkgname.pre-install"
-subpackages=
-source="http://koti.mbnet.fi/jtko/uvncrepeater/repeater$pkgver.zip
- uvncrepeater.confd
- uvncrepeater.initd"
-
-_builddir="$srcdir"/Ver$pkgver
-
-prepare() {
- cd "$_builddir"
- # respect our CXX and CFLAGS
- sed -i -e 's/g++/$(CXX)/g' \
- -e "/^CFLAGS/d" Makefile
-}
-
-build() {
- cd "$_builddir"
- make || return 1
-}
-
-package() {
- cd "$_builddir"
- install -Dm755 repeater "$pkgdir"/usr/bin/repeater
- install -Dm644 uvncrepeater.ini "$pkgdir"/etc/uvncrepeater.ini
- install -Dm755 "$srcdir"/uvncrepeater.initd \
- "$pkgdir"/etc/init.d/uvncrepeater
- install -Dm755 "$srcdir"/uvncrepeater.confd \
- "$pkgdir"/etc/conf.d/uvncrepeater
-}
-
-md5sums="3005ebbb2f9442cbea4cbcaa71925dbf repeater014.zip
-9a789921340c123ea1c35d7e64563c64 uvncrepeater.confd
-a9c614f7bfeef4f68db7cd9d87a6bdf6 uvncrepeater.initd"
diff --git a/testing/uvncrepeater/uvncrepeater.confd b/testing/uvncrepeater/uvncrepeater.confd
deleted file mode 100644
index 1d0b3ce8..00000000
--- a/testing/uvncrepeater/uvncrepeater.confd
+++ /dev/null
@@ -1,4 +0,0 @@
-# redirect debug logging to this file
-#
-# uvncrepeater_logfile=/var/log/uvncrepeater.log
-
diff --git a/testing/uvncrepeater/uvncrepeater.initd b/testing/uvncrepeater/uvncrepeater.initd
deleted file mode 100644
index 655ade92..00000000
--- a/testing/uvncrepeater/uvncrepeater.initd
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/sbin/runscript
-
-# Sample init.d file for alpine linux.
-
-name=repeater
-daemon=/usr/bin/$name
-
-depend() {
- need net
- after firewall
-}
-
-start() {
- ebegin "Starting VNC ${name}"
- start-stop-daemon --start --quiet \
- --pidfile /var/run/${name}.pid \
- --make-pidfile --background \
- --wait ${uvncrepeater_wait:-500} \
- --stderr ${uvncrepeater_logfile:-/dev/null} \
- --stdout /dev/null \
- --exec ${daemon} -- /etc/uvncrepeater.ini
- eend $?
-}
-
-stop() {
- ebegin "Stopping VNC ${name}"
- start-stop-daemon --stop --quiet \
- --pidfile /var/run/$name.pid \
- --exec ${daemon}
- eend $?
-}
-
diff --git a/testing/uvncrepeater/uvncrepeater.pre-install b/testing/uvncrepeater/uvncrepeater.pre-install
deleted file mode 100644
index 2e1e6730..00000000
--- a/testing/uvncrepeater/uvncrepeater.pre-install
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-adduser -D -S uvncrep 2>/dev/null
-exit 0
-