diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-11-19 07:16:26 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-11-19 07:16:26 +0000 |
commit | 9dc421c01503f85964c1c252a1ef225d64be3fe5 (patch) | |
tree | 3c5c6e3e658c18d1fa2f9b4abac040da5664e0d8 /app-emacs/gnus | |
parent | Add mask for live ebuild of app-emacs/gnus. (diff) | |
download | gentoo-2-9dc421c01503f85964c1c252a1ef225d64be3fe5.tar.gz gentoo-2-9dc421c01503f85964c1c252a1ef225d64be3fe5.tar.bz2 gentoo-2-9dc421c01503f85964c1c252a1ef225d64be3fe5.zip |
Move live ebuild from app-emacs/ngnus to here.
(Portage version: 2.2_rc50/cvs/Linux i686)
Diffstat (limited to 'app-emacs/gnus')
-rw-r--r-- | app-emacs/gnus/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/gnus/gnus-9999.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/app-emacs/gnus/ChangeLog b/app-emacs/gnus/ChangeLog index 6affff7da56d..6598bf1e2c30 100644 --- a/app-emacs/gnus/ChangeLog +++ b/app-emacs/gnus/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/gnus # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/ChangeLog,v 1.38 2009/11/15 19:39:35 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/ChangeLog,v 1.39 2009/11/19 07:16:26 ulm Exp $ + +*gnus-9999 (19 Nov 2009) + + 19 Nov 2009; Ulrich Mueller <ulm@gentoo.org> +gnus-9999.ebuild: + Move live ebuild from app-emacs/ngnus to here. *gnus-5.13_p20091115 (15 Nov 2009) diff --git a/app-emacs/gnus/gnus-9999.ebuild b/app-emacs/gnus/gnus-9999.ebuild new file mode 100644 index 000000000000..f49989d84c3a --- /dev/null +++ b/app-emacs/gnus/gnus-9999.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/gnus/gnus-9999.ebuild,v 1.1 2009/11/19 07:16:26 ulm Exp $ + +ECVS_SERVER="cvs.gnus.org:/usr/local/cvsroot" +ECVS_MODULE="gnus" +ECVS_USER="gnus" +ECVS_PASS="gnus" +ECVS_CVS_OPTIONS="-dP" + +inherit elisp cvs + +DESCRIPTION="The Gnus newsreader and mail-reader" +HOMEPAGE="http://gnus.org/" +SRC_URI="" + +LICENSE="GPL-3 FDL-1.2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="!app-emacs/gnus-cvs + !app-emacs/ngnus" + +S="${WORKDIR}/${ECVS_MODULE}" +SITEFILE="70${PN}-gentoo.el" + +src_compile() { + econf \ + --with-emacs --without-w3 --without-url \ + --with-lispdir=${SITELISP}/${PN} \ + --with-etcdir=${SITEETC}/${PN} + emake || die "emake failed" +} + +src_install() { + einstall \ + lispdir="${D}${SITELISP}/${PN}" \ + etcdir="${D}${SITEETC}/${PN}" \ + || die "einstall failed" + + # fix info documentation + for i in "${D}"/usr/share/info/*; do + mv "${i}" "${i}".info || die "mv info failed" + done + + elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die + + dodoc ChangeLog GNUS-NEWS README todo || die "dodoc failed" +} |