diff options
author | 2008-04-16 20:02:24 +0000 | |
---|---|---|
committer | 2008-04-16 20:02:24 +0000 | |
commit | 44420b29c6f06ec1c419636c0fcc4efb438c0dfd (patch) | |
tree | 641c8df7e33aaf0a9d578bcf924c35b746313307 /media-video | |
parent | Stable on alpha, bug #217845 (diff) | |
download | gentoo-2-44420b29c6f06ec1c419636c0fcc4efb438c0dfd.tar.gz gentoo-2-44420b29c6f06ec1c419636c0fcc4efb438c0dfd.tar.bz2 gentoo-2-44420b29c6f06ec1c419636c0fcc4efb438c0dfd.zip |
Fix installing man pages, bug 217769, thanks to Daniel Pielmeier for patch
(Portage version: 2.1.5_rc3)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/mplayer/ChangeLog | 9 | ||||
-rw-r--r-- | media-video/mplayer/files/mplayer-1.0_rc2_p26454-makefile.patch | 13 | ||||
-rw-r--r-- | media-video/mplayer/mplayer-1.0_rc2_p26454-r1.ebuild (renamed from media-video/mplayer/mplayer-1.0_rc2_p26454.ebuild) | 5 |
3 files changed, 25 insertions, 2 deletions
diff --git a/media-video/mplayer/ChangeLog b/media-video/mplayer/ChangeLog index bf81c255da06..50e3f0b033aa 100644 --- a/media-video/mplayer/ChangeLog +++ b/media-video/mplayer/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-video/mplayer # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/ChangeLog,v 1.566 2008/04/16 15:27:08 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/ChangeLog,v 1.567 2008/04/16 20:02:24 beandog Exp $ + +*mplayer-1.0_rc2_p26454-r1 (16 Apr 2008) + + 16 Apr 2008; Steve Dibb <beandog@gentoo.org> + +files/mplayer-1.0_rc2_p26454-makefile.patch, + -mplayer-1.0_rc2_p26454.ebuild, +mplayer-1.0_rc2_p26454-r1.ebuild: + Fix installing man pages, bug 217769, thanks to Daniel Pielmeier for patch *mplayer-1.0_rc2_p26454 (16 Apr 2008) diff --git a/media-video/mplayer/files/mplayer-1.0_rc2_p26454-makefile.patch b/media-video/mplayer/files/mplayer-1.0_rc2_p26454-makefile.patch new file mode 100644 index 000000000000..42707c1b65b7 --- /dev/null +++ b/media-video/mplayer/files/mplayer-1.0_rc2_p26454-makefile.patch @@ -0,0 +1,13 @@ +--- Makefile 2008-04-16 21:06:20.000000000 +0200 ++++ Makefile.new 2008-04-16 21:11:02.000000000 +0200 +@@ -344,8 +344,8 @@ + if test "$$lang" = en ; then \ + $(INSTALL) -c -m 644 DOCS/man/en/mplayer.1 $(MANDIR)/man1/ ; \ + else \ +- $(INSTALL) -d $(MANDIR)/$$i/man1 ; \ +- $(INSTALL) -c -m 644 DOCS/man/$$lang/mplayer.1 $(MANDIR)/$$i/man1/ ; \ ++ $(INSTALL) -d $(MANDIR)/$$lang/man1 ; \ ++ $(INSTALL) -c -m 644 DOCS/man/$$lang/mplayer.1 $(MANDIR)/$$lang/man1/ ; \ + fi ; \ + done + diff --git a/media-video/mplayer/mplayer-1.0_rc2_p26454.ebuild b/media-video/mplayer/mplayer-1.0_rc2_p26454-r1.ebuild index ac47edb903f1..5b753939ba3e 100644 --- a/media-video/mplayer/mplayer-1.0_rc2_p26454.ebuild +++ b/media-video/mplayer/mplayer-1.0_rc2_p26454-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.0_rc2_p26454.ebuild,v 1.1 2008/04/16 15:27:08 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/mplayer/mplayer-1.0_rc2_p26454-r1.ebuild,v 1.1 2008/04/16 20:02:24 beandog Exp $ EAPI="1" @@ -178,6 +178,9 @@ src_unpack() { cd "${S}" + #bug 217769 + epatch "${FILESDIR}/mplayer-1.0_rc2_p26454-makefile.patch" + # Fix hppa compilation use hppa && sed -i -e "s/-O4/-O1/" "${S}/configure" |