blob: 207cf8ed16c9fc77e0c54beef09dd580b1f691cc (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/vmoconv/vmoconv-1.0-r1.ebuild,v 1.2 2009/03/20 13:30:28 josejx Exp $
inherit eutils autotools
DESCRIPTION="A tool that converts Siemens phones VMO and VMI audio files to gsm and wav."
HOMEPAGE="http://triq.net/obex/"
SRC_URI="http://triq.net/obexftp/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="media-sound/gsm"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-glibc28.patch"
epatch "${FILESDIR}/${P}-flags.patch"
epatch "${FILESDIR}/${P}-external-libgsm.patch"
eautoreconf
}
src_install() {
dobin src/vmo2gsm src/gsm2vmo src/vmo2wav
dodoc AUTHORS ChangeLog NEWS README THANKS
}
|