diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2011-01-19 16:46:20 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2011-01-19 16:46:20 +0000 |
commit | e53d635cde45ec006280b1f2b701dc79f5b939a0 (patch) | |
tree | ba837813b1cfc017120856ec543d74afb873a93f /media-plugins | |
parent | Version bump - Removed old (diff) | |
download | gentoo-2-e53d635cde45ec006280b1f2b701dc79f5b939a0.tar.gz gentoo-2-e53d635cde45ec006280b1f2b701dc79f5b939a0.tar.bz2 gentoo-2-e53d635cde45ec006280b1f2b701dc79f5b939a0.zip |
eapi=2; minor ebuild fixes, removed all comments, fixed boost depend on gcc version; stable x86 amd64;
(Portage version: 2.1.9.25/cvs/Linux i686)
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/vdr-live/ChangeLog | 10 | ||||
-rw-r--r-- | media-plugins/vdr-live/vdr-live-0.2.0.ebuild | 21 |
2 files changed, 16 insertions, 15 deletions
diff --git a/media-plugins/vdr-live/ChangeLog b/media-plugins/vdr-live/ChangeLog index e7a2f787b917..54af1a1fd1a7 100644 --- a/media-plugins/vdr-live/ChangeLog +++ b/media-plugins/vdr-live/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-plugins/vdr-live -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-live/ChangeLog,v 1.20 2010/01/03 20:13:02 hd_brummy Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-live/ChangeLog,v 1.21 2011/01/19 16:46:20 hd_brummy Exp $ + + 19 Jan 2011; Joerg Bornkessel <hd_brummy@gentoo.org> + vdr-live-0.2.0.ebuild: + eapi=2; minor ebuild fixes, removed all comments, fixed boost depend on + gcc version; stable x86 amd64; + 03 Jan 2010; Joerg Bornkessel <hd_brummy@gentoo.org> vdr-live-0.2.0.ebuild: diff --git a/media-plugins/vdr-live/vdr-live-0.2.0.ebuild b/media-plugins/vdr-live/vdr-live-0.2.0.ebuild index 620a9177a83d..4ab495ded599 100644 --- a/media-plugins/vdr-live/vdr-live-0.2.0.ebuild +++ b/media-plugins/vdr-live/vdr-live-0.2.0.ebuild @@ -1,20 +1,18 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-live/vdr-live-0.2.0.ebuild,v 1.5 2010/01/03 20:13:02 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-live/vdr-live-0.2.0.ebuild,v 1.6 2011/01/19 16:46:20 hd_brummy Exp $ -inherit vdr-plugin versionator +EAPI="2" -MY_PV=$(get_version_component_range 4) -MY_P="${PN}-${MY_PV}" +inherit vdr-plugin DESCRIPTION="VDR Plugin: Web Access To Settings" HOMEPAGE="http://live.vdr-developer.org" SRC_URI="http://live.vdr-developer.org/downloads/${P}.tar.gz" -#SRC_URI="mirror://gentoo/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="media-video/vdr @@ -22,17 +20,14 @@ DEPEND="media-video/vdr >=dev-libs/cxxtools-1.4.3" RDEPEND="${DEPEND}" -# depends that are not rdepend DEPEND="${DEPEND} - >=dev-libs/boost-1.33.0" + || ( >=sys-devel/gcc-4.1 >=dev-libs/boost-1.33.0 )" S="${WORKDIR}/${VDRPLUGIN}-${PV}" -src_unpack() { - vdr-plugin_src_unpack - cd "${S}" +src_prepare() { + vdr-plugin_src_prepare - # make it work with /bin/sh as indicated in the file header sed -e "18s/==/=/" -i buildutil/version-util } |