diff options
Diffstat (limited to 'media-video/dvdauthor/dvdauthor-0.5.3.ebuild')
-rw-r--r-- | media-video/dvdauthor/dvdauthor-0.5.3.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/media-video/dvdauthor/dvdauthor-0.5.3.ebuild b/media-video/dvdauthor/dvdauthor-0.5.3.ebuild new file mode 100644 index 000000000000..f74674028b06 --- /dev/null +++ b/media-video/dvdauthor/dvdauthor-0.5.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/dvdauthor/dvdauthor-0.5.3.ebuild,v 1.1 2003/07/08 21:43:22 mholzer Exp $ + +DESCRIPTION="Tools for generating DVD files to be played on standalone DVD players" +HOMEPAGE="http://sourceforge.net/projects/dvdauthor/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~x86" +IUSE="" + +DEPEND="media-libs/libdvdread" + +src_unpack() { + unpack ${A} + cd ${S}; sed -e '/CFLAGS =/d' -i.bak Makefile.in +} + +src_compile() { + econf || die "configuration failed" + emake || die "make failed" +} + +src_install() { + einstall || die "installation failed" + dodoc README HISTORY TODO +} |