+++ /dev/null
-
-;;; tdtd site-lisp configuration
-
-(add-to-list 'load-path "@SITELISP@")
-
-(autoload 'dtd-mode "tdtd" "Major mode to edit DTD files." t)
-(autoload 'dtd-etags "tdtd"
- "Execute etags on FILESPEC and match on DTD-specific regular expressions."
- t)
-(autoload 'dtd-grep "tdtd" "Grep for PATTERN in files matching FILESPEC." t)
-
-;; Turn on font lock when in DTD mode
-(add-hook 'dtd-mode-hooks
- 'turn-on-font-lock)
-
-(setq auto-mode-alist
- (append
- (list
- '("\\.dcl$" . dtd-mode)
- '("\\.dec$" . dtd-mode)
- '("\\.dtd$" . dtd-mode)
- '("\\.ele$" . dtd-mode)
- '("\\.ent$" . dtd-mode)
- '("\\.mod$" . dtd-mode))
- auto-mode-alist))
-
-;; To use resize-minibuffer-mode, uncomment this and include in your .emacs:
-;;(resize-minibuffer-mode)
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>gnu-emacs@gentoo.org</email>
- <name>Gentoo GNU Emacs project</name>
-</maintainer>
-<stabilize-allarches/>
-</pkgmetadata>
+++ /dev/null
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit elisp
-
-DESCRIPTION="Emacs Major Mode for SGML and XML DTDs"
-HOMEPAGE="http://www.menteith.com/wiki/tdtd"
-SRC_URI="http://www.menteith.com/raw-attachment/wiki/tdtd/data/${PN}${PV//./}.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc sparc x86"
-IUSE=""
-
-DEPEND="app-arch/unzip"
-RDEPEND=""
-
-S="${WORKDIR}"
-SITEFILE=50${PN}-gentoo.el
-DOCS="TODO changelog.txt readme.txt tutorial.txt"