diff options
author | Prakash Shetty <crux@gentoo.org> | 2001-07-04 11:09:44 +0000 |
---|---|---|
committer | Prakash Shetty <crux@gentoo.org> | 2001-07-04 11:09:44 +0000 |
commit | 5aa231beeb684ed5d67d6a6eb58292c9abde8fba (patch) | |
tree | 16f56f6c1f648278f3802d42e04a6d3df75294c6 /app-editors/xemacs | |
parent | Modified to add pure-ftpd-0.98.7-r1 so that it does not break the post-instal... (diff) | |
download | historical-5aa231beeb684ed5d67d6a6eb58292c9abde8fba.tar.gz historical-5aa231beeb684ed5d67d6a6eb58292c9abde8fba.tar.bz2 historical-5aa231beeb684ed5d67d6a6eb58292c9abde8fba.zip |
xemacs ebuild made by Joerg Krause <joerg@paula.kantapper.de>
Diffstat (limited to 'app-editors/xemacs')
-rw-r--r-- | app-editors/xemacs/files/digest-xemacs-21.1.14 | 3 | ||||
-rw-r--r-- | app-editors/xemacs/xemacs-21.1.14.ebuild | 49 |
2 files changed, 52 insertions, 0 deletions
diff --git a/app-editors/xemacs/files/digest-xemacs-21.1.14 b/app-editors/xemacs/files/digest-xemacs-21.1.14 new file mode 100644 index 000000000000..3b5ce74809e8 --- /dev/null +++ b/app-editors/xemacs/files/digest-xemacs-21.1.14 @@ -0,0 +1,3 @@ +MD5 bde42cd7cd02fd4f385baa66adfa0128 efs-1.22-pkg.tar.gz +MD5 a1aa60c98319c60720f23dc1a9d1deaa xemacs-21.1.14.tar.bz2 +MD5 33c9beb6ad4142e5926a00bef8fe54ea xemacs-base-1.53-pkg.tar.gz diff --git a/app-editors/xemacs/xemacs-21.1.14.ebuild b/app-editors/xemacs/xemacs-21.1.14.ebuild new file mode 100644 index 000000000000..dafd58d17552 --- /dev/null +++ b/app-editors/xemacs/xemacs-21.1.14.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# /home/cvsroot/gentoo-x86/app-editors/gtk-xemacs/gtk-xemacs-21.1.12_p3.ebuild,v 1.3 2000/10/29 20:36:58 achim Exp + +#A=${P}.tar.bz2 +S=${WORKDIR}/${P} +DESCRIPTION="XEmacs" + +EFS=1.22 +BASE=1.53 + +DEPEND=">=x11-base/xfree-4.0.3-r3" + +SRC_URI="ftp://ftp.xemacs.org/pub/current/${P}.tar.bz2 + ftp://ftp.xemacs.org/xemacs/packages/efs-${EFS}-pkg.tar.gz + ftp://ftp.xemacs.org/xemacs/packages/xemacs-base-${BASE}-pkg.tar.gz" + +HOMEPAGE="http://www.xemacs.org" + +src_unpack() { + cd ${WORKDIR} + unpack ${P}.tar.bz2 # Extract the original package +} + +src_compile() { + try ./configure --prefix=/usr/X11R6 + try make +} + +src_install() { + try make prefix=${D}/usr/X11R6 install + # Install the two packages + dodir /usr/X11R6/lib/xemacs/xemacs-packages/ + cd ${D}/usr/X11R6/lib/xemacs/xemacs-packages/ + unpack efs-${EFS}-pkg.tar.gz + unpack xemacs-base-${BASE}-pkg.tar.gz + cd ${S} + prepinfo /usr/X11R6/lib/xemacs-21.1.14 + prepman /usr/X11R6 + dodoc BUGS CHANGES-beta COPYING GETTING* INSTALL ISSUES PROBLEMS README* +} + + + + + + + |