# Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Jano Lukac # S=${WORKDIR}/${P} DESCRIPTION="GNU VCDImager is a program for making Video CD (and Super Video CD, a.k.a. SVCD) images out of MPEG movie files." SRC_URI="http://vcdimager.hvrlab.org/pub/vcdimager/vcdimager-0.6/${P}.tar.gz" HOMEPAGE="http://www.gnu.org/software/vcdimager/" DEPEND="gnome? ( >=gnome-base/libglade-0.16-r1 )" src_compile() { local myflags # vcdimager's gnome frontend does not work yet #if [ "`use gnome`" ] ; then #myflags="--prefix=/opt/gnome --with-gnome-frontend" #else #myflags="--prefix=/usr --without-gnome-frontend" #fi myflags="--prefix=/usr --without-gnome-frontend" try ./configure ${myflags} --host=${CHOST} --mandir="\$\{prefix\}/share/man" --infodir="\\$\{prefix\}/share/info" try emake } src_install () { try make DESTDIR=${D} install dodoc README COPYING NEWS BUGS AUTHORS FAQ THANKS TODO ChangeLog }