# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ #KEYWORDS="cdr burning cdrw burn" DESCRIPTION="A graphical frontend for cdrecord and mkisofs written in gnome-python" HOMEPAGE="http://eroaster.sourceforge.net" LICENSE="GPL-2" # cdrecord and mkisofs are needed or configure fails DEPEND="dev-python/gnome-python app-cdr/cdrtools sys-apps/mkisofs" RDEPEND="${DEPEND}" SLOT="0" SRC_URI="http://telia.dl.sourceforge.net/sourceforge/eroaster/eroaster-2.1.0.tar.gz" S=${WORKDIR}/${P} src_compile() { ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" #emake || die make || die } src_install () { make \ prefix=${D}/usr \ mandir=${D}/usr/share/man \ infodir=${D}/usr/share/info \ install || die } pkg_postinst() { einfo einfo "The following binaries are needed to make full use of this program:" einfo einfo "mpg123 For converting MP3s to WAVs and playing MP3s" einfo "sox For converting MP3s to WAVs" einfo "xmms For playing MP3s" einfo "bchunk For converting BIN/CUE to ISO" einfo "lame For Encoding MP3s" einfo "ogginfo For Getting OGG ID3 information" einfo "ogg123 For converting OGGs to WAVs" einfo }