diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-01-19 01:53:18 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-01-19 01:53:18 +0000 |
commit | 8babbb1f473b697aa0ba3f6bbaef7218f7bfe90a (patch) | |
tree | 3c3517aa2ca4ec9c867d11dd85bdf9db8a98e600 /app-text | |
parent | Big commit cause avifile.0.7.25 breaks all transcode packages (diff) | |
download | gentoo-2-8babbb1f473b697aa0ba3f6bbaef7218f7bfe90a.tar.gz gentoo-2-8babbb1f473b697aa0ba3f6bbaef7218f7bfe90a.tar.bz2 gentoo-2-8babbb1f473b697aa0ba3f6bbaef7218f7bfe90a.zip |
Fix bug 13789 again
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/tetex/ChangeLog | 6 | ||||
-rw-r--r-- | app-text/tetex/tetex-1.0.7-r12.ebuild | 11 |
2 files changed, 14 insertions, 3 deletions
diff --git a/app-text/tetex/ChangeLog b/app-text/tetex/ChangeLog index b21968cbbade..909660866ffd 100644 --- a/app-text/tetex/ChangeLog +++ b/app-text/tetex/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-text/tetex # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/tetex/ChangeLog,v 1.24 2003/01/18 17:06:09 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/tetex/ChangeLog,v 1.25 2003/01/19 01:53:18 agriffis Exp $ + + 18 Jan 2003; Aron Griffis <agriffis@gentoo.org> tetex-1.0.7-r12.ebuild : + Fix bug 13789 again, this time by taking Felix's suggestion. Thought I had + it fixed the first time, this time I'm even more thinkful. 18 Jan 2003; Aron Griffis <agriffis@gentoo.org> tetex-1.0.7-r12.ebuild : Fix bug 13789 by pulling in a couple hints from the RH rpm, specifically the diff --git a/app-text/tetex/tetex-1.0.7-r12.ebuild b/app-text/tetex/tetex-1.0.7-r12.ebuild index b1743068a4e3..43772cdae117 100644 --- a/app-text/tetex/tetex-1.0.7-r12.ebuild +++ b/app-text/tetex/tetex-1.0.7-r12.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/tetex/tetex-1.0.7-r12.ebuild,v 1.1 2003/01/18 19:44:26 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/tetex/tetex-1.0.7-r12.ebuild,v 1.2 2003/01/19 01:53:18 agriffis Exp $ inherit flag-o-matic @@ -110,7 +110,8 @@ src_compile() { --with-etex \ ${myconf} || die "econf failed" - emake + # emake seems to not work (18 Jan 2003 agriffis) + make } src_install() { @@ -172,6 +173,12 @@ pkg_postinst() { texconfig init &>/dev/null texconfig confall &>/dev/null texconfig font vardir /var/cache/fonts &>/dev/null + + # Fix bug 13789; this should really be done by texconfig init + # but oh well, it will probably be fixed by 2.0, right? ;-) + # (18 Jan 2003 agriffis) + ( cd /var/lib/texmf/web2c; inimf mf; ) &>/dev/null + einfo "Generating format files..." fmtutil --missing &>/dev/null # This should generate all missing fmt files. |