diff options
author | Ulrich Müller <ulm@gentoo.org> | 2008-06-23 07:14:15 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2008-06-23 07:14:15 +0000 |
commit | ab9d6d198b429fae97cfe13ab01a2edd67f13a69 (patch) | |
tree | 28d786b910a01d4c52c9e4a33ee2211974c30fc2 /app-emacs/volume | |
parent | stable on ppc (bug #228991) (diff) | |
download | gentoo-2-ab9d6d198b429fae97cfe13ab01a2edd67f13a69.tar.gz gentoo-2-ab9d6d198b429fae97cfe13ab01a2edd67f13a69.tar.bz2 gentoo-2-ab9d6d198b429fae97cfe13ab01a2edd67f13a69.zip |
Set load-path in site file.
(Portage version: 2.2_rc1/cvs/Linux 2.6.25-gentoo-r4 i686)
Diffstat (limited to 'app-emacs/volume')
-rw-r--r-- | app-emacs/volume/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/volume/files/50volume-gentoo.el | 1 | ||||
-rw-r--r-- | app-emacs/volume/volume-0.5.ebuild | 10 |
3 files changed, 11 insertions, 7 deletions
diff --git a/app-emacs/volume/ChangeLog b/app-emacs/volume/ChangeLog index 55d3c7632466..cfc770ee9b0e 100644 --- a/app-emacs/volume/ChangeLog +++ b/app-emacs/volume/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/volume -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/volume/ChangeLog,v 1.1 2006/03/13 16:44:15 mkennedy Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/volume/ChangeLog,v 1.2 2008/06/23 07:14:14 ulm Exp $ + + 23 Jun 2008; Ulrich Mueller <ulm@gentoo.org> files/50volume-gentoo.el: + Set load-path in site file. *volume-0.5 (13 Mar 2006) diff --git a/app-emacs/volume/files/50volume-gentoo.el b/app-emacs/volume/files/50volume-gentoo.el index 6ec84ec022ce..b89617e3a76d 100644 --- a/app-emacs/volume/files/50volume-gentoo.el +++ b/app-emacs/volume/files/50volume-gentoo.el @@ -1,4 +1,5 @@ ;;; volume site-lisp configuration +(add-to-list 'load-path "@SITELISP@") (autoload 'volume "volume" "Tweak your sound card volume." t) diff --git a/app-emacs/volume/volume-0.5.ebuild b/app-emacs/volume/volume-0.5.ebuild index 7c5753ca1a1d..a7356c431761 100644 --- a/app-emacs/volume/volume-0.5.ebuild +++ b/app-emacs/volume/volume-0.5.ebuild @@ -1,21 +1,21 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/volume/volume-0.5.ebuild,v 1.2 2007/06/26 01:35:38 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/volume/volume-0.5.ebuild,v 1.3 2008/06/23 07:14:14 ulm Exp $ inherit elisp -IUSE="" - DESCRIPTION="Tweak your sound card volume from Emacs" HOMEPAGE="http://www.brockman.se/software/volume-el/" SRC_URI="mirror://gentoo/${P}.tar.gz" + LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~amd64 ~sparc ~ppc" +IUSE="" # NOTE we might define the following which volume.el can work with by # default, but volume.el can really work with anything. # RDEPEND="|| ( media-sound/aumixer media-sound/alsa-utils )" -SITEFILE=50volume-gentoo.el +SITEFILE=50${PN}-gentoo.el |