blob: 33fa5fd8de51a18e8d8a399aa9f75e3a0a7a719f (
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-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-themes/mythtv-themes-extra/mythtv-themes-extra-0.21_p18657.ebuild,v 1.2 2009/07/19 16:00:26 cardoe Exp $
EAPI=2
inherit qt3 mythtv
DESCRIPTION="A collection of themes for the MythTV project."
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="x11-libs/qt:3
=media-tv/mythtv-${MY_PV}*"
src_configure() {
sh ./configure --prefix="${ROOT}"/usr || die "configure died"
}
src_compile() {
eqmake3 themes.pro || die "eqmake3 failed"
}
src_install() {
einstall INSTALL_ROOT="${D}" || die "install failed"
}
|