summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-01-16 20:08:38 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-01-16 20:08:38 +0000
commit98cfe54ddc580ed1fa55be5839a496a9550864f0 (patch)
tree3eb1fe7897fa3e0bd3fa260ecf407c1b97b679f8 /media-video
parentamd64/x86 stable (diff)
downloadgentoo-2-98cfe54ddc580ed1fa55be5839a496a9550864f0.tar.gz
gentoo-2-98cfe54ddc580ed1fa55be5839a496a9550864f0.tar.bz2
gentoo-2-98cfe54ddc580ed1fa55be5839a496a9550864f0.zip
old
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'media-video')
-rw-r--r--media-video/motion/ChangeLog5
-rw-r--r--media-video/motion/motion-3.2.12-r1.ebuild72
2 files changed, 4 insertions, 73 deletions
diff --git a/media-video/motion/ChangeLog b/media-video/motion/ChangeLog
index 00283d09d6fc..329139577a1b 100644
--- a/media-video/motion/ChangeLog
+++ b/media-video/motion/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-video/motion
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/motion/ChangeLog,v 1.39 2012/01/16 20:07:34 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-video/motion/ChangeLog,v 1.40 2012/01/16 20:08:37 ssuominen Exp $
+
+ 16 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> -motion-3.2.12-r1.ebuild:
+ old
16 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> motion-3.2.12-r2.ebuild:
amd64/x86 stable
diff --git a/media-video/motion/motion-3.2.12-r1.ebuild b/media-video/motion/motion-3.2.12-r1.ebuild
deleted file mode 100644
index feac6d4cc1b5..000000000000
--- a/media-video/motion/motion-3.2.12-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/motion/motion-3.2.12-r1.ebuild,v 1.3 2011/12/03 15:58:14 aballier Exp $
-
-EAPI=4
-inherit eutils
-
-DESCRIPTION="A software motion detector"
-HOMEPAGE="http://www.lavrsen.dk/twiki/bin/view/Motion/WebHome"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ppc ~x86"
-IUSE="ffmpeg mysql postgres v4l"
-
-RDEPEND="sys-libs/zlib
- virtual/jpeg
- ffmpeg? ( virtual/ffmpeg )
- mysql? ( virtual/mysql )
- postgres? ( dev-db/postgresql-base )"
-DEPEND="${RDEPEND}
- v4l? ( virtual/os-headers )"
-
-pkg_setup() {
- enewuser motion -1 -1 -1 video
-}
-
-src_prepare() {
- epatch "${FILESDIR}/ffmpeg08.patch"
-}
-
-src_configure() {
- local hack
- if has_version '>=sys-kernel/linux-headers-2.6.38'; then
- hack="--without-v4l" #361509
- ewarn "Disabling video4linux support because of too new"
- ewarn "linux-headers. See bug 376225 for new motion."
- fi
-
- econf \
- $(use_with v4l) \
- $(use_with ffmpeg) \
- $(use_with mysql) \
- $(use_with postgres pgsql) \
- --without-optimizecpu \
- ${hack}
-}
-
-src_install() {
- emake \
- DESTDIR="${D}" \
- DOC='CHANGELOG CODE_STANDARD CREDITS FAQ README' \
- docdir=/usr/share/doc/${PF} \
- EXAMPLES='thread*.conf' \
- examplesdir=/usr/share/doc/${PF}/examples \
- install
-
- dohtml *.html
-
- newinitd "${FILESDIR}"/motion.initd-r2 motion
- newconfd "${FILESDIR}"/motion.confd motion
-
- mv -vf "${D}"/etc/motion{-dist,}.conf || die
-}
-
-pkg_postinst() {
- elog "You need to setup /etc/motion.conf before running"
- elog "motion for the first time."
- elog "You can install motion detection as a service, use:"
- elog "rc-update add motion default"
-}