Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-sound/awesfx: ChangeLog awesfx-0.5.1c-r1.ebuild
Date: Sat, 30 May 2009 19:22:47
Message-Id: E1MAU8j-00024I-PM@stork.gentoo.org
1 ssuominen 09/05/30 19:22:45
2
3 Modified: ChangeLog
4 Added: awesfx-0.5.1c-r1.ebuild
5 Log:
6 Experimental sfxload init.d and conf.d files wrt #88159.
7 (Portage version: 2.1.6.13/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.29 media-sound/awesfx/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/awesfx/ChangeLog?rev=1.29&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/awesfx/ChangeLog?rev=1.29&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/awesfx/ChangeLog?r1=1.28&r2=1.29
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-sound/awesfx/ChangeLog,v
19 retrieving revision 1.28
20 retrieving revision 1.29
21 diff -u -r1.28 -r1.29
22 --- ChangeLog 25 May 2009 21:05:23 -0000 1.28
23 +++ ChangeLog 30 May 2009 19:22:45 -0000 1.29
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-sound/awesfx
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-sound/awesfx/ChangeLog,v 1.28 2009/05/25 21:05:23 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-sound/awesfx/ChangeLog,v 1.29 2009/05/30 19:22:45 ssuominen Exp $
29 +
30 +*awesfx-0.5.1c-r1 (30 May 2009)
31 +
32 + 30 May 2009; Samuli Suominen <ssuominen@g.o>
33 + +awesfx-0.5.1c-r1.ebuild, +files/sfxload.confd, +files/sfxload.initd:
34 + Experimental sfxload init.d and conf.d files wrt #88159.
35
36 25 May 2009; Markus Meier <maekke@g.o> awesfx-0.5.1c.ebuild:
37 x86 stable, bug #270569
38
39
40
41 1.1 media-sound/awesfx/awesfx-0.5.1c-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/awesfx/awesfx-0.5.1c-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/awesfx/awesfx-0.5.1c-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: awesfx-0.5.1c-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-sound/awesfx/awesfx-0.5.1c-r1.ebuild,v 1.1 2009/05/30 19:22:45 ssuominen Exp $
51
52 EAPI=2
53 inherit eutils
54
55 DESCRIPTION="AWE32 Sound Driver Utility Programs"
56 HOMEPAGE="http://ftp.suse.com/pub/people/tiwai/awesfx"
57 SRC_URI="http://ftp.suse.com/pub/people/tiwai/${PN}/${P}.tar.bz2"
58
59 LICENSE="GPL-2"
60 SLOT="0"
61 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
62 IUSE=""
63
64 RDEPEND="media-libs/alsa-lib"
65 DEPEND="${RDEPEND}"
66
67 BANK_LOC="/usr/share/sounds/sf2"
68
69 src_prepare() {
70 epatch "${FILESDIR}"/${P}-getline.patch
71 }
72
73 src_configure() {
74 econf \
75 --with-sfpath=${BANK_LOC}
76 }
77
78 src_install() {
79 emake DESTDIR="${D}" install || die "emake install failed"
80 dodoc AUTHORS ChangeLog README SBKtoSF2.txt samples/README-bank
81 rm -f "${D}"/usr/share/sounds/sf2/README-bank
82 newinitd "${FILESDIR}"/sfxload.initd sfxload
83 newconfd "${FILESDIR}"/sfxload.confd sfxload
84 }
85
86 pkg_postinst() {
87 elog "Copy your SoundFont files from the original CDROM"
88 elog "shipped with your soundcard to ${BANK_LOC}."
89 }