diff options
author | Dan Armak <danarmak@gentoo.org> | 2003-01-10 08:38:45 +0000 |
---|---|---|
committer | Dan Armak <danarmak@gentoo.org> | 2003-01-10 08:38:45 +0000 |
commit | 5d4e7c81c0ef7d35e266248491c31ae15dd257a9 (patch) | |
tree | ffe84f7e698409c6c19e629b36cacd9e72cdc17e /app-office/lyx | |
parent | blender 2.26 as of 01/09 hot off the presses. (diff) | |
download | gentoo-2-5d4e7c81c0ef7d35e266248491c31ae15dd257a9.tar.gz gentoo-2-5d4e7c81c0ef7d35e266248491c31ae15dd257a9.tar.bz2 gentoo-2-5d4e7c81c0ef7d35e266248491c31ae15dd257a9.zip |
a new bugfix release from upstream. on ~ profiles
Diffstat (limited to 'app-office/lyx')
-rw-r--r-- | app-office/lyx/ChangeLog | 8 | ||||
-rw-r--r-- | app-office/lyx/files/digest-lyx-1.2.3 | 1 | ||||
-rw-r--r-- | app-office/lyx/lyx-1.2.3.ebuild | 63 |
3 files changed, 71 insertions, 1 deletions
diff --git a/app-office/lyx/ChangeLog b/app-office/lyx/ChangeLog index 13d9d3086336..e22a1678df1a 100644 --- a/app-office/lyx/ChangeLog +++ b/app-office/lyx/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-office/lyx # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/ChangeLog,v 1.11 2003/01/01 19:43:27 danarmak Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/ChangeLog,v 1.12 2003/01/10 08:38:45 danarmak Exp $ + +*lyx-1.2.3 (10 Jan 2003) + + 10 Jan 2003; Dan Armak <danarmak@gentoo.org> ChangeLog : + + Another bugfix release from upstream. *lyx-1.2.2 (01 Jan 2003) diff --git a/app-office/lyx/files/digest-lyx-1.2.3 b/app-office/lyx/files/digest-lyx-1.2.3 new file mode 100644 index 000000000000..94b0e9c295d6 --- /dev/null +++ b/app-office/lyx/files/digest-lyx-1.2.3 @@ -0,0 +1 @@ +MD5 3a423e65f647bd0a8f9401dd43e5d912 lyx-1.2.3.tar.gz 6579440 diff --git a/app-office/lyx/lyx-1.2.3.ebuild b/app-office/lyx/lyx-1.2.3.ebuild new file mode 100644 index 000000000000..51274c04fee7 --- /dev/null +++ b/app-office/lyx/lyx-1.2.3.ebuild @@ -0,0 +1,63 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-1.2.3.ebuild,v 1.1 2003/01/10 08:38:45 danarmak Exp $ + +DESCRIPTION="LyX is an WYSIWYM frontend for LaTeX" +SRC_URI="ftp://ftp.lyx.org/pub/lyx/stable/${P}.tar.gz" +HOMEPAGE="http://www.lyx.org/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc" +IUSE="nls cups" + +# This lyx-base ebuild only depends on the absolutely necessary packages. +# The acompanying lyx-utils ebuild depends on lyx-base and on everything +# else that lyx can use. +DEPEND="virtual/x11 + =x11-libs/xforms-1* + app-text/tetex + >=sys-devel/perl-5 + nls? ( sys-devel/gettext ) + app-text/aiksaurus" + +RDEPEND="${DEPEND} + app-text/ghostscript + app-text/xpdf + app-text/aspell + app-text/gv + app-text/latex2html + media-gfx/imagemagick + cups? ( virtual/lpr ) + app-text/rcs + dev-util/cvs + app-text/sgmltools-lite + app-text/noweb + app-text/chktex" + +src_compile() { + use nls || myconf="${myconf} --disable-nls" + [ -n "$DEBUG" ] && myconf="$myconf --enable-debug" || myconf="$myconf --disable-debug" + + # -O3 and higher breaks + export CXXFLAGS="${CXXFLAGS//-O[3..9]/-O2}" + export CFLAGS="${CFLAGS//-O[3..9]/-O2}" + + export WANT_AUTOCONF_2_5=1 + + #./autogen.sh + + econf ${myconf} + #--infodir='$(prefix)/share/info' \ + #--with-extra-inc=/usr/X11R6/include \ + #--mandir='$(prefix)/share/man' \ + emake || die "emake failed" +} + +src_install() { + # The 'install-strip' target is provided by the LyX makefile + # for stripping installed binaries. Use prefix= instead of + # DESTDIR=, otherwise it violates the sandbox in the po directory. + einstall + dodoc README* UPGRADING INSTALL* ChangeLog NEW COPYING ANNOUNCE ABOUT-NLS +} |