diff options
author | Ulrich Müller <ulm@gentoo.org> | 2007-12-01 16:04:22 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2007-12-01 16:04:22 +0000 |
commit | f2593e0d8071e3a408740f6d9f369f66e4272e0b (patch) | |
tree | decb9927f0eb508f7521b8627b0bac969d5706f6 /app-emacs/gnus | |
parent | stable bump to a newer 0.20. bump trunk to new revision. (diff) | |
download | gentoo-2-f2593e0d8071e3a408740f6d9f369f66e4272e0b.tar.gz gentoo-2-f2593e0d8071e3a408740f6d9f369f66e4272e0b.tar.bz2 gentoo-2-f2593e0d8071e3a408740f6d9f369f66e4272e0b.zip |
Use SITEETC eclass variable.
(Portage version: 2.1.4_rc4)
Diffstat (limited to 'app-emacs/gnus')
-rw-r--r-- | app-emacs/gnus/ChangeLog | 5 | ||||
-rw-r--r-- | app-emacs/gnus/files/70gnus-gentoo.el | 2 | ||||
-rw-r--r-- | app-emacs/gnus/gnus-5.10.8.ebuild | 10 |
3 files changed, 11 insertions, 6 deletions
diff --git a/app-emacs/gnus/ChangeLog b/app-emacs/gnus/ChangeLog index 086364262344..2008f348412a 100644 --- a/app-emacs/gnus/ChangeLog +++ b/app-emacs/gnus/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/gnus # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/ChangeLog,v 1.29 2007/10/15 17:20:37 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/ChangeLog,v 1.30 2007/12/01 16:04:21 ulm Exp $ + + 01 Dec 2007; Ulrich Mueller <ulm@gentoo.org> gnus-5.10.8.ebuild: + Use SITEETC eclass variable. 15 Oct 2007; Ulrich Mueller <ulm@gentoo.org> gnus-5.10.8.ebuild: Add blocker against app-emacs/ngnus. diff --git a/app-emacs/gnus/files/70gnus-gentoo.el b/app-emacs/gnus/files/70gnus-gentoo.el index 7427e4ae5bc5..faf2425d7a1b 100644 --- a/app-emacs/gnus/files/70gnus-gentoo.el +++ b/app-emacs/gnus/files/70gnus-gentoo.el @@ -1,3 +1,5 @@ +;;; gnus site-lisp configuration + (add-to-list 'load-path "@SITELISP@") (require 'gnus-load) diff --git a/app-emacs/gnus/gnus-5.10.8.ebuild b/app-emacs/gnus/gnus-5.10.8.ebuild index 7083574ad925..234d27a976f6 100644 --- a/app-emacs/gnus/gnus-5.10.8.ebuild +++ b/app-emacs/gnus/gnus-5.10.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/gnus-5.10.8.ebuild,v 1.13 2007/10/15 17:20:37 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/gnus-5.10.8.ebuild,v 1.14 2007/12/01 16:04:21 ulm Exp $ inherit elisp @@ -24,16 +24,16 @@ src_compile() { myconf="${myconf} --without-w3 --without-url" econf \ --with-emacs \ - --with-lispdir=/usr/share/emacs/site-lisp/gnus \ - --with-etcdir=/usr/share/emacs/etc \ + --with-lispdir=${SITELISP}/${PN} \ + --with-etcdir=${SITEETC} \ ${myconf} || die "econf failed" emake || die } src_install() { einstall \ - lispdir="${D}/usr/share/emacs/site-lisp/gnus" \ - etcdir="${D}/usr/share/emacs/etc" \ + lispdir="${D}${SITELISP}/${PN}" \ + etcdir="${D}${SITEETC}" \ || die "einstall failed" elisp-site-file-install "${FILESDIR}/${SITEFILE}" |