diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2014-01-27 17:19:19 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2014-01-27 17:19:19 +0000 |
commit | 38347a718819e33b4ce71a635e4515eb8a39f18b (patch) | |
tree | 05c7317514b5d327bf6a182634754edfea3786db /media-plugins | |
parent | dev-python/autobahn: New addition, written by me (diff) | |
download | gentoo-2-38347a718819e33b4ce71a635e4515eb8a39f18b.tar.gz gentoo-2-38347a718819e33b4ce71a635e4515eb8a39f18b.tar.bz2 gentoo-2-38347a718819e33b4ce71a635e4515eb8a39f18b.zip |
fixed install routine, plugin dosnt install the plugin lib(s)
(Portage version: 2.2.1/cvs/Linux i686, signed Manifest commit with key 34C2808A)
Diffstat (limited to 'media-plugins')
-rw-r--r-- | media-plugins/vdr-streamdev/ChangeLog | 6 | ||||
-rw-r--r-- | media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/media-plugins/vdr-streamdev/ChangeLog b/media-plugins/vdr-streamdev/ChangeLog index c8c74b82bf8e..fc187120549c 100644 --- a/media-plugins/vdr-streamdev/ChangeLog +++ b/media-plugins/vdr-streamdev/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for media-plugins/vdr-streamdev # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-streamdev/ChangeLog,v 1.23 2014/01/02 13:12:22 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-streamdev/ChangeLog,v 1.24 2014/01/27 17:19:19 hd_brummy Exp $ + + 27 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> + vdr-streamdev-0.6.1.ebuild: + fixed install routine, plugin dosnt install the plugin lib(s) 02 Jan 2014; Joerg Bornkessel <hd_brummy@gentoo.org> -vdr-streamdev-0.5.1.ebuild, vdr-streamdev-0.6.0.ebuild: diff --git a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild index d121c33f1452..0a72252dd716 100644 --- a/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild +++ b/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild,v 1.1 2013/12/27 17:22:23 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-streamdev/vdr-streamdev-0.6.1.ebuild,v 1.2 2014/01/27 17:19:19 hd_brummy Exp $ -EAPI="5" +EAPI=5 inherit vdr-plugin-2 @@ -34,6 +34,8 @@ src_prepare() { for flag in client server; do if ! use ${flag}; then sed -i Makefile \ + -e '/^.PHONY:/s/'${flag}'//' \ + -e '/^.PHONY:/s/'install-${flag}'//' \ -e '/^all:/s/'${flag}'//' \ -e '/^install:/s/'install-${flag}'//' fi |