diff options
Diffstat (limited to 'app-cdr/bashburn/bashburn-1.5.2.1.ebuild')
-rw-r--r-- | app-cdr/bashburn/bashburn-1.5.2.1.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/app-cdr/bashburn/bashburn-1.5.2.1.ebuild b/app-cdr/bashburn/bashburn-1.5.2.1.ebuild new file mode 100644 index 000000000000..d07285bbd359 --- /dev/null +++ b/app-cdr/bashburn/bashburn-1.5.2.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/bashburn/bashburn-1.5.2.1.ebuild,v 1.1 2005/01/20 23:42:42 sekretarz Exp $ + + +MY_P=${P//b/B} +DESCRIPTION="cd burning shell script" +HOMEPAGE="http://bashburn.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~sparc ~amd64 ~ppc" +IUSE="" + +S=${WORKDIR}/${MY_P} + +DEPEND="virtual/libc + >=app-cdr/cdrtools-2.01_alpha25 + >=app-cdr/cdrdao-1.1.7 + virtual/mpg123 + media-sound/lame + media-sound/vorbis-tools + media-sound/normalize + media-libs/flac + sys-apps/eject" + +RDEPEND="app-shells/bash" + +src_compile() { + echo "Skipping Compile" +} + +src_install() { + sed -i "s:export BBCONFFILE=/etc/bashburnrc:export BBCONFFILE=/etc/bashburn/bashburnrc:g" BashBurn.sh + sed -i "s:BBROOTDIR\:.*:BBROOTDIR\: /opt/BashBurn:g" bashburnrc + + dodir /etc/bashburn + dodir /opt/BashBurn + dodir /usr/bin + + mv {burning,config,convert,menus,misc,lang} ${D}/opt/BashBurn + + exeinto /opt/BashBurn + doexe BashBurn.sh || die + cp bashburnrc ${D}/etc/bashburn + fperms 655 /etc/bashburn/bashburnrc + ln -sf /opt/BashBurn/BashBurn.sh ${D}/usr/bin/bashburn + + dodoc README HOWTO +} |