diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-11-11 22:14:23 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-11-11 22:14:23 +0000 |
commit | 605c1a8534210fa92b3400db423daafdb4fc60f1 (patch) | |
tree | 0ac8fcec1e31a39dd33c41af39ea47679a7fe31c /app-emacs | |
parent | Version bump. (diff) | |
download | gentoo-2-605c1a8534210fa92b3400db423daafdb4fc60f1.tar.gz gentoo-2-605c1a8534210fa92b3400db423daafdb4fc60f1.tar.bz2 gentoo-2-605c1a8534210fa92b3400db423daafdb4fc60f1.zip |
Upgrade postinst message from einfo to elog. Bump EAPI to 4. Move site-init file to its canonical name.
(Portage version: 2.1.10.34/cvs/Linux x86_64)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/mldonkey/ChangeLog | 9 | ||||
-rw-r--r-- | app-emacs/mldonkey/files/50mldonkey-gentoo.el (renamed from app-emacs/mldonkey/files/51mldonkey-gentoo.el) | 3 | ||||
-rw-r--r-- | app-emacs/mldonkey/mldonkey-0.0.4b-r1.ebuild | 24 |
3 files changed, 16 insertions, 20 deletions
diff --git a/app-emacs/mldonkey/ChangeLog b/app-emacs/mldonkey/ChangeLog index 675786cfe768..405fa03d3cac 100644 --- a/app-emacs/mldonkey/ChangeLog +++ b/app-emacs/mldonkey/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/mldonkey -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/mldonkey/ChangeLog,v 1.23 2010/06/27 07:37:02 fauli Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/mldonkey/ChangeLog,v 1.24 2011/11/11 22:14:23 ulm Exp $ + + 11 Nov 2011; Ulrich Mueller <ulm@gentoo.org> +files/50mldonkey-gentoo.el, + -files/51mldonkey-gentoo.el, mldonkey-0.0.4b-r1.ebuild: + Upgrade postinst message from einfo to elog. Bump EAPI to 4. Move site-init + file to its canonical name. 27 Jun 2010; Christian Faulhammer <fauli@gentoo.org> mldonkey-0.0.4b-r1.ebuild: diff --git a/app-emacs/mldonkey/files/51mldonkey-gentoo.el b/app-emacs/mldonkey/files/50mldonkey-gentoo.el index b74cbf75ebae..c3bb77b43aaa 100644 --- a/app-emacs/mldonkey/files/51mldonkey-gentoo.el +++ b/app-emacs/mldonkey/files/50mldonkey-gentoo.el @@ -1,6 +1,3 @@ - -;;; mldonkey site-lisp configuration - (add-to-list 'load-path "@SITELISP@") (autoload 'mldonkey "mldonkey" "Run the MlDonkey interface." t) diff --git a/app-emacs/mldonkey/mldonkey-0.0.4b-r1.ebuild b/app-emacs/mldonkey/mldonkey-0.0.4b-r1.ebuild index 3aab1c7e2f89..a83cbddfabfd 100644 --- a/app-emacs/mldonkey/mldonkey-0.0.4b-r1.ebuild +++ b/app-emacs/mldonkey/mldonkey-0.0.4b-r1.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/mldonkey/mldonkey-0.0.4b-r1.ebuild,v 1.7 2010/06/27 07:31:35 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/mldonkey/mldonkey-0.0.4b-r1.ebuild,v 1.8 2011/11/11 22:14:23 ulm Exp $ -inherit elisp eutils +EAPI=4 + +inherit elisp MY_P="${PN}-el-${PV}" DESCRIPTION="An Emacs Lisp interface to the MLDonkey core" @@ -15,17 +17,9 @@ SLOT="0" KEYWORDS="amd64 ppc x86" IUSE="" -RDEPEND="" -DEPEND="" - -SITEFILE=51${PN}-gentoo.el S="${WORKDIR}/${MY_P}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-vd.patch" -} +ELISP_PATCHES="${P}-vd.patch" +SITEFILE="50${PN}-gentoo.el" src_compile() { elisp-compile ml*.el || die "elisp-compile failed" @@ -37,6 +31,6 @@ pkg_postinst() { ewarn "If your network gets really slow when you use mldonkey," ewarn "consider reducing the max number of connections. See bug #50510." ewarn - einfo "Remember to install net-p2p/mldonkey separately if you want to work" - einfo "with a local instance." + elog "Remember to install net-p2p/mldonkey separately if you want to work" + elog "with a local instance." } |