diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2002-11-01 02:52:02 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2002-11-01 02:52:02 +0000 |
commit | 08bd106430ca5599005323021f7635b2f1a1f72b (patch) | |
tree | d56e46390f1a7838a1a5eecfd8573e5eb47d0c98 /app-emacs/w3 | |
parent | masked app-emacs/monk (incomplete for now) (diff) | |
download | gentoo-2-08bd106430ca5599005323021f7635b2f1a1f72b.tar.gz gentoo-2-08bd106430ca5599005323021f7635b2f1a1f72b.tar.bz2 gentoo-2-08bd106430ca5599005323021f7635b2f1a1f72b.zip |
looks like an app-emacs/ import to me
Diffstat (limited to 'app-emacs/w3')
-rw-r--r-- | app-emacs/w3/ChangeLog | 11 | ||||
-rw-r--r-- | app-emacs/w3/files/50w3-gentoo.el | 7 | ||||
-rw-r--r-- | app-emacs/w3/files/digest-w3-4.0_pre47 | 1 | ||||
-rw-r--r-- | app-emacs/w3/w3-4.0_pre47.ebuild | 49 |
4 files changed, 68 insertions, 0 deletions
diff --git a/app-emacs/w3/ChangeLog b/app-emacs/w3/ChangeLog new file mode 100644 index 000000000000..e30143ab90d1 --- /dev/null +++ b/app-emacs/w3/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-emacs/w3 +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/w3/ChangeLog,v 1.1 2002/11/01 02:52:02 mkennedy Exp $ + +*w3-4.0_pre47 (31 Oct 2002) + + 31 Oct 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog, + w3-4.0_pre47.ebuild, files/50w3-gentoo.el, + files/digest-w3-4.0_pre47 : + + Initial import. diff --git a/app-emacs/w3/files/50w3-gentoo.el b/app-emacs/w3/files/50w3-gentoo.el new file mode 100644 index 000000000000..99c65b369018 --- /dev/null +++ b/app-emacs/w3/files/50w3-gentoo.el @@ -0,0 +1,7 @@ + +;;; emacs/w3 site-lisp configuration + +(setq load-path (cons "@SITELISP@" load-path)) +;;;(condition-case () (require 'w3-auto \"w3-auto\") (error nil)) +(require 'w3-auto) + diff --git a/app-emacs/w3/files/digest-w3-4.0_pre47 b/app-emacs/w3/files/digest-w3-4.0_pre47 new file mode 100644 index 000000000000..4d95e36afdc4 --- /dev/null +++ b/app-emacs/w3/files/digest-w3-4.0_pre47 @@ -0,0 +1 @@ +MD5 c99f44f0c7ee8609cd69512e4f587f63 w3-4.0pre.47.tar.gz 503062 diff --git a/app-emacs/w3/w3-4.0_pre47.ebuild b/app-emacs/w3/w3-4.0_pre47.ebuild new file mode 100644 index 000000000000..515a982024e2 --- /dev/null +++ b/app-emacs/w3/w3-4.0_pre47.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/w3/w3-4.0_pre47.ebuild,v 1.1 2002/11/01 02:52:02 mkennedy Exp $ + +inherit elisp + +IUSE="" + +DESCRIPTION="Emacs/W3 is a full-featured web browser written entirely in Emacs LISP" +HOMEPAGE="http://www.cs.indiana.edu/elisp/w3/docs.html" +SRC_URI="ftp://ftp.ibiblio.org/pub/packages/editors/xemacs/emacs-w3/${P/_pre/pre.}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="virtual/emacs" + +S="${WORKDIR}/${P/_pre/pre.}" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --with-emacs \ + --with-datadir=${SITELISP}/${PN} \ + --with-lispdir=${SITELISP}/${PN} || die "./configure failed" + + # fix this up sometime + make WIDGETDIR=/usr/share/emacs/21.2/lisp || die +} + +src_install() { + make prefix=${D}/usr \ + infodir=${D}/usr/share/info \ + datadir=${D}/${SITELISP}/${PN} \ + lispdir=${D}/${SITELISP}/${PN} install || die + + elisp-site-file-install ${FILESDIR}/50w3-gentoo.el +} + +pkg_postinst() { + elisp-site-regen +} + +pkg_postrm() { + elisp-site-regen +} |