summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Armak <danarmak@gentoo.org>2003-01-13 19:39:57 +0000
committerDan Armak <danarmak@gentoo.org>2003-01-13 19:39:57 +0000
commit9e1eb432dc2bcefca2a758a593f6735deec7b860 (patch)
tree1a0e08e8fedaac0b15b4a1cea44e7beb5a362dc7 /app-office/lyx
parentmark 1.2.3 as stable on x86. reason: 1.2.3 fixes important bugs in 1.2.2, so ... (diff)
downloadgentoo-2-9e1eb432dc2bcefca2a758a593f6735deec7b860.tar.gz
gentoo-2-9e1eb432dc2bcefca2a758a593f6735deec7b860.tar.bz2
gentoo-2-9e1eb432dc2bcefca2a758a593f6735deec7b860.zip
remove the 1.2.2 ebuild since we ahve 1.2.3 now
Diffstat (limited to 'app-office/lyx')
-rw-r--r--app-office/lyx/files/digest-lyx-1.2.21
-rw-r--r--app-office/lyx/lyx-1.2.2.ebuild63
2 files changed, 0 insertions, 64 deletions
diff --git a/app-office/lyx/files/digest-lyx-1.2.2 b/app-office/lyx/files/digest-lyx-1.2.2
deleted file mode 100644
index c44276f12eee..000000000000
--- a/app-office/lyx/files/digest-lyx-1.2.2
+++ /dev/null
@@ -1 +0,0 @@
-MD5 62d3c0337e133b11da8170f55be0860d lyx-1.2.2.tar.gz 6592325
diff --git a/app-office/lyx/lyx-1.2.2.ebuild b/app-office/lyx/lyx-1.2.2.ebuild
deleted file mode 100644
index a8c5f96152a6..000000000000
--- a/app-office/lyx/lyx-1.2.2.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# 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.2.ebuild,v 1.2 2003/01/06 15:25:34 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
-}