From a44d1d2aafa486cfd370a8634a8c72eca679d6cb Mon Sep 17 00:00:00 2001 From: Matthew Kennedy Date: Fri, 22 Nov 2002 17:22:28 +0000 Subject: initial import --- app-editors/emacs-cvs/ChangeLog | 10 +++ app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild | 76 ++++++++++++++++++++++ .../emacs-cvs/files/digest-emacs-cvs-21.3.50 | 0 3 files changed, 86 insertions(+) create mode 100644 app-editors/emacs-cvs/ChangeLog create mode 100644 app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild create mode 100644 app-editors/emacs-cvs/files/digest-emacs-cvs-21.3.50 (limited to 'app-editors/emacs-cvs') diff --git a/app-editors/emacs-cvs/ChangeLog b/app-editors/emacs-cvs/ChangeLog new file mode 100644 index 000000000000..219225eea6bd --- /dev/null +++ b/app-editors/emacs-cvs/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-editors/emacs-cvs +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/ChangeLog,v 1.1 2002/11/22 17:22:28 mkennedy Exp $ + +*emacs-cvs-21.3.50 (22 Nov 2002) + + 22 Nov 2002; Matthew Kennedy ChangeLog, + emacs-cvs-21.3.50.ebuild, files/digest-emacs-cvs-21.3.50 : + + Initial import. diff --git a/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild b/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild new file mode 100644 index 000000000000..9bf16aac5908 --- /dev/null +++ b/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild,v 1.1 2002/11/22 17:22:28 mkennedy Exp $ + +ECVS_SERVER="subversions.gnu.org:/cvsroot/emacs" +ECVS_MODULE="emacs" +ECVS_USER="anoncvs" +ECVS_CVS_OPTIONS="-dP" + +inherit cvs + +# leim integrated with emacs now +IUSE="X nls" + +S=${WORKDIR}/${ECVS_MODULE} +DESCRIPTION="An incredibly powerful, extensible text editor (latest CVS)" +SRC_URI="" +HOMEPAGE="http://www.gnu.org/software/emacs" + +# Never use the sandbox, it causes Emacs to segfault on startup +SANDBOX_DISABLED="1" + +DEPEND=">=sys-libs/ncurses-5.3 + sys-libs/gdbm + X? ( virtual/x11 + >=media-libs/libungif-4.1.0 + >=media-libs/jpeg-6b + >=media-libs/tiff-3.5.7 + >=media-libs/libpng-1.2.5 + >=x11-libs/Xaw3d-1.5-r1 ) + nls? ( >=sys-devel/gettext-0.11.5 )" +RDEPEND="" + +PROVIDE="virtual/emacs" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~ppc ~sparc ~sparc64" + +src_compile() { + local myconf + + use nls || myconf="${myconf} --disable-nls" + + use X && myconf="${myconf} + --with-x + --with-xpm + --with-jpeg + --with-tiff + --with-gif + --with-png + --with-toolkit-scroll-bars + --with-x-toolkit=athena" \ + || myconf="${myconf} --without-x" + + myconf="${myconf} --with-toolkit-scroll-bars --with-x-toolkit=athena" + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --libexecdir=/usr/lib \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + ${myconf} || die + + make bootstrap || die +} + +src_install () { + make prefix=${D}/usr \ + libexecdir=${D}/usr/lib \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + install || die + + dodoc BUGS ChangeLog README +} diff --git a/app-editors/emacs-cvs/files/digest-emacs-cvs-21.3.50 b/app-editors/emacs-cvs/files/digest-emacs-cvs-21.3.50 new file mode 100644 index 000000000000..e69de29bb2d1 -- cgit v1.2.3-65-gdbad