blob: 4d0b18e261f6b5dae6b81bfcb9199c3037c70ed5 (
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
46
47
48
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/mythweather/mythweather-0.10.ebuild,v 1.1 2003/07/08 23:56:30 johnm Exp $
inherit flag-o-matic
IUSE=""
DESCRIPTION="Weather forcast module for MythTV."
HOMEPAGE="http://www.mythtv.org/"
SRC_URI="http://www.mythtv.org/mc/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND=">=media-tv/mythtv-${PV}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
for i in `grep -lr "usr/local" "${S}"` ; do
sed -e "s:/usr/local:/usr:" -i "${i}" || die "sed failed"
done
}
src_compile() {
cpu="`get-flag march`"
if [ ! -z "${cpu}" ] ; then
sed -e "s:pentiumpro:${cpu}:g" -i "${S}/settings.pro" || die "sed failed"
fi
qmake -o "${S}/Makefile" "${S}/${PN}.pro"
emake || die "compile problem"
}
src_install() {
make INSTALL_ROOT="${D}" install || die "make install failed"
dodoc AUTHORS COPYING README
}
|