blob: 62dfbc779de1265888dfddc592511f7df712c054 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild,v 1.12 2004/11/12 08:24:59 eradicator Exp $
IUSE=""
inherit eutils
MY_P=${P/_/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Console based speech recognition system"
HOMEPAGE="http://www.kiecza.de/daniel/linux/cvoicecontrol/index.html"
SRC_URI="http://www.kiecza.de/daniel/linux/${MY_P}.tar.bz2"
DEPEND="virtual/libc"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 sparc x86"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gentoo.diff
#remove "docs" from SUBDIRS in Makefile.in
#Makefile will try to install few html files directly under the /usr
#much easier to do with dohtml
cd ${S}/cvoicecontrol/
sed -i "s:SUBDIRS = docs:#SUBDIRS = docs:" Makefile.in
cd ${S}
sed -i "s/install-data-am: install-data-local/install-data-am:/" Makefile.in
}
src_install () {
make DESTDIR="${D}" install || die
#install documentation
dodoc AUTHORS BUGS ChangeLog FAQ README
dohtml cvoicecontrol/docs/en/*.html
}
|