diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-09-24 21:53:55 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-09-24 22:24:46 +0200 |
commit | cb7e66190e6b660e8d2b91f784ddf8dd24d59c1a (patch) | |
tree | 9059bc59fa493fcadabd09dc73ce34dea82b8e66 /community | |
parent | 18a2f3afb10ec74dc6f732cffd03b07d6819ec90 (diff) | |
download | aports-cb7e66190e6b660e8d2b91f784ddf8dd24d59c1a.tar.bz2 aports-cb7e66190e6b660e8d2b91f784ddf8dd24d59c1a.tar.xz |
community/rsound: remove aport
upstream has been dead for an eternity. We can't guarantee that this
software will continue to receive bug and security fixes.
Diffstat (limited to 'community')
-rw-r--r-- | community/rsound/APKBUILD | 61 | ||||
-rw-r--r-- | community/rsound/pidfile.patch | 12 | ||||
-rw-r--r-- | community/rsound/rsound.confd | 2 | ||||
-rw-r--r-- | community/rsound/rsound.initd | 12 |
4 files changed, 0 insertions, 87 deletions
diff --git a/community/rsound/APKBUILD b/community/rsound/APKBUILD deleted file mode 100644 index 1d4b7086b6..0000000000 --- a/community/rsound/APKBUILD +++ /dev/null @@ -1,61 +0,0 @@ -# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> -# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net> -pkgname=rsound -_realname=RSound -pkgver=1.1 -pkgrel=4 -pkgdesc="A multi-platform, simple PCM audio server and client" -url="https://github.com/Themaister/RSound" -arch="all" -license="GPL-3.0" -depends="" -depends_dev="alsa-lib-dev libsamplerate-dev portaudio-dev libao-dev jack-dev" -makedepends="$depends_dev" -subpackages="$pkgname-dev $pkgname-libs $pkgname-doc $pkgname-client $pkgname-server" -source="$pkgname-$pkgver.tar.gz::https://github.com/Themaister/${_realname}/archive/v${pkgver}.tar.gz - $pkgname.initd - $pkgname.confd - pidfile.patch" - -builddir="$srcdir"/$_realname-$pkgver -build() { - cd "$builddir" - ./configure --prefix=/usr - make -} - -package() { - # The rsound install rule doesn't create non-existent directories. - mkdir -p "$pkgdir"/usr/lib "$pkgdir"/usr/share/man/man1 \ - "$pkgdir"/usr/lib/pkgconfig "$pkgdir"/usr/include - - make DESTDIR="$pkgdir" -C "$builddir" install - for doc in DOCUMENTATION ChangeLog AUTHORS INSTALL README; do - install -Dm644 "$builddir"/$doc \ - "$pkgdir"/usr/share/doc/$pkgname/$doc - done -} - -client() { - pkgdesc="$pkgdesc (client)" - mkdir -p "$subpkgdir"/usr/bin/ - mv "$pkgdir"/usr/bin/rsdplay \ - "$subpkgdir"/usr/bin/ -} - -server() { - pkgdesc="$pkgdesc (server)" - mkdir -p "$subpkgdir"/usr/bin/ - mv "$pkgdir"/usr/bin/rsd \ - "$subpkgdir"/usr/bin/ - - install -Dm755 "$srcdir"/$pkgname.initd \ - "$subpkgdir"/etc/init.d/$pkgname - install -Dm644 "$srcdir"/$pkgname.confd \ - "$subpkgdir"/etc/conf.d/$pkgname -} - -sha512sums="1f55bd1c9cab03cb844ca9d3d4a60413421f20d2a2432e1eff7a55ef662842aa6bb23913e3dcb490b6186feff4ddc462d499db7c45639688398ec42912bce252 rsound-1.1.tar.gz -5047ca28666e6f4700659ccd1dd72dfed70146edccbece2fd529653c8c9b82057f0c7cf47233ebd5f9aa5c3cea0f0313f26c61ba0b4ae9db540ffe06a0acc1f8 rsound.initd -4b07a8a04bae9f127f3b362ccb867041139193a73e83051055c783722bbc515d045b9ea3814f91352af20f314b0b8f1b768dc39d8d0f4ef47a6b50e288f9b38d rsound.confd -aef6a2fc2f0c6f71f3fcd424d131bcd1a73ff8c451fc18a496341ff5c1a403d9e351e0f1555c46ae23529f4710b1af65abef88b2cc43e23f978cc84318e92197 pidfile.patch" diff --git a/community/rsound/pidfile.patch b/community/rsound/pidfile.patch deleted file mode 100644 index 26b10e3a28..0000000000 --- a/community/rsound/pidfile.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -upr RSound-1.1.orig/src/rsound-common.c RSound-1.1/src/rsound-common.c ---- RSound-1.1.orig/src/rsound-common.c 2015-11-22 03:25:55.595163404 +0100 -+++ RSound-1.1/src/rsound-common.c 2015-11-22 03:26:56.161613187 +0100 -@@ -49,7 +49,7 @@ - - - /* Not really portable, need to find something better */ --#define PIDFILE "/tmp/.rsound.pid" -+#define PIDFILE "/var/run/rsound.pid" - - /* Pulls in callback structs depending on compilation options. */ - diff --git a/community/rsound/rsound.confd b/community/rsound/rsound.confd deleted file mode 100644 index 83c20611e2..0000000000 --- a/community/rsound/rsound.confd +++ /dev/null @@ -1,2 +0,0 @@ -# Options to pass to rsound at startup. -RSOUND_OPTS="-L" diff --git a/community/rsound/rsound.initd b/community/rsound/rsound.initd deleted file mode 100644 index d8fef6d08c..0000000000 --- a/community/rsound/rsound.initd +++ /dev/null @@ -1,12 +0,0 @@ -#!/sbin/openrc-run - -name="rsound daemon" -command="/usr/bin/rsd" -command_args="-D $RSOUND_OPTS" -pidfile="/var/run/$SVCNAME.pid" - -depend() { - need net - use esound - after firewall -} |