diff options
author | Doug Goldstein <cardoe@gentoo.org> | 2010-06-10 03:39:42 +0000 |
---|---|---|
committer | Doug Goldstein <cardoe@gentoo.org> | 2010-06-10 03:39:42 +0000 |
commit | 80afb7e6e70be4d7198be2221e18af630815850b (patch) | |
tree | f7f89a5b651ef3562c08376039febb51af5376a9 /x11-themes/mythtv-themes | |
parent | Stable for HPPA (bug #304493). (diff) | |
download | gentoo-2-80afb7e6e70be4d7198be2221e18af630815850b.tar.gz gentoo-2-80afb7e6e70be4d7198be2221e18af630815850b.tar.bz2 gentoo-2-80afb7e6e70be4d7198be2221e18af630815850b.zip |
Add experimental ebuild for MythTV 0.23
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'x11-themes/mythtv-themes')
-rw-r--r-- | x11-themes/mythtv-themes/ChangeLog | 8 | ||||
-rw-r--r-- | x11-themes/mythtv-themes/mythtv-themes-0.23_p24661.ebuild | 26 |
2 files changed, 33 insertions, 1 deletions
diff --git a/x11-themes/mythtv-themes/ChangeLog b/x11-themes/mythtv-themes/ChangeLog index 945102df92b2..ff1379ebe449 100644 --- a/x11-themes/mythtv-themes/ChangeLog +++ b/x11-themes/mythtv-themes/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-themes/mythtv-themes # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/mythtv-themes/ChangeLog,v 1.70 2010/05/26 15:44:18 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/mythtv-themes/ChangeLog,v 1.71 2010/06/10 03:39:42 cardoe Exp $ + +*mythtv-themes-0.23_p24661 (10 Jun 2010) + + 10 Jun 2010; Doug Goldstein <cardoe@gentoo.org> + +mythtv-themes-0.23_p24661.ebuild: + Add experimental ebuild for MythTV 0.23 *mythtv-themes-0.22_p23473 (26 May 2010) diff --git a/x11-themes/mythtv-themes/mythtv-themes-0.23_p24661.ebuild b/x11-themes/mythtv-themes/mythtv-themes-0.23_p24661.ebuild new file mode 100644 index 000000000000..93c122716a84 --- /dev/null +++ b/x11-themes/mythtv-themes/mythtv-themes-0.23_p24661.ebuild @@ -0,0 +1,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.23_p24661.ebuild,v 1.1 2010/06/10 03:39:42 cardoe 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" +} |