Gentoo Archives: gentoo-commits

From: "Steve Dibb (beandog)" <beandog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-cdr/bashburn: ChangeLog bashburn-3.0.1.ebuild
Date: Tue, 16 Feb 2010 15:42:20
Message-Id: E1NhPKa-0006LJ-Mm@stork.gentoo.org
1 beandog 10/02/16 15:27:20
2
3 Modified: ChangeLog
4 Added: bashburn-3.0.1.ebuild
5 Log:
6 Version bump, bug 298931
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.37 app-cdr/bashburn/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/bashburn/ChangeLog?rev=1.37&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/bashburn/ChangeLog?rev=1.37&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/bashburn/ChangeLog?r1=1.36&r2=1.37
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-cdr/bashburn/ChangeLog,v
19 retrieving revision 1.36
20 retrieving revision 1.37
21 diff -u -r1.36 -r1.37
22 --- ChangeLog 4 Mar 2009 18:46:55 -0000 1.36
23 +++ ChangeLog 16 Feb 2010 15:27:19 -0000 1.37
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-cdr/bashburn
26 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-cdr/bashburn/ChangeLog,v 1.36 2009/03/04 18:46:55 lack Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-cdr/bashburn/ChangeLog,v 1.37 2010/02/16 15:27:19 beandog Exp $
30 +
31 +*bashburn-3.0.1 (16 Feb 2010)
32 +
33 + 16 Feb 2010; Steve Dibb <beandog@g.o> +bashburn-3.0.1.ebuild:
34 + Version bump, bug 298931
35
36 04 Mar 2009; Jim Ramsay <lack@g.o> ChangeLog:
37 Version bump - 3.0 is released (Bug #255258)
38
39
40
41 1.1 app-cdr/bashburn/bashburn-3.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/bashburn/bashburn-3.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-cdr/bashburn/bashburn-3.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: bashburn-3.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-cdr/bashburn/bashburn-3.0.1.ebuild,v 1.1 2010/02/16 15:27:19 beandog Exp $
51
52 EAPI=2
53 MY_P=BashBurn-${PV}
54 MY_PV="3.0"
55
56 DESCRIPTION="cd burning shell script"
57 HOMEPAGE="http://bashburn.sourceforge.net"
58 SRC_URI="http://bashburn.dose.se/index.php?s=file_download&id=3
59 -> ${MY_P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="dvdr"
65
66 RDEPEND="virtual/cdrtools
67 app-cdr/cdrdao
68 dvdr? ( app-cdr/dvd+rw-tools )
69 media-sound/mpg123
70 media-sound/lame
71 media-sound/vorbis-tools
72 media-sound/normalize
73 media-libs/flac
74 virtual/eject
75 app-shells/bash"
76
77 S="${WORKDIR}"/${MY_PV}
78
79 src_install() {
80 sed -i "s%@@BBROOTDIR@@%/opt/BashBurn%" BashBurn.sh \
81 || die "sed failed"
82
83 dodir /opt/BashBurn
84 dodir /usr/bin
85
86 mv {burning,config,convert,func,menus,misc,lang} "${D}"/opt/BashBurn
87
88 exeinto /opt/BashBurn
89 doexe BashBurn.sh || die
90
91 ln -sf /opt/BashBurn/BashBurn.sh "${D}"/usr/bin/bashburn
92
93 pushd docs
94 dodoc ChangeLog CREDITS FAQ HOWTO INSTALL README TODO TRANSLATION_RULE
95 popd
96
97 pushd bashburn_man
98 make bashburn.1
99 doman bashburn.1
100 popd
101 }
102
103 pkg_postinst() {
104 einfo "BashBurn-3.0 now stores its settings exclusively in ~/.bashburnrc"
105 einfo "Any old settings in /etc/bashburn/bashburnrc will be ignored"
106 }