* "Fabian Groffen (grobian)" <grob...@gentoo.org>: > grobian 09/10/11 15:04:33 > > Modified: ChangeLog getmail-4.9.2.ebuild > Log: > Use ED for Prefix compatability, marked ~ppc-macos and ~x64-solaris > (Portage version: 2.2.00.14552-prefix/cvs/Darwin powerpc, RepoMan options: > --force) > > > file : > http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild?rev=1.2&view=markup > plain: > http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild?rev=1.2&content-type=text/plain > diff : > http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild?r1=1.1&r2=1.2 > > Index: getmail-4.9.2.ebuild > =================================================================== > RCS file: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild,v > retrieving revision 1.1 > retrieving revision 1.2 > diff -u -r1.1 -r1.2 > --- getmail-4.9.2.ebuild 23 Jul 2009 19:27:29 -0000 1.1 > +++ getmail-4.9.2.ebuild 11 Oct 2009 15:04:33 -0000 1.2 > @@ -1,6 +1,6 @@ > # Copyright 1999-2009 Gentoo Foundation > # Distributed under the terms of the GNU General Public License v2 > -# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild,v > 1.1 2009/07/23 19:27:29 tove Exp $ > +# $Header: /var/cvsroot/gentoo-x86/net-mail/getmail/getmail-4.9.2.ebuild,v > 1.2 2009/10/11 15:04:33 grobian Exp $ > > inherit distutils > > @@ -10,7 +10,7 @@ > > LICENSE="GPL-2" > SLOT="4" > -KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" > +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~ppc-macos ~x64-solaris" > IUSE="" > > DEPEND=">=dev-lang/python-2.3.3" > @@ -19,14 +19,15 @@ > PYTHON_MODNAME=getmailcore > > src_install() { > + [[ -z ${ED} ]] && local ED=${D} > distutils_src_install > > # handle docs the gentoo way > - rm "${D}"/usr/share/doc/${P}/COPYING || die > + rm "${ED}"/usr/share/doc/${P}/COPYING || die > if [[ ${P} != ${PF} ]] ; then > - mv "${D}"/usr/share/doc/${P} "${D}"/usr/share/doc/${PF} || die > + mv "${ED}"/usr/share/doc/${P} "${ED}"/usr/share/doc/${PF} || die > fi > > dodir /usr/share/doc/${PF}/html > - mv "${D}"/usr/share/doc/${PF}/*.{html,css} > "${D}"/usr/share/doc/${PF}/html || die > + mv "${ED}"/usr/share/doc/${PF}/*.{html,css} > "${ED}"/usr/share/doc/${PF}/html || die > }
Can you please explain these changes? What is ED? Why does it need changes in the ebuild at all? Where is the documentation?