diff options
author | David Seifert <soap@gentoo.org> | 2020-01-16 15:54:11 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2020-01-16 15:54:11 +0100 |
commit | ea1125c32faee39b82f2e030fd3db6393ff633c4 (patch) | |
tree | f75125f9c678eaa912842a4a86db292b8e902b95 /eclass | |
parent | sgml-catalog.eclass: Remove last-rited eclass (diff) | |
download | gentoo-ea1125c32faee39b82f2e030fd3db6393ff633c4.tar.gz gentoo-ea1125c32faee39b82f2e030fd3db6393ff633c4.tar.bz2 gentoo-ea1125c32faee39b82f2e030fd3db6393ff633c4.zip |
xemacs-elisp.eclass: Remove last-rited eclass
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xemacs-elisp.eclass | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/eclass/xemacs-elisp.eclass b/eclass/xemacs-elisp.eclass deleted file mode 100644 index a5500af4da01..000000000000 --- a/eclass/xemacs-elisp.eclass +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# -# Copyright 2007-2011 Hans de Graaff <graaff@gentoo.org> -# -# Based on elisp.eclass: -# Copyright 2007 Christian Faulhammer <opfer@gentoo.org> -# Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> -# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> -# -# @DEAD -# Ulrich Müller <ulm@gentoo.org> (2019-12-16) -# No longer used by any ebuild in the Gentoo repository. -# Removal in 30 days. -# -# @ECLASS: xemacs-elisp.eclass -# @MAINTAINER: -# xemacs@gentoo.org -# @BLURB: Eclass for XEmacs Lisp packages -# @DESCRIPTION: -# Emacs support for other than pure elisp packages is handled by -# xemacs-elisp-common.eclass where you won't have a dependency on XEmacs -# itself. All elisp-* functions are documented there. - -# @ECLASS-VARIABLE: SIMPLE_ELISP -# @DEFAULT_UNSET -# @DESCRIPTION: -# Setting SIMPLE_ELISP=t in an ebuild means, that the package's source -# is a single (in whatever way) compressed elisp file with the file name -# ${PN}-${PV}. This eclass will then redefine ${S}, and move -# ${PN}-${PV}.el to ${PN}.el in src_unpack(). - -inherit xemacs-elisp-common - -if [ "${SIMPLE_ELISP}" = 't' ]; then - S="${WORKDIR}/" -fi - - -DEPEND="app-editors/xemacs" -IUSE="" - -xemacs-elisp_src_unpack() { - unpack ${A} - if [ "${SIMPLE_ELISP}" = 't' ] - then - cd "${S}" && mv ${P}.el ${PN}.el - fi -} - -xemacs-elisp_src_compile() { - xemacs-elisp-compile *.el -} - -xemacs-elisp_src_install () { - xemacs-elisp-install "${PN}" *.el *.elc -} - -EXPORT_FUNCTIONS src_unpack src_compile src_install |