summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-10-14 17:02:21 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-10-14 17:02:21 +0000
commitd5502ee8d7c333367deaf616aca6ec13c1d27c5b (patch)
tree5e8dfaf504dade2f463c6bf986ec5893885a01c1 /media-video/motion/files
parentVersion bump, bug #241328, thank pavel sanda for report. (diff)
downloadhistorical-d5502ee8d7c333367deaf616aca6ec13c1d27c5b.tar.gz
historical-d5502ee8d7c333367deaf616aca6ec13c1d27c5b.tar.bz2
historical-d5502ee8d7c333367deaf616aca6ec13c1d27c5b.zip
remove old
Package-Manager: portage-2.2_rc12/cvs/Linux 2.6.26.6 x86_64
Diffstat (limited to 'media-video/motion/files')
-rw-r--r--media-video/motion/files/motion-3.2.4-ffmpeg-compat.patch11
-rw-r--r--media-video/motion/files/motion-3.2.9-asneeded.patch13
-rw-r--r--media-video/motion/files/motion.init29
3 files changed, 0 insertions, 53 deletions
diff --git a/media-video/motion/files/motion-3.2.4-ffmpeg-compat.patch b/media-video/motion/files/motion-3.2.4-ffmpeg-compat.patch
deleted file mode 100644
index e3bf11f304f3..000000000000
--- a/media-video/motion/files/motion-3.2.4-ffmpeg-compat.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- motion-3.2.4/Makefile.in.old 2006-10-21 22:27:48.000000000 +0200
-+++ motion-3.2.4/Makefile.in 2006-10-21 22:28:56.000000000 +0200
-@@ -31,7 +31,7 @@
- # install. #
- ################################################################################
- CFLAGS = @CFLAGS@ -Wall -DVERSION=\"$(VERSION)\" -D_REENTRANT \
-- -Dsysconfdir=\"$(sysconfdir)\"
-+ -DFFMPEG_AVWRITEFRAME_NEWAPI -Dsysconfdir=\"$(sysconfdir)\"
- LDFLAGS = @LDFLAGS@
- LIBS = @LIBS@
- VIDEO_OBJ = @VIDEO@
diff --git a/media-video/motion/files/motion-3.2.9-asneeded.patch b/media-video/motion/files/motion-3.2.9-asneeded.patch
deleted file mode 100644
index 5ba12490251f..000000000000
--- a/media-video/motion/files/motion-3.2.9-asneeded.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: motion-3.2.9/configure
-===================================================================
---- motion-3.2.9.orig/configure
-+++ motion-3.2.9/configure
-@@ -4064,7 +4064,7 @@ fi
- echo "${ECHO_T}$ac_cv_lib_lavjpeg_decode_jpeg_raw" >&6; }
- if test $ac_cv_lib_lavjpeg_decode_jpeg_raw = yes; then
-
-- TEMP_LDFLAGS="$TEMP_LDFLAGS -lmjpegutils -llavjpeg"
-+ TEMP_LIBS="$TEMP_LIBS -lmjpegutils -llavjpeg"
- MJPEG_SUPPORT="yes"
- TEMP_CFLAGS="$TEMP_CFLAGS -DMJPEGT"
-
diff --git a/media-video/motion/files/motion.init b/media-video/motion/files/motion.init
deleted file mode 100644
index 0c7f8a9d2ea4..000000000000
--- a/media-video/motion/files/motion.init
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/motion/files/motion.init,v 1.2 2007/10/19 15:37:54 drac Exp $
-
-opts="${opts} reload"
-
-depend() {
- need modules
- after mysql
-}
-
-start() {
- ebegin "Starting motion detection"
- start-stop-daemon --start --quiet --exec /usr/bin/motion
- eend $?
-}
-
-stop() {
- ebegin "Stopping motion detection"
- start-stop-daemon --stop --quiet --exec /usr/bin/motion
- eend $?
-}
-
-reload() {
- ebegin "Reloading motion detection configuration"
- start-stop-daemon --stop --signal HUP --exec /usr/bin/motion
- eend $?
-}