summaryrefslogtreecommitdiff
blob: 41e21e0b6db1a39e8b4a2033612549b9acb81464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-cdr/bashburn/bashburn-3.0.ebuild,v 1.1 2009/03/04 18:46:55 lack Exp $

EAPI=2
MY_P=BashBurn-${PV}

DESCRIPTION="cd burning shell script"
HOMEPAGE="http://bashburn.sourceforge.net"
SRC_URI="http://bashburn.dose.se/index.php?s=file_download&id=3
			-> ${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="dvdr"

RDEPEND="virtual/libc
	virtual/cdrtools
	app-cdr/cdrdao
	dvdr? ( app-cdr/dvd+rw-tools )
	virtual/mpg123
	media-sound/lame
	media-sound/vorbis-tools
	media-sound/normalize
	media-libs/flac
	virtual/eject
	app-shells/bash"

S="${WORKDIR}"/${PV}

src_install() {
	sed -i "s%@@BBROOTDIR@@%/opt/BashBurn%" BashBurn.sh \
		|| die "sed failed"

	dodir /opt/BashBurn
	dodir /usr/bin

	mv {burning,config,convert,func,menus,misc,lang} "${D}"/opt/BashBurn

	exeinto /opt/BashBurn
	doexe BashBurn.sh || die

	ln -sf /opt/BashBurn/BashBurn.sh "${D}"/usr/bin/bashburn

	pushd docs
	dodoc ChangeLog CREDITS FAQ HOWTO INSTALL README TODO TRANSLATION_RULE
	popd

	pushd bashburn_man
	make bashburn.1
	doman bashburn.1
	popd
}

pkg_postinst() {
	einfo "BashBurn-3.0 now stores its settings exclusively in ~/.bashburnrc"
	einfo "Any old settings in /etc/bashburn/bashburnrc will be ignored"
}