diff options
author | 2007-10-17 13:05:27 +0000 | |
---|---|---|
committer | 2007-10-17 13:05:27 +0000 | |
commit | 2369cf5e031dcf4b831a151f25825c4a16f4be72 (patch) | |
tree | a5c5576fe29e9c4418584c1b950a1b2491cbdd5d /gnustep-libs | |
parent | Version bump. (diff) | |
download | gentoo-2-2369cf5e031dcf4b831a151f25825c4a16f4be72.tar.gz gentoo-2-2369cf5e031dcf4b831a151f25825c4a16f4be72.tar.bz2 gentoo-2-2369cf5e031dcf4b831a151f25825c4a16f4be72.zip |
Fix documentation installation
(Portage version: 2.1.3.14)
Diffstat (limited to 'gnustep-libs')
3 files changed, 35 insertions, 2 deletions
diff --git a/gnustep-libs/renaissance/ChangeLog b/gnustep-libs/renaissance/ChangeLog index 5e65c6b0201c..984cbec94a4c 100644 --- a/gnustep-libs/renaissance/ChangeLog +++ b/gnustep-libs/renaissance/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnustep-libs/renaissance # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/renaissance/ChangeLog,v 1.13 2007/09/11 11:40:05 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/renaissance/ChangeLog,v 1.14 2007/10/17 13:05:26 voyageur Exp $ + + 17 Oct 2007; Bernard Cafarelli <voyageur@gentoo.org> + +files/renaissance-0.8.1_pre20070522-docpath.patch, + renaissance-0.8.1_pre20070522.ebuild: + Fix documentation installation *renaissance-0.8.1_pre20070522 (11 Sep 2007) diff --git a/gnustep-libs/renaissance/files/renaissance-0.8.1_pre20070522-docpath.patch b/gnustep-libs/renaissance/files/renaissance-0.8.1_pre20070522-docpath.patch new file mode 100644 index 000000000000..df4f8c43ca1e --- /dev/null +++ b/gnustep-libs/renaissance/files/renaissance-0.8.1_pre20070522-docpath.patch @@ -0,0 +1,21 @@ +diff -Naur renaissance-0.8.1_pre20070522.orig/Documentation/GNUmakefile renaissance-0.8.1_pre20070522/Documentation/GNUmakefile +--- renaissance-0.8.1_pre20070522.orig/Documentation/GNUmakefile 2007-10-17 14:32:41.000000000 +0200 ++++ renaissance-0.8.1_pre20070522/Documentation/GNUmakefile 2007-10-17 14:33:18.000000000 +0200 +@@ -8,6 +8,7 @@ + macros.tex \ + autolayout.tex \ + gsmarkup.tex ++manual_DOC_INSTALL_DIR = Developer/Renaissance + + SUBPROJECTS = Tutorials + +diff -Naur renaissance-0.8.1_pre20070522.orig/Documentation/Tutorials/Renaissance/GNUmakefile renaissance-0.8.1_pre20070522/Documentation/Tutorials/Renaissance/GNUmakefile +--- renaissance-0.8.1_pre20070522.orig/Documentation/Tutorials/Renaissance/GNUmakefile 2007-10-17 14:32:41.000000000 +0200 ++++ renaissance-0.8.1_pre20070522/Documentation/Tutorials/Renaissance/GNUmakefile 2007-10-17 14:33:07.000000000 +0200 +@@ -3,5 +3,6 @@ + DOCUMENT_NAME = Renaissance + + Renaissance_LATEX_FILES = Renaissance.tex ++Renaissance_DOC_INSTALL_DIR = Developer/Renaissance + + include $(GNUSTEP_MAKEFILES)/documentation.make diff --git a/gnustep-libs/renaissance/renaissance-0.8.1_pre20070522.ebuild b/gnustep-libs/renaissance/renaissance-0.8.1_pre20070522.ebuild index 412eaff27b4f..7d681deac7ce 100644 --- a/gnustep-libs/renaissance/renaissance-0.8.1_pre20070522.ebuild +++ b/gnustep-libs/renaissance/renaissance-0.8.1_pre20070522.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/renaissance/renaissance-0.8.1_pre20070522.ebuild,v 1.2 2007/09/11 16:24:30 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnustep-libs/renaissance/renaissance-0.8.1_pre20070522.ebuild,v 1.3 2007/10/17 13:05:26 voyageur Exp $ inherit gnustep-2 @@ -11,3 +11,10 @@ SRC_URI="mirror://gentoo/${P}.tar.bz2" KEYWORDS="~amd64 ~ppc ~x86" LICENSE="LGPL-2.1" SLOT="0" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${P}-docpath.patch +} |