| 1 |
ulm |
1.36 |
# Copyright 1999-2008 Gentoo Foundation |
| 2 |
mkennedy |
1.1 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
ulm |
1.44 |
# $Header: /var/cvsroot/gentoo-x86/eclass/elisp-common.eclass,v 1.43 2008/08/27 06:53:41 ulm Exp $ |
| 4 |
mkennedy |
1.1 |
# |
| 5 |
ulm |
1.24 |
# Copyright 2002-2004 Matthew Kennedy <mkennedy@gentoo.org> |
| 6 |
ulm |
1.35 |
# Copyright 2003 Jeremy Maitin-Shepard <jbms@attbi.com> |
| 7 |
ulm |
1.24 |
# Copyright 2004-2005 Mamoru Komachi <usata@gentoo.org> |
| 8 |
ulm |
1.35 |
# Copyright 2007-2008 Christian Faulhammer <opfer@gentoo.org> |
| 9 |
|
|
# Copyright 2007-2008 Ulrich Müller <ulm@gentoo.org> |
| 10 |
mkennedy |
1.1 |
# |
| 11 |
ulm |
1.25 |
# @ECLASS: elisp-common.eclass |
| 12 |
|
|
# @MAINTAINER: |
| 13 |
ulm |
1.29 |
# Feel free to contact the Emacs team through <emacs@gentoo.org> if you have |
| 14 |
ulm |
1.25 |
# problems, suggestions or questions. |
| 15 |
|
|
# @BLURB: Emacs-related installation utilities |
| 16 |
|
|
# @DESCRIPTION: |
| 17 |
opfer |
1.15 |
# |
| 18 |
|
|
# Usually you want to use this eclass for (optional) GNU Emacs support of |
| 19 |
ulm |
1.18 |
# your package. This is NOT for XEmacs! |
| 20 |
ulm |
1.25 |
# |
| 21 |
|
|
# Many of the steps here are sometimes done by the build system of your |
| 22 |
opfer |
1.15 |
# package (especially compilation), so this is mainly for standalone elisp |
| 23 |
|
|
# files you gathered from somewhere else. |
| 24 |
ulm |
1.25 |
# |
| 25 |
|
|
# When relying on the emacs USE flag, you need to add |
| 26 |
opfer |
1.15 |
# |
| 27 |
ulm |
1.26 |
# emacs? ( virtual/emacs ) |
| 28 |
opfer |
1.15 |
# |
| 29 |
|
|
# to your DEPEND/RDEPEND line and use the functions provided here to bring |
| 30 |
|
|
# the files to the correct locations. |
| 31 |
|
|
# |
| 32 |
ulm |
1.25 |
# .SS |
| 33 |
opfer |
1.15 |
# src_compile() usage: |
| 34 |
|
|
# |
| 35 |
|
|
# An elisp file is compiled by the elisp-compile() function defined here and |
| 36 |
ulm |
1.43 |
# simply takes the source files as arguments. The case of interdependent |
| 37 |
|
|
# elisp files is also supported, since the current directory is added to the |
| 38 |
|
|
# load-path which makes sure that all files are loadable. |
| 39 |
opfer |
1.15 |
# |
| 40 |
ulm |
1.26 |
# elisp-compile *.el || die "elisp-compile failed" |
| 41 |
ulm |
1.25 |
# |
| 42 |
ulm |
1.43 |
# Formerly, function elisp-comp() was used for compilation of interdependent |
| 43 |
|
|
# elisp files. This usage is considered as obsolete. |
| 44 |
opfer |
1.15 |
# |
| 45 |
ulm |
1.25 |
# Function elisp-make-autoload-file() can be used to generate a file with |
| 46 |
ulm |
1.18 |
# autoload definitions for the lisp functions. It takes the output file name |
| 47 |
opfer |
1.15 |
# (default: "${PN}-autoloads.el") and a list of directories (default: working |
| 48 |
ulm |
1.18 |
# directory) as its arguments. Use of this function requires that the elisp |
| 49 |
ulm |
1.43 |
# source files contain magic ";;;###autoload" comments. See the Emacs Lisp |
| 50 |
opfer |
1.15 |
# Reference Manual (node "Autoload") for a detailed explanation. |
| 51 |
|
|
# |
| 52 |
ulm |
1.25 |
# .SS |
| 53 |
opfer |
1.15 |
# src_install() usage: |
| 54 |
|
|
# |
| 55 |
|
|
# The resulting compiled files (.elc) should be put in a subdirectory of |
| 56 |
|
|
# /usr/share/emacs/site-lisp/ which is named after the first argument |
| 57 |
|
|
# of elisp-install(). The following parameters are the files to be put in |
| 58 |
|
|
# that directory. Usually the subdirectory should be ${PN}, you can choose |
| 59 |
|
|
# something else, but remember to tell elisp-site-file-install() (see below) |
| 60 |
|
|
# the change, as it defaults to ${PN}. |
| 61 |
|
|
# |
| 62 |
ulm |
1.26 |
# elisp-install ${PN} *.el *.elc || die "elisp-install failed" |
| 63 |
opfer |
1.15 |
# |
| 64 |
ulm |
1.25 |
# To let the Emacs support be activated by Emacs on startup, you need |
| 65 |
opfer |
1.15 |
# to provide a site file (shipped in ${FILESDIR}) which contains the startup |
| 66 |
ulm |
1.18 |
# code (have a look in the documentation of your software). Normally this |
| 67 |
opfer |
1.15 |
# would look like this: |
| 68 |
|
|
# |
| 69 |
ulm |
1.26 |
# ;;; csv-mode site-lisp configuration |
| 70 |
opfer |
1.15 |
# |
| 71 |
ulm |
1.26 |
# (add-to-list 'load-path "@SITELISP@") |
| 72 |
|
|
# (add-to-list 'auto-mode-alist '("\\.csv\\'" . csv-mode)) |
| 73 |
|
|
# (autoload 'csv-mode "csv-mode" "Major mode for csv files." t) |
| 74 |
opfer |
1.15 |
# |
| 75 |
ulm |
1.25 |
# If your Emacs support files are installed in a subdirectory of |
| 76 |
ulm |
1.29 |
# /usr/share/emacs/site-lisp/ (which is recommended), you need to extend |
| 77 |
|
|
# Emacs' load-path as shown in the first non-comment. |
| 78 |
|
|
# The elisp-site-file-install() function of this eclass will replace |
| 79 |
|
|
# "@SITELISP@" by the actual path. |
| 80 |
ulm |
1.25 |
# |
| 81 |
|
|
# The next line tells Emacs to load the mode opening a file ending with |
| 82 |
opfer |
1.15 |
# ".csv" and load functions depending on the context and needed features. |
| 83 |
|
|
# Be careful though. Commands as "load-library" or "require" bloat the |
| 84 |
|
|
# editor as they are loaded on every startup. When having a lot of Emacs |
| 85 |
ulm |
1.18 |
# support files, users may be annoyed by the start-up time. Also avoid |
| 86 |
|
|
# keybindings as they might interfere with the user's settings. Give a hint |
| 87 |
opfer |
1.15 |
# in pkg_postinst(), which should be enough. |
| 88 |
ulm |
1.25 |
# |
| 89 |
|
|
# The naming scheme for this site file is "[0-9][0-9]*-gentoo.el", where the |
| 90 |
ulm |
1.18 |
# two digits at the beginning define the loading order. So if you depend on |
| 91 |
opfer |
1.15 |
# another Emacs package, your site file's number must be higher! |
| 92 |
ulm |
1.25 |
# |
| 93 |
|
|
# Best practice is to define a SITEFILE variable in the global scope of your |
| 94 |
opfer |
1.15 |
# ebuild (right after DEPEND e.g.): |
| 95 |
|
|
# |
| 96 |
ulm |
1.26 |
# SITEFILE=50${PN}-gentoo.el |
| 97 |
opfer |
1.15 |
# |
| 98 |
ulm |
1.25 |
# Which is then installed by |
| 99 |
opfer |
1.15 |
# |
| 100 |
ulm |
1.29 |
# elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die |
| 101 |
opfer |
1.15 |
# |
| 102 |
ulm |
1.18 |
# in src_install(). If your subdirectory is not named ${PN}, give the |
| 103 |
opfer |
1.15 |
# differing name as second argument. |
| 104 |
|
|
# |
| 105 |
ulm |
1.25 |
# .SS |
| 106 |
opfer |
1.15 |
# pkg_postinst() / pkg_postrm() usage: |
| 107 |
|
|
# |
| 108 |
|
|
# After that you need to recreate the start-up file of Emacs after emerging |
| 109 |
|
|
# and unmerging by using |
| 110 |
|
|
# |
| 111 |
ulm |
1.26 |
# pkg_postinst() { |
| 112 |
|
|
# elisp-site-regen |
| 113 |
|
|
# } |
| 114 |
|
|
# |
| 115 |
|
|
# pkg_postrm() { |
| 116 |
|
|
# elisp-site-regen |
| 117 |
|
|
# } |
| 118 |
opfer |
1.15 |
# |
| 119 |
ulm |
1.25 |
# When having optional Emacs support, you should prepend "use emacs &&" to |
| 120 |
opfer |
1.22 |
# above calls of elisp-site-regen(). Don't use "has_version virtual/emacs"! |
| 121 |
ulm |
1.25 |
# When unmerging the state of the emacs USE flag is taken from the package |
| 122 |
opfer |
1.22 |
# database and not from the environment, so it is no problem when you unset |
| 123 |
ulm |
1.25 |
# USE=emacs between merge and unmerge of a package. |
| 124 |
opfer |
1.22 |
# |
| 125 |
ulm |
1.25 |
# .SS |
| 126 |
opfer |
1.22 |
# Miscellaneous functions: |
| 127 |
|
|
# |
| 128 |
|
|
# elisp-emacs-version() outputs the version of the currently active Emacs. |
| 129 |
mkennedy |
1.1 |
|
| 130 |
ulm |
1.29 |
# @ECLASS-VARIABLE: SITELISP |
| 131 |
|
|
# @DESCRIPTION: |
| 132 |
ulm |
1.31 |
# Directory where packages install Emacs Lisp files. |
| 133 |
mkennedy |
1.1 |
SITELISP=/usr/share/emacs/site-lisp |
| 134 |
ulm |
1.29 |
|
| 135 |
ulm |
1.31 |
# Directory where packages install miscellaneous (not Lisp) files. |
| 136 |
|
|
SITEETC=/usr/share/emacs/etc |
| 137 |
|
|
|
| 138 |
ulm |
1.29 |
# @ECLASS-VARIABLE: SITEFILE |
| 139 |
|
|
# @DESCRIPTION: |
| 140 |
|
|
# Name of package's site-init file. |
| 141 |
ulm |
1.25 |
SITEFILE=50${PN}-gentoo.el |
| 142 |
ulm |
1.29 |
|
| 143 |
ulm |
1.43 |
# @ECLASS-VARIABLE: EMACS |
| 144 |
|
|
# @DESCRIPTION: |
| 145 |
|
|
# Path of Emacs executable. |
| 146 |
ulm |
1.28 |
EMACS=/usr/bin/emacs |
| 147 |
ulm |
1.43 |
|
| 148 |
|
|
# @ECLASS-VARIABLE: EMACSFLAGS |
| 149 |
|
|
# @DESCRIPTION: |
| 150 |
|
|
# Flags for executing Emacs in batch mode. |
| 151 |
|
|
# These work for Emacs versions 18-23, so don't change them. |
| 152 |
ulm |
1.30 |
EMACSFLAGS="-batch -q --no-site-file" |
| 153 |
ulm |
1.25 |
|
| 154 |
ulm |
1.43 |
# @ECLASS-VARIABLE: BYTECOMPFLAGS |
| 155 |
|
|
# @DESCRIPTION: |
| 156 |
|
|
# Emacs flags used for byte-compilation in elisp-compile(). |
| 157 |
|
|
BYTECOMPFLAGS="-L ." |
| 158 |
|
|
|
| 159 |
ulm |
1.25 |
# @FUNCTION: elisp-compile |
| 160 |
|
|
# @USAGE: <list of elisp files> |
| 161 |
|
|
# @DESCRIPTION: |
| 162 |
|
|
# Byte-compile Emacs Lisp files. |
| 163 |
ulm |
1.43 |
# |
| 164 |
|
|
# This function uses GNU Emacs to byte-compile all ".el" specified by its |
| 165 |
|
|
# arguments. The resulting byte-code (".elc") files are placed in the same |
| 166 |
|
|
# directory as their corresponding source file. |
| 167 |
|
|
# |
| 168 |
|
|
# The current directory is added to the load-path. This will ensure that |
| 169 |
|
|
# interdependent Emacs Lisp files are visible between themselves, in case |
| 170 |
|
|
# they require or load one another. |
| 171 |
mkennedy |
1.1 |
|
| 172 |
mkennedy |
1.2 |
elisp-compile() { |
| 173 |
ulm |
1.32 |
ebegin "Compiling GNU Emacs Elisp files" |
| 174 |
ulm |
1.43 |
${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS} -f batch-byte-compile "$@" |
| 175 |
ulm |
1.32 |
eend $? "batch-byte-compile failed" |
| 176 |
ulm |
1.30 |
} |
| 177 |
|
|
|
| 178 |
ulm |
1.44 |
# #FUNCTION: elisp-comp |
| 179 |
|
|
# #USAGE: <list of elisp files> |
| 180 |
|
|
# #DESCRIPTION: |
| 181 |
ulm |
1.30 |
# Byte-compile interdependent Emacs Lisp files. |
| 182 |
|
|
# |
| 183 |
|
|
# This function byte-compiles all ".el" files which are part of its |
| 184 |
|
|
# arguments, using GNU Emacs, and puts the resulting ".elc" files into the |
| 185 |
|
|
# current directory, so disregarding the original directories used in ".el" |
| 186 |
|
|
# arguments. |
| 187 |
|
|
# |
| 188 |
|
|
# This function manages in such a way that all Emacs Lisp files to be |
| 189 |
|
|
# compiled are made visible between themselves, in the event they require or |
| 190 |
|
|
# load one another. |
| 191 |
|
|
|
| 192 |
|
|
elisp-comp() { |
| 193 |
|
|
# Copyright 1995 Free Software Foundation, Inc. |
| 194 |
|
|
# François Pinard <pinard@iro.umontreal.ca>, 1995. |
| 195 |
|
|
# Originally taken from GNU autotools. |
| 196 |
|
|
|
| 197 |
|
|
[ $# -gt 0 ] || return 1 |
| 198 |
|
|
|
| 199 |
ulm |
1.32 |
ebegin "Compiling GNU Emacs Elisp files" |
| 200 |
ulm |
1.30 |
|
| 201 |
|
|
tempdir=elc.$$ |
| 202 |
|
|
mkdir ${tempdir} |
| 203 |
|
|
cp "$@" ${tempdir} |
| 204 |
|
|
pushd ${tempdir} |
| 205 |
|
|
|
| 206 |
|
|
echo "(add-to-list 'load-path \"../\")" > script |
| 207 |
|
|
${EMACS} ${EMACSFLAGS} -l script -f batch-byte-compile *.el |
| 208 |
|
|
local ret=$? |
| 209 |
|
|
mv *.elc .. |
| 210 |
|
|
|
| 211 |
|
|
popd |
| 212 |
|
|
rm -fr ${tempdir} |
| 213 |
ulm |
1.32 |
|
| 214 |
|
|
eend ${ret} "batch-byte-compile failed" |
| 215 |
ulm |
1.30 |
return ${ret} |
| 216 |
opfer |
1.22 |
} |
| 217 |
|
|
|
| 218 |
ulm |
1.25 |
# @FUNCTION: elisp-emacs-version |
| 219 |
|
|
# @DESCRIPTION: |
| 220 |
|
|
# Output version of currently active Emacs. |
| 221 |
|
|
|
| 222 |
opfer |
1.22 |
elisp-emacs-version() { |
| 223 |
ulm |
1.38 |
# The following will work for at least versions 18-23. |
| 224 |
opfer |
1.22 |
echo "(princ emacs-version)" >"${T}"/emacs-version.el |
| 225 |
ulm |
1.30 |
${EMACS} ${EMACSFLAGS} -l "${T}"/emacs-version.el |
| 226 |
ulm |
1.37 |
rm -f "${T}"/emacs-version.el |
| 227 |
mkennedy |
1.2 |
} |
| 228 |
|
|
|
| 229 |
ulm |
1.25 |
# @FUNCTION: elisp-make-autoload-file |
| 230 |
|
|
# @USAGE: [output file] [list of directories] |
| 231 |
|
|
# @DESCRIPTION: |
| 232 |
|
|
# Generate a file with autoload definitions for the lisp functions. |
| 233 |
|
|
|
| 234 |
ulm |
1.29 |
elisp-make-autoload-file() { |
| 235 |
opfer |
1.17 |
local f="${1:-${PN}-autoloads.el}" |
| 236 |
opfer |
1.15 |
shift |
| 237 |
ulm |
1.32 |
ebegin "Generating autoload file for GNU Emacs" |
| 238 |
opfer |
1.22 |
|
| 239 |
ulm |
1.21 |
sed 's/^FF/\f/' >"${f}" <<-EOF |
| 240 |
|
|
;;; ${f##*/} --- autoloads for ${P} |
| 241 |
|
|
|
| 242 |
|
|
;;; Commentary: |
| 243 |
|
|
;; Automatically generated by elisp-common.eclass |
| 244 |
|
|
;; DO NOT EDIT THIS FILE |
| 245 |
|
|
|
| 246 |
|
|
;;; Code: |
| 247 |
|
|
FF |
| 248 |
|
|
;; Local Variables: |
| 249 |
|
|
;; version-control: never |
| 250 |
|
|
;; no-byte-compile: t |
| 251 |
|
|
;; no-update-autoloads: t |
| 252 |
|
|
;; End: |
| 253 |
|
|
;;; ${f##*/} ends here |
| 254 |
|
|
EOF |
| 255 |
opfer |
1.22 |
|
| 256 |
ulm |
1.30 |
${EMACS} ${EMACSFLAGS} \ |
| 257 |
opfer |
1.15 |
--eval "(setq make-backup-files nil)" \ |
| 258 |
|
|
--eval "(setq generated-autoload-file (expand-file-name \"${f}\"))" \ |
| 259 |
|
|
-f batch-update-autoloads "${@-.}" |
| 260 |
ulm |
1.32 |
|
| 261 |
|
|
eend $? "batch-update-autoloads failed" |
| 262 |
opfer |
1.15 |
} |
| 263 |
|
|
|
| 264 |
ulm |
1.25 |
# @FUNCTION: elisp-install |
| 265 |
|
|
# @USAGE: <subdirectory> <list of files> |
| 266 |
|
|
# @DESCRIPTION: |
| 267 |
|
|
# Install files in SITELISP directory. |
| 268 |
|
|
|
| 269 |
mkennedy |
1.1 |
elisp-install() { |
| 270 |
ulm |
1.28 |
local subdir="$1" |
| 271 |
|
|
shift |
| 272 |
ulm |
1.32 |
ebegin "Installing Elisp files for GNU Emacs support" |
| 273 |
ulm |
1.28 |
( # subshell to avoid pollution of calling environment |
| 274 |
|
|
insinto "${SITELISP}/${subdir}" |
| 275 |
|
|
doins "$@" |
| 276 |
|
|
) |
| 277 |
ulm |
1.32 |
eend $? "doins failed" |
| 278 |
mkennedy |
1.1 |
} |
| 279 |
|
|
|
| 280 |
ulm |
1.25 |
# @FUNCTION: elisp-site-file-install |
| 281 |
|
|
# @USAGE: <site-init file> [subdirectory] |
| 282 |
|
|
# @DESCRIPTION: |
| 283 |
|
|
# Install Emacs site-init file in SITELISP directory. |
| 284 |
|
|
|
| 285 |
mkennedy |
1.1 |
elisp-site-file-install() { |
| 286 |
ulm |
1.37 |
local sf="${T}/${1##*/}" my_pn="${2:-${PN}}" ret |
| 287 |
ulm |
1.32 |
ebegin "Installing site initialisation file for GNU Emacs" |
| 288 |
ulm |
1.37 |
cp "$1" "${sf}" |
| 289 |
ulm |
1.31 |
sed -i -e "s:@SITELISP@:${SITELISP}/${my_pn}:g" \ |
| 290 |
ulm |
1.37 |
-e "s:@SITEETC@:${SITEETC}/${my_pn}:g" "${sf}" |
| 291 |
ulm |
1.28 |
( # subshell to avoid pollution of calling environment |
| 292 |
ulm |
1.34 |
insinto "${SITELISP}/site-gentoo.d" |
| 293 |
ulm |
1.37 |
doins "${sf}" |
| 294 |
ulm |
1.28 |
) |
| 295 |
ulm |
1.37 |
ret=$? |
| 296 |
|
|
rm -f "${sf}" |
| 297 |
|
|
eend ${ret} "doins failed" |
| 298 |
mkennedy |
1.1 |
} |
| 299 |
|
|
|
| 300 |
ulm |
1.25 |
# @FUNCTION: elisp-site-regen |
| 301 |
|
|
# @DESCRIPTION: |
| 302 |
ulm |
1.34 |
# Regenerate site-gentoo.el file. The old location for site initialisation |
| 303 |
|
|
# files of packages was /usr/share/emacs/site-lisp/. In December 2007 this |
| 304 |
|
|
# has been changed to /usr/share/emacs/site-lisp/site-gentoo.d/. Remerge of |
| 305 |
|
|
# packages with Emacs support is enough, the old location is still supported |
| 306 |
|
|
# when generating the start-up file. |
| 307 |
ulm |
1.32 |
|
| 308 |
mkennedy |
1.1 |
elisp-site-regen() { |
| 309 |
ulm |
1.34 |
local i sf line obsolete |
| 310 |
ulm |
1.32 |
local -a sflist |
| 311 |
ulm |
1.38 |
# Work around Paludis borkage: variable T is empty in pkg_postrm |
| 312 |
ulm |
1.39 |
local tmpdir=${T:-$(mktemp -d)} |
| 313 |
opfer |
1.22 |
|
| 314 |
ulm |
1.38 |
if [ ! -d "${ROOT}${SITELISP}" ]; then |
| 315 |
|
|
eerror "Directory ${SITELISP} does not exist" |
| 316 |
|
|
return 1 |
| 317 |
|
|
fi |
| 318 |
|
|
|
| 319 |
ulm |
1.29 |
if [ ! -e "${ROOT}${SITELISP}"/site-gentoo.el ] \ |
| 320 |
|
|
&& [ ! -e "${ROOT}${SITELISP}"/site-start.el ]; then |
| 321 |
|
|
einfo "Creating default ${SITELISP}/site-start.el ..." |
| 322 |
ulm |
1.37 |
cat <<-EOF >"${tmpdir}"/site-start.el |
| 323 |
ulm |
1.29 |
;;; site-start.el |
| 324 |
|
|
|
| 325 |
|
|
;;; Commentary: |
| 326 |
|
|
;; This default site startup file is installed by elisp-common.eclass. |
| 327 |
|
|
;; You may replace this file by your own site initialisation, or even |
| 328 |
|
|
;; remove it completely; it will not be recreated. |
| 329 |
|
|
|
| 330 |
|
|
;;; Code: |
| 331 |
|
|
;; Load site initialisation for Gentoo-installed packages. |
| 332 |
|
|
(require 'site-gentoo) |
| 333 |
|
|
|
| 334 |
|
|
;;; site-start.el ends here |
| 335 |
|
|
EOF |
| 336 |
|
|
fi |
| 337 |
|
|
|
| 338 |
ulm |
1.25 |
einfon "Regenerating ${SITELISP}/site-gentoo.el ..." |
| 339 |
ulm |
1.32 |
|
| 340 |
ulm |
1.41 |
# remove any auxiliary file (from previous run) |
| 341 |
ulm |
1.32 |
rm -f "${ROOT}${SITELISP}"/00site-gentoo.el |
| 342 |
|
|
|
| 343 |
|
|
# set nullglob option, there may be a directory without matching files |
| 344 |
|
|
local old_shopts=$(shopt -p nullglob) |
| 345 |
|
|
shopt -s nullglob |
| 346 |
|
|
|
| 347 |
|
|
for sf in "${ROOT}${SITELISP}"/[0-9][0-9]*-gentoo.el \ |
| 348 |
|
|
"${ROOT}${SITELISP}"/site-gentoo.d/[0-9][0-9]*.el |
| 349 |
|
|
do |
| 350 |
|
|
[ -r "${sf}" ] || continue |
| 351 |
|
|
# sort files by their basename. straight insertion sort. |
| 352 |
|
|
for ((i=${#sflist[@]}; i>0; i--)); do |
| 353 |
|
|
[[ ${sf##*/} < ${sflist[i-1]##*/} ]] || break |
| 354 |
|
|
sflist[i]=${sflist[i-1]} |
| 355 |
|
|
done |
| 356 |
|
|
sflist[i]=${sf} |
| 357 |
ulm |
1.34 |
# set a flag if there are obsolete files |
| 358 |
|
|
[ "${sf%/*}" = "${ROOT}${SITELISP}" ] && obsolete=t |
| 359 |
ulm |
1.32 |
done |
| 360 |
|
|
|
| 361 |
|
|
eval "${old_shopts}" |
| 362 |
|
|
|
| 363 |
ulm |
1.37 |
cat <<-EOF >"${tmpdir}"/site-gentoo.el |
| 364 |
ulm |
1.24 |
;;; site-gentoo.el --- site initialisation for Gentoo-installed packages |
| 365 |
|
|
|
| 366 |
|
|
;;; Commentary: |
| 367 |
|
|
;; Automatically generated by elisp-common.eclass |
| 368 |
|
|
;; DO NOT EDIT THIS FILE |
| 369 |
|
|
|
| 370 |
|
|
;;; Code: |
| 371 |
|
|
EOF |
| 372 |
ulm |
1.37 |
cat "${sflist[@]}" </dev/null >>"${tmpdir}"/site-gentoo.el |
| 373 |
|
|
cat <<-EOF >>"${tmpdir}"/site-gentoo.el |
| 374 |
ulm |
1.24 |
|
| 375 |
ulm |
1.28 |
(provide 'site-gentoo) |
| 376 |
|
|
|
| 377 |
|
|
;; Local Variables: |
| 378 |
|
|
;; no-byte-compile: t |
| 379 |
|
|
;; End: |
| 380 |
ulm |
1.24 |
;;; site-gentoo.el ends here |
| 381 |
|
|
EOF |
| 382 |
|
|
|
| 383 |
ulm |
1.37 |
if cmp -s "${ROOT}${SITELISP}"/site-gentoo.el "${tmpdir}"/site-gentoo.el |
| 384 |
|
|
then |
| 385 |
opfer |
1.22 |
# This prevents outputting unnecessary text when there |
| 386 |
ulm |
1.29 |
# was actually no change. |
| 387 |
|
|
# A case is a remerge where we have doubled output. |
| 388 |
ulm |
1.25 |
echo " no changes." |
| 389 |
opfer |
1.22 |
else |
| 390 |
ulm |
1.37 |
mv "${tmpdir}"/site-gentoo.el "${ROOT}${SITELISP}"/site-gentoo.el |
| 391 |
|
|
[ -f "${tmpdir}"/site-start.el ] \ |
| 392 |
ulm |
1.29 |
&& [ ! -e "${ROOT}${SITELISP}"/site-start.el ] \ |
| 393 |
ulm |
1.37 |
&& mv "${tmpdir}"/site-start.el "${ROOT}${SITELISP}"/site-start.el |
| 394 |
ulm |
1.25 |
echo; einfo |
| 395 |
ulm |
1.32 |
for sf in "${sflist[@]##*/}"; do |
| 396 |
opfer |
1.22 |
einfo " Adding ${sf} ..." |
| 397 |
|
|
done |
| 398 |
ulm |
1.32 |
einfo "Regenerated ${SITELISP}/site-gentoo.el." |
| 399 |
|
|
|
| 400 |
|
|
echo |
| 401 |
ulm |
1.42 |
while read line; do einfo "${line:- }"; done <<-EOF |
| 402 |
|
|
All site initialisation for Gentoo-installed packages is added to |
| 403 |
|
|
/usr/share/emacs/site-lisp/site-gentoo.el; site-start.el is not |
| 404 |
|
|
managed by Gentoo. You are responsible for all maintenance of |
| 405 |
|
|
site-start.el if there is such a file. |
| 406 |
|
|
|
| 407 |
|
|
In order for this site initialisation to be loaded for all users |
| 408 |
|
|
automatically, you can add a line like this: |
| 409 |
|
|
|
| 410 |
|
|
(require 'site-gentoo) |
| 411 |
|
|
|
| 412 |
|
|
to /usr/share/emacs/site-lisp/site-start.el. Alternatively, that line |
| 413 |
|
|
can be added by individual users to their initialisation files, or, |
| 414 |
|
|
for greater flexibility, users can load individual package-specific |
| 415 |
|
|
initialisation files from /usr/share/emacs/site-lisp/site-gentoo.d/. |
| 416 |
|
|
EOF |
| 417 |
opfer |
1.22 |
echo |
| 418 |
ulm |
1.41 |
fi |
| 419 |
|
|
|
| 420 |
|
|
if [ "${obsolete}" ]; then |
| 421 |
|
|
while read line; do ewarn "${line}"; done <<-EOF |
| 422 |
|
|
Site-initialisation files of Emacs packages are now installed in |
| 423 |
|
|
/usr/share/emacs/site-lisp/site-gentoo.d/. We strongly recommend |
| 424 |
|
|
that you use /usr/sbin/emacs-updater to rebuild the installed |
| 425 |
|
|
Emacs packages. |
| 426 |
|
|
EOF |
| 427 |
|
|
echo |
| 428 |
ulm |
1.35 |
|
| 429 |
ulm |
1.41 |
# Kludge for backwards compatibility: During pkg_postrm, old versions |
| 430 |
|
|
# of this eclass (saved in the VDB) won't find packages' site-init |
| 431 |
|
|
# files in the new location. So we copy them to an auxiliary file |
| 432 |
|
|
# that is visible to old eclass versions. |
| 433 |
|
|
for sf in "${sflist[@]}"; do |
| 434 |
|
|
[ "${sf%/*}" = "${ROOT}${SITELISP}/site-gentoo.d" ] \ |
| 435 |
|
|
&& cat "${sf}" >>"${ROOT}${SITELISP}"/00site-gentoo.el |
| 436 |
|
|
done |
| 437 |
opfer |
1.22 |
fi |
| 438 |
ulm |
1.32 |
|
| 439 |
ulm |
1.37 |
# cleanup |
| 440 |
|
|
rm -f "${tmpdir}"/site-{gentoo,start}.el |
| 441 |
mkennedy |
1.3 |
} |