summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <drac@gentoo.org>2007-08-30 16:31:47 +0000
committerSamuli Suominen <drac@gentoo.org>2007-08-30 16:31:47 +0000
commit39b6cc79001d60246294841275146d75d7340dcb (patch)
tree66237da66b05a590da54bd8ce680d554ee4cafb1 /media-video/flumotion/files
parentremove myself from maintaner position (diff)
downloadgentoo-2-39b6cc79001d60246294841275146d75d7340dcb.tar.gz
gentoo-2-39b6cc79001d60246294841275146d75d7340dcb.tar.bz2
gentoo-2-39b6cc79001d60246294841275146d75d7340dcb.zip
Punt unused versions. GStreamer 0.8 is going away.
(Portage version: 2.1.3.7)
Diffstat (limited to 'media-video/flumotion/files')
-rw-r--r--media-video/flumotion/files/digest-flumotion-0.2.03
-rw-r--r--media-video/flumotion/files/digest-flumotion-0.2.13
-rwxr-xr-xmedia-video/flumotion/files/flumotion-init28
-rwxr-xr-xmedia-video/flumotion/files/flumotion-init-0.1.826
4 files changed, 0 insertions, 60 deletions
diff --git a/media-video/flumotion/files/digest-flumotion-0.2.0 b/media-video/flumotion/files/digest-flumotion-0.2.0
deleted file mode 100644
index 2ca25cba4274..000000000000
--- a/media-video/flumotion/files/digest-flumotion-0.2.0
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 f674eb7286fb0cef687c372a0da1ebd1 flumotion-0.2.0.tar.bz2 786656
-RMD160 ff375a892fe52302489c89236cab16c423c9f5ba flumotion-0.2.0.tar.bz2 786656
-SHA256 162298bfca1125c13f075f1aa3423e6f03a7358d801a0111f2e0d5816fc1911f flumotion-0.2.0.tar.bz2 786656
diff --git a/media-video/flumotion/files/digest-flumotion-0.2.1 b/media-video/flumotion/files/digest-flumotion-0.2.1
deleted file mode 100644
index 4743c6fee03a..000000000000
--- a/media-video/flumotion/files/digest-flumotion-0.2.1
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 56b54f35f791eca377475640725bd227 flumotion-0.2.1.tar.bz2 816871
-RMD160 81b6e1c038569a43a2fd4c074393ff41c63cc036 flumotion-0.2.1.tar.bz2 816871
-SHA256 9a9845e404b9cc088039884a834faa45a9ca77824f6bf001216be0279a143f7d flumotion-0.2.1.tar.bz2 816871
diff --git a/media-video/flumotion/files/flumotion-init b/media-video/flumotion/files/flumotion-init
deleted file mode 100755
index 7626c9852e8c..000000000000
--- a/media-video/flumotion/files/flumotion-init
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/sbin/runscript
-
-flumotion_manager=/usr/bin/flumotion-manager
-flumotion_worker=/usr/bin/flumotion-worker
-flumotion_manager_pidfile=/var/run/flumotion/manager.default.pid
-flumotion_worker_pidfile=/var/run/flumotion/worker.default.pid
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting Flumotion Manager"
- HOME=/usr/share/flumotion start-stop-daemon --start --chuid flumotion:flumotion --pidfile ${flumotion_manager_pidfile} --exec ${flumotion_manager} -- -D /etc/flumotion/managers/default/planet.xml
- eend $?
- ebegin "Starting Flumotion Worker"
- HOME=/usr/share/flumotion start-stop-daemon --start --chuid flumotion:flumotion --pidfile ${flumotion_worker_pidfile} --exec ${flumotion_worker} -- -D /etc/flumotion/workers/default.xml
- eend $?
-}
-
-stop() {
- ebegin "Stopping Flumotion Worker"
- start-stop-daemon --stop --pidfile ${flumotion_worker_pidfile}
- eend $?
- ebegin "Stopping Flumotion Manager"
- start-stop-daemon --stop --pidfile ${flumotion_manager_pidfile}
- eend $?
-}
diff --git a/media-video/flumotion/files/flumotion-init-0.1.8 b/media-video/flumotion/files/flumotion-init-0.1.8
deleted file mode 100755
index ff040edc13b4..000000000000
--- a/media-video/flumotion/files/flumotion-init-0.1.8
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/sbin/runscript
-
-flumotion_manager_pidfile=/var/run/flumotion/manager.planet.pid
-flumotion_worker_pidfile=/var/run/flumotion/worker.default.pid
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting Flumotion Manager"
- HOME=/usr/share/flumotion start-stop-daemon --start --chuid flumotion:flumotion --pidfile ${flumotion_manager_pidfile} --exec /usr/bin/flumotion-manager -- -D /etc/flumotion/managers/default/planet.xml
- eend $?
- ebegin "Starting Flumotion Worker"
- HOME=/usr/share/flumotion start-stop-daemon --start --chuid flumotion:flumotion --pidfile ${flumotion_worker_pidfile} --exec /usr/bin/flumotion-worker -- -D /etc/flumotion/workers/default.xml -ndefault
- eend $?
-}
-
-stop() {
- ebegin "Stopping Flumotion Worker"
- start-stop-daemon --stop --pidfile ${flumotion_worker_pidfile}
- eend $?
- ebegin "Stopping Flumotion Manager"
- start-stop-daemon --stop --pidfile ${flumotion_manager_pidfile}
- eend $?
-}