diff options
author | Ulrich Müller <ulm@gentoo.org> | 2012-10-11 16:31:17 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2012-10-11 16:31:17 +0000 |
commit | 9f2c2c65d741ee96c3a35d6f0e704d677bdbe0ad (patch) | |
tree | 4572295ead604bd57fd7b6b90f5f42d832f0a5aa /app-emacs/yatex | |
parent | Specify LICENSE more precisely. (diff) | |
download | gentoo-2-9f2c2c65d741ee96c3a35d6f0e704d677bdbe0ad.tar.gz gentoo-2-9f2c2c65d741ee96c3a35d6f0e704d677bdbe0ad.tar.bz2 gentoo-2-9f2c2c65d741ee96c3a35d6f0e704d677bdbe0ad.zip |
Fix installation of GNU Info files, bug 437612.
(Portage version: 2.1.11.26/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs/yatex')
-rw-r--r-- | app-emacs/yatex/ChangeLog | 5 | ||||
-rw-r--r-- | app-emacs/yatex/yatex-1.76.ebuild | 22 |
2 files changed, 10 insertions, 17 deletions
diff --git a/app-emacs/yatex/ChangeLog b/app-emacs/yatex/ChangeLog index 3d463bb071ab..652aeee15d9b 100644 --- a/app-emacs/yatex/ChangeLog +++ b/app-emacs/yatex/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/yatex # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/yatex/ChangeLog,v 1.34 2012/10/11 15:39:20 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/yatex/ChangeLog,v 1.35 2012/10/11 16:31:17 ulm Exp $ + + 11 Oct 2012; Ulrich Müller <ulm@gentoo.org> yatex-1.76.ebuild: + Fix installation of GNU Info files, bug 437612. 11 Oct 2012; Chema Alonso <nimiux@gentoo.org> yatex-1.76.ebuild: Missed the blocker bug (#437612) marking unstable for amd64 diff --git a/app-emacs/yatex/yatex-1.76.ebuild b/app-emacs/yatex/yatex-1.76.ebuild index 8d5e6a185ec5..9e8403e5c1c5 100644 --- a/app-emacs/yatex/yatex-1.76.ebuild +++ b/app-emacs/yatex/yatex-1.76.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/yatex/yatex-1.76.ebuild,v 1.7 2012/10/11 15:39:20 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/yatex/yatex-1.76.ebuild,v 1.8 2012/10/11 16:31:17 ulm Exp $ EAPI=4 @@ -15,24 +15,14 @@ SLOT="0" LICENSE="YaTeX" IUSE="linguas_ja" -S=${WORKDIR}/${P/-/} +S="${WORKDIR}/${P/-/}" +ELISP_PATCHES="${PN}-1.76-gentoo.patch" SITEFILE="50${PN}-gentoo.el" -src_prepare() { - epatch "${FILESDIR}/${PN}-1.76-gentoo.patch" -} - src_compile() { # byte-compilation fails (as of 1.74): yatexlib.el requires fonts # that are only available under X - - cd docs - cp yatexe yatex.info || die - cp yahtmle yahtml.info || die - if use linguas_ja; then - iconv -f ISO-2022-JP -t EUC-JP yatexj > yatex-ja.info || die - iconv -f ISO-2022-JP -t EUC-JP yahtmlj > yahtml-ja.info || die - fi + : } src_install() { @@ -41,12 +31,12 @@ src_install() { insinto ${SITEETC}/${PN} doins help/YATEXHLP.eng - - doinfo docs/*.info + doinfo docs/yatexe docs/yahtmle dodoc docs/*.eng if use linguas_ja; then doins help/YATEXHLP.jp + doinfo docs/yatexj docs/yahtmlj dodoc 00readme install docs/{htmlqa,qanda} docs/*.doc fi } |