# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-video/recordmydesktop/recordmydesktop-0.3.3.1.ebuild,v 1.1 2007/03/04 15:10:06 aballier Exp $ DESCRIPTION="A desktop session recorder producing Ogg video/audio files" HOMEPAGE="http://recordmydesktop.sourceforge.net/" SRC_URI="mirror://sourceforge/recordmydesktop/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc64 ~x86" IUSE="jack alsa" DEPEND="x11-libs/libXext x11-libs/libXdamage x11-libs/libXfixes x11-libs/libICE x11-libs/libSM media-libs/libogg media-libs/libvorbis media-libs/libtheora alsa? ( media-libs/alsa-lib ) jack? ( media-sound/jack-audio-connection-kit )" src_compile() { local myconf use jack && myconf="${myconf} --enable-jack=yes" use alsa || myconf="${myconf} --enable-oss=yes" econf ${myconf} || die "configure failed" emake || die "make failed" } src_install() { emake DESTDIR=${D} install || die "make install failed" dodoc NEWS README AUTHORS ChangeLog }