summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2002-09-05 16:16:03 +0000
committerDaniel Robbins <drobbins@gentoo.org>2002-09-05 16:16:03 +0000
commit3a6e76021db6db94efd00cc2e4f84359732912bc (patch)
tree2a1a564b632caff7ea9a34a9c090f4942cd74ad7 /app-office/lyx
parentAdded callback functionality to -r11 (diff)
downloadgentoo-2-3a6e76021db6db94efd00cc2e4f84359732912bc.tar.gz
gentoo-2-3a6e76021db6db94efd00cc2e4f84359732912bc.tar.bz2
gentoo-2-3a6e76021db6db94efd00cc2e4f84359732912bc.zip
repoman fixes (mostly cleanups of old ebuilds with pspell stuff in them)
and linphone relocation to net-im.
Diffstat (limited to 'app-office/lyx')
-rw-r--r--app-office/lyx/files/digest-lyx-1.2.01
-rw-r--r--app-office/lyx/lyx-1.2.0.ebuild64
2 files changed, 0 insertions, 65 deletions
diff --git a/app-office/lyx/files/digest-lyx-1.2.0 b/app-office/lyx/files/digest-lyx-1.2.0
deleted file mode 100644
index 1f91ab1787f7..000000000000
--- a/app-office/lyx/files/digest-lyx-1.2.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 cc7592d311f3dfd2db01f9ca5e506fb6 lyx-1.2.0.tar.gz 6418424
diff --git a/app-office/lyx/lyx-1.2.0.ebuild b/app-office/lyx/lyx-1.2.0.ebuild
deleted file mode 100644
index d019eccce3bc..000000000000
--- a/app-office/lyx/lyx-1.2.0.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# $Header: /var/cvsroot/gentoo-x86/app-office/lyx/lyx-1.2.0.ebuild,v 1.6 2002/08/06 17:44:43 gerk Exp $
-
-S=${WORKDIR}/${P}
-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"
-
-# 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
- virtual/xforms
- app-text/tetex
- >=sys-devel/perl-5
- nls? ( sys-devel/gettext )
- app-text/aiksaurus"
-
-RDEPEND="${DEPEND}
- app-text/ghostscript
- app-text/xpdf
- app-text/ispell
- 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 (at least with gcc 2)
- export CXXFLAGS="${CXXFLAGS//-O[3..9]/-O2}"
- export CFLAGS="${CFLAGS//-O[3..9]/-O2}"
-
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir='$(prefix)/share/info' \
- --with-extra-inc=/usr/X11R6/include \
- --mandir='$(prefix)/share/man' \
- ${myconf} || die "./configure failed"
- 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.
- make prefix=${D}/usr install
- dodoc README* UPGRADING INSTALL* ChangeLog NEW COPYING ANNOUNCE ABOUT-NLS
-}
-