blob: 1bf7da6a2ee118c4985dc898556dbcbc50940399 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/mythtv-themes/mythtv-themes-0.22_p23473.ebuild,v 1.2 2010/07/26 13:39:58 fauli Exp $
EAPI=2
inherit qt4 mythtv
DESCRIPTION="A collection of themes for the MythTV project."
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE=""
DEPEND="x11-libs/qt-core:4
=media-tv/mythtv-${MY_PV}*"
src_configure() {
sh ./configure --prefix=/usr || die "configure died"
}
src_compile() {
eqmake4 myththemes.pro || die "qmake failed"
}
src_install() {
einstall INSTALL_ROOT="${D}" || die "install failed"
}
|