Gentoo Archives: gentoo-commits

From: "Alin Nastac (mrness)" <mrness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-mobilephone/vmoconv: ChangeLog vmoconv-1.0-r1.ebuild
Date: Wed, 04 Mar 2009 01:25:02
Message-Id: E1LeaR4-0004yR-HV@stork.gentoo.org
1 mrness 09/03/03 19:37:50
2
3 Modified: ChangeLog
4 Added: vmoconv-1.0-r1.ebuild
5 Log:
6 Use system libgsm instead copy included in the tarball (#252886).
7 Remove forced -g from (C|LD)FLAGS.
8 (Portage version: 2.1.6.7/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.7 app-mobilephone/vmoconv/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/vmoconv/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/vmoconv/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/vmoconv/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-mobilephone/vmoconv/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 5 Oct 2008 22:44:34 -0000 1.6
24 +++ ChangeLog 3 Mar 2009 19:37:50 -0000 1.7
25 @@ -1,6 +1,14 @@
26 # ChangeLog for app-mobilephone/vmoconv
27 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/vmoconv/ChangeLog,v 1.6 2008/10/05 22:44:34 flameeyes Exp $
29 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/vmoconv/ChangeLog,v 1.7 2009/03/03 19:37:50 mrness Exp $
31 +
32 +*vmoconv-1.0-r1 (03 Mar 2009)
33 +
34 + 03 Mar 2009; Alin Năstac <mrness@g.o>
35 + +files/vmoconv-1.0-external-libgsm.patch, +files/vmoconv-1.0-flags.patch,
36 + +vmoconv-1.0-r1.ebuild:
37 + Use system libgsm instead copy included in the tarball (#252886). Remove
38 + forced -g from (C|LD)FLAGS.
39
40 05 Oct 2008; Diego Pettenò <flameeyes@g.o>
41 files/vmoconv-1.0-glibc28.patch:
42
43
44
45 1.1 app-mobilephone/vmoconv/vmoconv-1.0-r1.ebuild
46
47 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/vmoconv/vmoconv-1.0-r1.ebuild?rev=1.1&view=markup
48 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-mobilephone/vmoconv/vmoconv-1.0-r1.ebuild?rev=1.1&content-type=text/plain
49
50 Index: vmoconv-1.0-r1.ebuild
51 ===================================================================
52 # Copyright 1999-2009 Gentoo Foundation
53 # Distributed under the terms of the GNU General Public License v2
54 # $Header: /var/cvsroot/gentoo-x86/app-mobilephone/vmoconv/vmoconv-1.0-r1.ebuild,v 1.1 2009/03/03 19:37:50 mrness Exp $
55
56 inherit eutils autotools
57
58 DESCRIPTION="A tool that converts Siemens phones VMO and VMI audio files to gsm and wav."
59 HOMEPAGE="http://triq.net/obex/"
60 SRC_URI="http://triq.net/obexftp/${P}.tar.gz"
61 LICENSE="GPL-2"
62
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 DEPEND="media-sound/gsm"
68 RDEPEND="${DEPEND}"
69
70 src_unpack() {
71 unpack ${A}
72
73 cd "${S}"
74 epatch "${FILESDIR}/${P}-glibc28.patch"
75 epatch "${FILESDIR}/${P}-flags.patch"
76 epatch "${FILESDIR}/${P}-external-libgsm.patch"
77
78 eautoreconf
79 }
80
81 src_install() {
82 dobin src/vmo2gsm src/gsm2vmo src/vmo2wav
83 dodoc AUTHORS ChangeLog NEWS README THANKS
84 }