diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-01-26 00:00:09 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-01-26 00:00:09 +0000 |
commit | fbbc14657dc5803757e0f70b0c5601f567b62adf (patch) | |
tree | 907531c572a7f39888dd4076aa4b97443493b86c /app-office | |
parent | dont use old WANT_AUTOCONF #35111 (diff) | |
download | historical-fbbc14657dc5803757e0f70b0c5601f567b62adf.tar.gz historical-fbbc14657dc5803757e0f70b0c5601f567b62adf.tar.bz2 historical-fbbc14657dc5803757e0f70b0c5601f567b62adf.zip |
old
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/lyx/files/digest-lyx-1.3.2 | 1 | ||||
-rw-r--r-- | app-office/lyx/lyx-1.3.2.ebuild | 100 |
2 files changed, 0 insertions, 101 deletions
diff --git a/app-office/lyx/files/digest-lyx-1.3.2 b/app-office/lyx/files/digest-lyx-1.3.2 deleted file mode 100644 index a0327ef09b31..000000000000 --- a/app-office/lyx/files/digest-lyx-1.3.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 e33cf84f7c5be4ab9bbcc6ea587d4fdc lyx-1.3.2.tar.bz2 5469070 diff --git a/app-office/lyx/lyx-1.3.2.ebuild b/app-office/lyx/lyx-1.3.2.ebuild deleted file mode 100644 index b1b4524ed0f7..000000000000 --- a/app-office/lyx/lyx-1.3.2.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# 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.2.ebuild,v 1.13 2003/12/31 04:05:53 obz Exp $ - -DESCRIPTION="WYSIWYM frontend for LaTeX" -HOMEPAGE="http://www.lyx.org/" -SRC_URI="ftp://ftp.lyx.org/pub/lyx/stable/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 ~ppc " -IUSE="nls cups qt debug gnome" - -DEPEND="virtual/x11 - virtual/tetex - >=dev-lang/perl-5 - nls? ( sys-devel/gettext ) - app-text/aiksaurus - qt? ( >=x11-libs/qt-3 ) !qt? ( =x11-libs/xforms-1* )" -RDEPEND="${DEPEND} - virtual/ghostscript - app-text/xpdf - virtual/aspell-dict - app-text/gv - dev-tex/latex2html - media-gfx/imagemagick - cups? ( virtual/lpr ) - app-text/rcs - dev-util/cvs - app-text/sgmltools-lite - app-text/noweb - dev-tex/chktex" - -src_unpack() { - - unpack ${A} - cd ${S} - epatch ${FILESDIR}/${P}-nomktex.patch - -} - -src_compile() { - local myconf="" - if [ `use qt` ]; then - inherit kde-functions - set-qtdir 3 - myconf="$myconf --with-frontend=qt --with-qt-dir=${QTDIR}" - else - myconf="$myconf --with-frontend=xforms" - fi - - export WANT_AUTOCONF_2_5=1 - - # Aiksaurus.h fix, see bug #27648, by brandy. - # <obz@gentoo.org> - einfo "Checking for local Aiksaurus.h" - [ -d /usr/include/Aiksaurus ] \ - && myconf="${myconf} --with-extra-inc=/usr/include/Aiksaurus" - - local flags="${CFLAGS}" - unset CFLAGS - unset CXXFLAGS - econf \ - `use_enable nls` \ - `use_enable debug` \ - ${myconf} \ - --enable-optimization="$flags" \ - || die - emake || die "emake failed" -} - -src_install() { - einstall - dodoc README* UPGRADING INSTALL* ChangeLog NEWS COPYING ANNOUNCE - - # gnome menu entry - if use gnome; then - insinto /usr/share/applications - doins ${FILESDIR}/lyx.desktop - fi - -} - -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 is 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 am working on an alternative, free" - einfo "fonts package derived from bluesky (see the recent threads on the" - einfo "lyx-devel mailing list about this if you want to know more)." - fi -} |