summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2010-05-13 14:38:02 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2010-05-13 14:38:02 +0000
commite7e4c522c7db86eefacc24de62a5433da00f4b9b (patch)
tree41750a2831a82ab0aecfb1a478deca81cd92441e /media-video/SDLcam/SDLcam-0.7.3-r2.ebuild
parentold (diff)
downloadgentoo-2-e7e4c522c7db86eefacc24de62a5433da00f4b9b.tar.gz
gentoo-2-e7e4c522c7db86eefacc24de62a5433da00f4b9b.tar.bz2
gentoo-2-e7e4c522c7db86eefacc24de62a5433da00f4b9b.zip
old
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'media-video/SDLcam/SDLcam-0.7.3-r2.ebuild')
-rw-r--r--media-video/SDLcam/SDLcam-0.7.3-r2.ebuild55
1 files changed, 0 insertions, 55 deletions
diff --git a/media-video/SDLcam/SDLcam-0.7.3-r2.ebuild b/media-video/SDLcam/SDLcam-0.7.3-r2.ebuild
deleted file mode 100644
index 8229d712c703..000000000000
--- a/media-video/SDLcam/SDLcam-0.7.3-r2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/SDLcam/SDLcam-0.7.3-r2.ebuild,v 1.5 2009/08/08 20:44:56 vostorga Exp $
-
-inherit eutils
-
-DESCRIPTION="Webcam application that uses the SDL library"
-HOMEPAGE="http://sdlcam.raphnet.net/"
-SRC_URI="http://sdlcam.raphnet.net/downloads/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE=""
-
-DEPEND="dev-libs/libxml2
- media-libs/jpeg
- media-libs/libpng
- media-libs/libfame
- media-libs/libsdl
- media-libs/sdl-image
- media-libs/sdl-ttf"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PV}-gcc3.patch
- rm capture/divx* # the divx.so needs to be ported to newer avifile
- epatch "${FILESDIR}"/${PV}-linux-2.6.patch
- epatch "${FILESDIR}"/${P}-tsc.patch #109161
- epatch "${FILESDIR}"/${P}-prototypes.patch
- epatch "${FILESDIR}"/${P}-build.patch
- epatch "${FILESDIR}"/${P}-relax-asm.patch #152002
- epatch "${FILESDIR}"/${P}-jpeg.patch
- epatch "${FILESDIR}"/${PN}-glibc210.patch
-
- # Don't you love hardcoded vars?
- sed -i \
- -e 's:/usr/local/share/SDLcam/:/usr/share/SDLcam/:' \
- -e 's:/usr/local/lib/SDLcam:/usr/lib/SDLcam:' \
- -e 's:sources/:/usr/lib/SDLcam/sources/:' \
- configuration.h interface.cpp SDL_v4l_filters.c main.cpp
-}
-
-src_install() {
- dobin SDLcam || die
- insinto /usr/share/SDLcam
- doins LucidaSansRegular.ttf LucidaTypewriterRegular.ttf SDLcam.xml SDLcam.cfg || die
- insinto /usr/lib/SDLcam/filters
- doins filter/*.so || die
- insinto /usr/lib/SDLcam/capture
- doins capture/*.so || die
- insinto /usr/lib/SDLcam/sources
- doins sources/*.so || die
-}