diff -ur pydb.orig/pydb-1.26.ebuild pydb/pydb-1.26.ebuild --- pydb.orig/pydb-1.26.ebuild 2009-04-19 05:27:42.000000000 +0800 +++ pydb/pydb-1.26.ebuild 2011-12-23 23:32:01.895519136 +0800 @@ -2,6 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pydb/pydb-1.26.ebuild,v 1.2 2009/04/18 21:27:42 patrick Exp $ +EAPI=3 +inherit elisp-common + DESCRIPTION="Extended python debugger" HOMEPAGE="http://bashdb.sourceforge.net/pydb/" SRC_URI="mirror://sourceforge/bashdb/${P}.tar.bz2" @@ -14,13 +17,15 @@ IUSE="" DEPEND=">=dev-lang/python-2.4.0 - >=app-editors/emacs-22.0" + virtual/emacs" +RDEPEND="${DEPEND=}" # This package uses not distutils but the usual # ./configure; make; make install # The default src_compile is OK src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die "dodoc failed" + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README THANKS TODO + elisp-common_src_install }