diff options
author | Mike Gardiner <obz@gentoo.org> | 2003-10-09 13:06:02 +0000 |
---|---|---|
committer | Mike Gardiner <obz@gentoo.org> | 2003-10-09 13:06:02 +0000 |
commit | 0744c8a708859c35400d2c50c9f42251b280f593 (patch) | |
tree | 46bf34243bf06f87cc95de60533014f7434af3f0 /app-office/lyx | |
parent | Added latex-xft-fonts to lyx (diff) | |
download | historical-0744c8a708859c35400d2c50c9f42251b280f593.tar.gz historical-0744c8a708859c35400d2c50c9f42251b280f593.tar.bz2 historical-0744c8a708859c35400d2c50c9f42251b280f593.zip |
Added latex-xft-fonts to lyx
Diffstat (limited to 'app-office/lyx')
-rw-r--r-- | app-office/lyx/Manifest | 4 | ||||
-rw-r--r-- | app-office/lyx/files/digest-lyx-1.3.3 | 1 | ||||
-rw-r--r-- | app-office/lyx/lyx-1.3.3.ebuild | 29 |
3 files changed, 15 insertions, 19 deletions
diff --git a/app-office/lyx/Manifest b/app-office/lyx/Manifest index 9e93f83a1276..115a2b7b960c 100644 --- a/app-office/lyx/Manifest +++ b/app-office/lyx/Manifest @@ -1,8 +1,8 @@ MD5 b8df116b4f3ee5f625cc07c3bd695635 lyx-1.3.2.ebuild 2799 MD5 0dc965c019b1fe6239c7a0ad516a6e36 lyx-1.2.1.ebuild 1563 -MD5 cc26a5689b0850060cb7f71a00e83ed8 lyx-1.3.3.ebuild 2703 +MD5 500a9d63fdf9c33c4282a15cc24cf24e lyx-1.3.3.ebuild 2703 MD5 d24d0a4ea23a9b47098f597af3e0e05e lyx-1.3.2-r1.ebuild 3515 -MD5 42f94361b25bcea880f803b0bb524947 ChangeLog 6084 +MD5 e9d2b74bfc08e598f4ae6e9784efa759 ChangeLog 6255 MD5 c472f5fd1646eb8bca71d8df5cb2bdcc metadata.xml 164 MD5 4dc1e1cc2b4e056a629fbfd1334c390e files/lyx.desktop 188 MD5 363bfca924cf46b61d21faa4dbfcd43f files/lyx-1.3.3-configure-diff 1953 diff --git a/app-office/lyx/files/digest-lyx-1.3.3 b/app-office/lyx/files/digest-lyx-1.3.3 index b692c1fd4fc5..7410d416903a 100644 --- a/app-office/lyx/files/digest-lyx-1.3.3 +++ b/app-office/lyx/files/digest-lyx-1.3.3 @@ -1,3 +1,4 @@ MD5 0f22124b000feb3c471096a1031d3722 lyx-1.3.3.tar.bz2 5524439 +MD5 0f3275e403be5fdbd14117dd8a26675f latex-xft-fonts-0.1.tar.gz 91730 MD5 f1df2f1426cca24c0dafa1dc1a832e6a hebrew.bind 45 MD5 a0e3948595801a90d32d8b712596a5fe preferences 1669 diff --git a/app-office/lyx/lyx-1.3.3.ebuild b/app-office/lyx/lyx-1.3.3.ebuild index d86e5b4730a6..ec40ab3e1daf 100644 --- a/app-office/lyx/lyx-1.3.3.ebuild +++ b/app-office/lyx/lyx-1.3.3.ebuild @@ -1,11 +1,12 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-1.3.3.ebuild,v 1.2 2003/10/08 08:25:50 obz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-1.3.3.ebuild,v 1.3 2003/10/09 13:05:45 obz Exp $ DESCRIPTION="WYSIWYM frontend for LaTeX" HOMEPAGE="http://www.lyx.org/" SRC_URI="ftp://ftp.lyx.org/pub/lyx/stable/${P}.tar.bz2 + http://movementarian.org/latex-xft-fonts-0.1.tar.gz http://www.math.tau.ac.il/~dekelts/lyx/files/hebrew.bind http://www.math.tau.ac.il/~dekelts/lyx/files/preferences" LICENSE="GPL-2" @@ -84,25 +85,19 @@ src_install() { doins ${FILESDIR}/lyx.desktop fi + # install the latex-xft fonts, which should fix + # the problems outlined in bug #15629 + # <obz@gentoo.org> + cd ${WORKDIR}/latex-xft-fonts-0.1 + make DESTDIR=${D} install || die "Font installation failed" + } pkg_postinst() { - if [ `use qt` ] ; then - einfo "WARNING: the QT gui, together with xft2+fontconfig (which you" - einfo "almost certainly have), suffer from one infamous bug that causes" - einfo "the matheditor not to display any special characters (the ones from" - einfo "the Computer Modern font family). Generated documents (.dvi, .ps...)" - einfo "are ok, since tex has right fonts from the bluesky package." - einfo "A proper solution was being worked on. Meanwhile you can install the" - einfo "BaKoMa fonts package; however they are not licensed for redistribution" - einfo "(not even embedded inside generated documents) and cannot be used in" - einfo "commercial environments (without a special agreement from the author)." - einfo "If that suits you, you can get them on CTAN or at ftp.lyx.org as" - einfo "latex-ttf-fonts-0.1.tar.gz. I was working on an alternative, free" - einfo "fonts package derived from bluesky, but got stuck; wuold be glad" - einfo "to see someone continuing the effort (see the relevant threads on the" - einfo "lyx-devel mailing list or mail me if you want to know more)." - fi + + einfo "Updating the font cache" + fc-cache -f --system-only + einfo "" einfo "================" einfo "" |