diff options
author | Ulrich Müller <ulm@gentoo.org> | 2007-10-06 21:37:59 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2007-10-06 21:37:59 +0000 |
commit | 8b50542501e178a138d434f000c24ff1fe52d981 (patch) | |
tree | 2a66ca6a5a551f8ffd6bdd132a0a75ffa73cd28d | |
parent | ppc stable, bug #194713 (diff) | |
download | gentoo-2-8b50542501e178a138d434f000c24ff1fe52d981.tar.gz gentoo-2-8b50542501e178a138d434f000c24ff1fe52d981.tar.bz2 gentoo-2-8b50542501e178a138d434f000c24ff1fe52d981.zip |
Add RSA-MD5 to LICENSE. Quote some variables.
(Portage version: 2.1.3.12)
-rw-r--r-- | app-emacs/md5/ChangeLog | 6 | ||||
-rw-r--r-- | app-emacs/md5/files/90md5-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/md5/md5-1.0-r1.ebuild | 14 |
3 files changed, 11 insertions, 13 deletions
diff --git a/app-emacs/md5/ChangeLog b/app-emacs/md5/ChangeLog index 523291ec3534..bb33761858e8 100644 --- a/app-emacs/md5/ChangeLog +++ b/app-emacs/md5/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/md5 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/md5/ChangeLog,v 1.9 2007/02/23 12:06:58 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/md5/ChangeLog,v 1.10 2007/10/06 21:37:58 ulm Exp $ + + 06 Oct 2007; Ulrich Mueller <ulm@gentoo.org> -files/90md5-gentoo.el, + md5-1.0-r1.ebuild: + Add RSA-MD5 to LICENSE. Quote some variables. Remove stale file. 23 Feb 2007; Christian Faulhammer <opfer@gentoo.org> -md5-1.0.ebuild: clean up diff --git a/app-emacs/md5/files/90md5-gentoo.el b/app-emacs/md5/files/90md5-gentoo.el deleted file mode 100644 index dc4da50f2280..000000000000 --- a/app-emacs/md5/files/90md5-gentoo.el +++ /dev/null @@ -1,4 +0,0 @@ - -;;; site-lisp configuration for md5 - -(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/md5/md5-1.0-r1.ebuild b/app-emacs/md5/md5-1.0-r1.ebuild index cadffe929d85..f7c87c75fc40 100644 --- a/app-emacs/md5/md5-1.0-r1.ebuild +++ b/app-emacs/md5/md5-1.0-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/md5/md5-1.0-r1.ebuild,v 1.8 2005/10/24 14:45:40 josejx Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/md5/md5-1.0-r1.ebuild,v 1.9 2007/10/06 21:37:58 ulm Exp $ inherit elisp eutils @@ -8,17 +8,15 @@ DESCRIPTION="Emacs Lisp implementation of the MD5 algorithm." HOMEPAGE="http://www.emacswiki.org/cgi-bin/wiki/WikifiedEmacsLispList" SRC_URI="mirror://gentoo/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-2 RSA-MD5" SLOT="0" KEYWORDS="~amd64 ~ppc x86" IUSE="" -DEPEND="virtual/emacs" - -SITEFILE=90md5-gentoo.el +SITEFILE=50${PN}-gentoo.el src_unpack() { unpack ${A} - epatch ${FILESDIR}/${P}-gentoo.patch || die - mv ${S}/md5.el ${S}/md5-digest.el + epatch "${FILESDIR}/${P}-gentoo.patch" + mv "${S}"/md5.el "${S}"/md5-digest.el } |