diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2002-11-22 17:22:28 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2002-11-22 17:22:28 +0000 |
commit | 0ceaac70ad16b96db4bfd9b5fa86d216f4a5c391 (patch) | |
tree | d6c5533af2493ccc9ed2bc0b7ba6f78442f1bd4a /app-editors/emacs-cvs | |
parent | Modified note for perl 5.8 (diff) | |
download | gentoo-2-0ceaac70ad16b96db4bfd9b5fa86d216f4a5c391.tar.gz gentoo-2-0ceaac70ad16b96db4bfd9b5fa86d216f4a5c391.tar.bz2 gentoo-2-0ceaac70ad16b96db4bfd9b5fa86d216f4a5c391.zip |
initial import
Diffstat (limited to 'app-editors/emacs-cvs')
-rw-r--r-- | app-editors/emacs-cvs/ChangeLog | 10 | ||||
-rw-r--r-- | app-editors/emacs-cvs/emacs-cvs-21.3.50.ebuild | 76 | ||||
-rw-r--r-- | app-editors/emacs-cvs/files/digest-emacs-cvs-21.3.50 | 0 |
3 files changed, 86 insertions, 0 deletions
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 <mkennedy@gentoo.org> 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 --- /dev/null +++ b/app-editors/emacs-cvs/files/digest-emacs-cvs-21.3.50 |