diff options
author | Matthias Schwarzott <zzam@gentoo.org> | 2006-11-29 13:27:05 +0000 |
---|---|---|
committer | Matthias Schwarzott <zzam@gentoo.org> | 2006-11-29 13:27:05 +0000 |
commit | 2848cd92ddfa37b91f6601853a1565142f1c94fa (patch) | |
tree | 91192431ae830b4a27d8d71aaeb2bb5e1d18f13f /media-video/recordmydesktop/recordmydesktop-0.2.5.ebuild | |
parent | Added dependencies to latest automake/autoconf. (diff) | |
download | historical-2848cd92ddfa37b91f6601853a1565142f1c94fa.tar.gz historical-2848cd92ddfa37b91f6601853a1565142f1c94fa.tar.bz2 historical-2848cd92ddfa37b91f6601853a1565142f1c94fa.zip |
Initial import of ebuild, based on one from Hydonsingore Cia <hydonsingore@educities.edu.tw>, Bug #148771.
Package-Manager: portage-2.1.2_rc2-r3
Diffstat (limited to 'media-video/recordmydesktop/recordmydesktop-0.2.5.ebuild')
-rw-r--r-- | media-video/recordmydesktop/recordmydesktop-0.2.5.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/media-video/recordmydesktop/recordmydesktop-0.2.5.ebuild b/media-video/recordmydesktop/recordmydesktop-0.2.5.ebuild new file mode 100644 index 000000000000..10b8a4b18395 --- /dev/null +++ b/media-video/recordmydesktop/recordmydesktop-0.2.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/recordmydesktop/recordmydesktop-0.2.5.ebuild,v 1.1 2006/11/29 13:27:05 zzam Exp $ + +inherit eutils + +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="~x86" +IUSE="" + +RDEPEND="media-libs/alsa-lib + x11-libs/libXext + x11-libs/libXdamage + x11-libs/libXfixes + media-libs/libogg + media-libs/libvorbis + media-libs/libtheora" +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${P}-nosound.patch" +} + +src_install() { + emake DESTDIR=${D} install || die "make install failed" + dodoc NEWS README AUTHORS ChangeLog +} |