public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-emacs/emacs-common-gentoo: emacs-common-gentoo-1.0.ebuild
@ 2009-03-12 14:08 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Mueller (ulm) @ 2009-03-12 14:08 UTC (permalink / raw
  To: gentoo-commits

ulm         09/03/12 14:08:22

  Modified:             emacs-common-gentoo-1.0.ebuild
  Log:
  Be more verbose.
  (Portage version: 2.2_rc25/cvs/Linux i686)

Revision  Changes    Path
1.2                  app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild?r1=1.1&r2=1.2

Index: emacs-common-gentoo-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- emacs-common-gentoo-1.0.ebuild	12 Mar 2009 09:44:24 -0000	1.1
+++ emacs-common-gentoo-1.0.ebuild	12 Mar 2009 14:08:22 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild,v 1.1 2009/03/12 09:44:24 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild,v 1.2 2009/03/12 14:08:22 ulm Exp $
 
 inherit elisp-common eutils fdo-mime gnome2-utils
 
@@ -72,6 +72,24 @@
 	fi
 
 	if [ ! -e "${ROOT}${SITELISP}/site-start.el" ]; then
+		echo
+		while read line; do elog "${line:- }"; done <<-EOF
+		All site initialisation for Gentoo-installed packages is added to
+		/usr/share/emacs/site-lisp/site-gentoo.el. In order for this site
+		initialisation to be loaded for all users automatically, a default
+		site-start.el is created in the same directory. You are responsible
+		for all further maintenance of this file.
+
+		Alternatively, individual users can add the following command:
+
+		(require 'site-gentoo)
+
+		to their ~/.emacs initialisation files, or, for greater flexibility,
+		users may load single package-specific initialisation files from
+		/usr/share/emacs/site-lisp/site-gentoo.d/.
+		EOF
+		echo
+
 		if [ ! -e "${ROOT}${SITELISP}"/site-gentoo.el ]; then
 			# This seems to be a new install. Create site-gentoo.el and
 			# a default site-start.el, so that Gentoo packages will work.






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emacs/emacs-common-gentoo: emacs-common-gentoo-1.0.ebuild
@ 2009-03-13 17:25 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Mueller (ulm) @ 2009-03-13 17:25 UTC (permalink / raw
  To: gentoo-commits

ulm         09/03/13 17:25:25

  Modified:             emacs-common-gentoo-1.0.ebuild
  Log:
  Declare a local variable.
  (Portage version: 2.2_rc25/cvs/Linux i686)

Revision  Changes    Path
1.5                  app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild?r1=1.4&r2=1.5

Index: emacs-common-gentoo-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- emacs-common-gentoo-1.0.ebuild	13 Mar 2009 12:02:35 -0000	1.4
+++ emacs-common-gentoo-1.0.ebuild	13 Mar 2009 17:25:25 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild,v 1.4 2009/03/13 12:02:35 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild,v 1.5 2009/03/13 17:25:25 ulm Exp $
 
 inherit elisp-common eutils fdo-mime gnome2-utils
 
@@ -82,6 +82,7 @@
 	elisp-site-regen
 
 	if [ ! -e "${ROOT}${SITELISP}/site-start.el" ]; then
+		local line
 		echo
 		while read line; do elog "${line:- }"; done <<-EOF
 		All site initialisation for Gentoo-installed packages is added to






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-emacs/emacs-common-gentoo: emacs-common-gentoo-1.0.ebuild
@ 2009-03-19 11:04 Ulrich Mueller (ulm)
  0 siblings, 0 replies; 3+ messages in thread
From: Ulrich Mueller (ulm) @ 2009-03-19 11:04 UTC (permalink / raw
  To: gentoo-commits

ulm         09/03/19 11:04:12

  Modified:             emacs-common-gentoo-1.0.ebuild
  Log:
  Change a comment.
  (Portage version: 2.2_rc26/cvs/Linux i686)

Revision  Changes    Path
1.6                  app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild?r1=1.5&r2=1.6

Index: emacs-common-gentoo-1.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- emacs-common-gentoo-1.0.ebuild	13 Mar 2009 17:25:25 -0000	1.5
+++ emacs-common-gentoo-1.0.ebuild	19 Mar 2009 11:04:12 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild,v 1.5 2009/03/13 17:25:25 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/emacs-common-gentoo/emacs-common-gentoo-1.0.ebuild,v 1.6 2009/03/19 11:04:12 ulm Exp $
 
 inherit elisp-common eutils fdo-mime gnome2-utils
 
@@ -44,12 +44,12 @@
 make-site-start() {
 	ebegin "Creating default ${SITELISP}/site-start.el"
 	cat <<-EOF >"${T}/site-start.el"
-	;;; site-start.el
+	;;; site-start.el			-*- no-byte-compile: t -*-
 
 	;;; Commentary:
-	;; This default site startup file was created by package
-	;; ${CATEGORY}/${PF}. You may modify this file, replace it
-	;; by your own site initialisation, or even remove it completely.
+	;; This default site startup file for Emacs was created by package
+	;; ${CATEGORY}/${PF}. You may modify this file, replace
+	;; it by your own site initialisation, or even remove it completely.
 
 	;;; Code:
 	;; Load site initialisation for Gentoo installed packages.






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-03-19 11:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-12 14:08 [gentoo-commits] gentoo-x86 commit in app-emacs/emacs-common-gentoo: emacs-common-gentoo-1.0.ebuild Ulrich Mueller (ulm)
  -- strict thread matches above, loose matches on Subject: below --
2009-03-13 17:25 Ulrich Mueller (ulm)
2009-03-19 11:04 Ulrich Mueller (ulm)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox