diff options
-rw-r--r-- | app-cdr/simplecdrx/files/digest-simplecdrx-0.92 | 1 | ||||
-rw-r--r-- | app-cdr/simplecdrx/simplecdrx-0.92.ebuild | 37 |
2 files changed, 38 insertions, 0 deletions
diff --git a/app-cdr/simplecdrx/files/digest-simplecdrx-0.92 b/app-cdr/simplecdrx/files/digest-simplecdrx-0.92 new file mode 100644 index 000000000000..bf1d01d358e3 --- /dev/null +++ b/app-cdr/simplecdrx/files/digest-simplecdrx-0.92 @@ -0,0 +1 @@ +MD5 c70dfa1ef7e9f3759c902aab1ca9b3c4 simplecdrx-0.92.tar.gz diff --git a/app-cdr/simplecdrx/simplecdrx-0.92.ebuild b/app-cdr/simplecdrx/simplecdrx-0.92.ebuild new file mode 100644 index 000000000000..89b28d7fe6b0 --- /dev/null +++ b/app-cdr/simplecdrx/simplecdrx-0.92.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Dan Armak <danarmak@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/app-cdr/simplecdrx/simplecdrx-0.92.ebuild,v 1.1 2001/08/24 19:07:15 danarmak Exp $ + +S=${WORKDIR}/${PN} +SRC_URI="http://ogre.rocky-road.net/files/${P}.tar.gz" + +HOMEPAGE="http://ogre.rocky-road.net/cdr.shtml" +DESCRIPTION="CD ripping/mastering" + +#todo: add blade encoder +DEPEND="sys-devel/gcc media-sound/mad app-cdr/cdrecord app-cdr/cdrdao + media-sound/cdparanoia media-sound/lame media-libs/libogg + media-sound/mpg123 virtual/x11 x11-libs/gtk+ \ + dev-libs/glib media-libs/libvorbis" +RDEPEND="media-sound/mad app-cdr/cdrecord app-cdr/cdrdao + media-sound/cdparanoia media-sound/lame media-libs/libogg + media-sound/mpg123 virtual/x11 x11-libs/gtk+ \ + dev-libs/glib media-libs/libvorbis" + +src_compile() { + + confopts="--infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST}" + + try ./configure ${confopts} + + try emake + +} + +src_install () { + + try make DESTDIR=${D} install + +} + |