diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-06-02 14:08:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-06-02 14:08:48 +0000 |
commit | e09c97fd5e35c9685a69aca43bbfcab208a9154c (patch) | |
tree | 6be3a64fbba6b56c29be58e25443d4ce73d0adf0 /app-editors | |
parent | Work around configure error interpreting --disable-debug (bug #512168 by no-p... (diff) | |
download | gentoo-2-e09c97fd5e35c9685a69aca43bbfcab208a9154c.tar.gz gentoo-2-e09c97fd5e35c9685a69aca43bbfcab208a9154c.tar.bz2 gentoo-2-e09c97fd5e35c9685a69aca43bbfcab208a9154c.zip |
Fix deletion of extraneous html pages #512142 by Justin Lecher.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/nano/ChangeLog | 5 | ||||
-rw-r--r-- | app-editors/nano/nano-2.3.3.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/app-editors/nano/ChangeLog b/app-editors/nano/ChangeLog index 6f4bbc9929cb..10551bcfb677 100644 --- a/app-editors/nano/ChangeLog +++ b/app-editors/nano/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/nano # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.307 2014/05/30 14:29:23 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/ChangeLog,v 1.308 2014/06/02 14:08:48 vapier Exp $ + + 02 Jun 2014; Mike Frysinger <vapier@gentoo.org> nano-2.3.3.ebuild: + Fix deletion of extraneous html pages #512142 by Justin Lecher. *nano-2.3.3 (30 May 2014) diff --git a/app-editors/nano/nano-2.3.3.ebuild b/app-editors/nano/nano-2.3.3.ebuild index 5bd1bf70f7ce..9ed28a2f71d0 100644 --- a/app-editors/nano/nano-2.3.3.ebuild +++ b/app-editors/nano/nano-2.3.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.3.ebuild,v 1.1 2014/05/30 14:29:23 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/nano/nano-2.3.3.ebuild,v 1.2 2014/06/02 14:08:48 vapier Exp $ EAPI="4" @@ -41,6 +41,7 @@ src_configure() { esac econf \ --bindir="${EPREFIX}"/bin \ + --htmldir=/trash \ $(use_enable !minimal color) \ $(use_enable !minimal multibuffer) \ $(use_enable !minimal nanorc) \ @@ -57,7 +58,7 @@ src_configure() { src_install() { default - rm -rf "${ED}"/usr/share/nano/man-html + rm -rf "${ED}"/trash dodoc doc/nanorc.sample dohtml doc/faq.html |