diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2007-04-10 19:56:34 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2007-04-10 19:56:34 +0000 |
commit | 989e858f7ac301035b8ca991a1720cce5699392b (patch) | |
tree | 309ddd651234b3e68066a33703a4bd0a819ded83 /app-emacs/gnus | |
parent | added FDL license (diff) | |
download | historical-989e858f7ac301035b8ca991a1720cce5699392b.tar.gz historical-989e858f7ac301035b8ca991a1720cce5699392b.tar.bz2 historical-989e858f7ac301035b8ca991a1720cce5699392b.zip |
added FDL license, added a die comment, restructured and added some quotes
Package-Manager: portage-2.1.2.2
Diffstat (limited to 'app-emacs/gnus')
-rw-r--r-- | app-emacs/gnus/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/gnus/gnus-5.10.8.ebuild | 21 |
2 files changed, 16 insertions, 12 deletions
diff --git a/app-emacs/gnus/ChangeLog b/app-emacs/gnus/ChangeLog index f8aacee9f1ac..44d1ff950c2e 100644 --- a/app-emacs/gnus/ChangeLog +++ b/app-emacs/gnus/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emacs/gnus -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/ChangeLog,v 1.23 2006/09/22 16:07:39 mr_bones_ Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/ChangeLog,v 1.24 2007/04/10 19:56:34 opfer Exp $ + + 10 Apr 2007; Christian Faulhammer <opfer@gentoo.org> gnus-5.10.8.ebuild: + added FDL license, restructured, added a die comment and added some quotes 22 Sep 2006; Michael Sterrett <mr_bones_@gentoo.org> -gnus-5.10.3.ebuild, -gnus-5.10.6.ebuild: diff --git a/app-emacs/gnus/gnus-5.10.8.ebuild b/app-emacs/gnus/gnus-5.10.8.ebuild index df6406fca0c6..f078091afd53 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-2006 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/gnus/gnus-5.10.8.ebuild,v 1.7 2006/09/21 15:04:50 chriswhite Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/gnus-5.10.8.ebuild,v 1.8 2007/04/10 19:56:34 opfer Exp $ inherit elisp @@ -9,11 +9,12 @@ IUSE="" DESCRIPTION="The Gnus newsreader and mail-reader" HOMEPAGE="http://www.gnus.org/" SRC_URI="http://quimby.gnus.org/gnus/dist/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-2 FDL-1.2" SLOT="0" KEYWORDS="alpha amd64 ppc sparc x86" -DEPEND="virtual/emacs" +DEPEND="" +SITEFILE=70gnus-gentoo.el src_compile() { local myconf @@ -27,15 +28,15 @@ src_compile() { } src_install() { - einstall \ - lispdir=${D}/usr/share/emacs/site-lisp/gnus \ - etcdir=${D}/usr/share/emacs/etc \ - || die + emake \ + lispdir="${D}/usr/share/emacs/site-lisp/gnus" \ + etcdir="${D}/usr/share/emacs/etc" install \ + || die "emake install failed" - elisp-site-file-install ${FILESDIR}/70${PN}-gentoo.el + elisp-site-file-install "{FILESDIR}/${SITEFILE}" dodoc ChangeLog GNUS-NEWS README todo # fix info documentation - find ${D}/usr/share/info -type f -exec mv {} {}.info \; + find "${D}/usr/share/info" -type f -exec mv {} {}.info \; } |