diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 16:47:54 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-12 16:47:54 +0000 |
commit | a8bd0935d0e1ecc3acbd8bac10f7a8c78712f28d (patch) | |
tree | a4de3b0a003babc98eff17c0054b3dceed06d29d /dev-util/cflow | |
parent | Fix quoting. (diff) | |
download | historical-a8bd0935d0e1ecc3acbd8bac10f7a8c78712f28d.tar.gz historical-a8bd0935d0e1ecc3acbd8bac10f7a8c78712f28d.tar.bz2 historical-a8bd0935d0e1ecc3acbd8bac10f7a8c78712f28d.zip |
Missing src_configure function for EAPI2 ebuild. Remove old.
Package-Manager: portage-2.2_rc46/cvs/Linux x86_64
Diffstat (limited to 'dev-util/cflow')
-rw-r--r-- | dev-util/cflow/cflow-1.2-r1.ebuild | 54 | ||||
-rw-r--r-- | dev-util/cflow/cflow-1.2-r2.ebuild | 58 | ||||
-rw-r--r-- | dev-util/cflow/cflow-1.3.ebuild | 7 |
3 files changed, 5 insertions, 114 deletions
diff --git a/dev-util/cflow/cflow-1.2-r1.ebuild b/dev-util/cflow/cflow-1.2-r1.ebuild deleted file mode 100644 index 4aea17abeab0..000000000000 --- a/dev-util/cflow/cflow-1.2-r1.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cflow/cflow-1.2-r1.ebuild,v 1.3 2008/03/10 17:20:05 nixnut Exp $ - -inherit elisp-common - -DESCRIPTION="C function call hierarchy analyzer" -HOMEPAGE="http://www.gnu.org/software/cflow/" -SRC_URI="ftp://download.gnu.org.ua/pub/release/cflow/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug emacs nls" - -DEPEND="nls? ( sys-devel/gettext ) - emacs? ( virtual/emacs )" -RDEPEND="${DEPEND}" - -SITEFILE=50${PN}-gentoo.el - -src_compile() { - econf \ - $(use_enable nls) \ - $(use_enable debug) \ - EMACS=no \ - || die "econf failed" - emake || die "emake failed" - - if use emacs; then - elisp-compile elisp/cflow-mode.el || die "elisp-compile failed" - fi -} - -src_install() { - dodoc AUTHORS ChangeLog NEWS README THANKS TODO - doinfo doc/cflow.info - emake DESTDIR="${D}" install || die "emake install failed" - - if use emacs; then - elisp-install ${PN} elisp/cflow-mode.{el,elc} \ - || die "elisp-install failed" - elisp-site-file-install "${FILESDIR}/${SITEFILE}" \ - || die "elisp-site-file-install failed" - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/dev-util/cflow/cflow-1.2-r2.ebuild b/dev-util/cflow/cflow-1.2-r2.ebuild deleted file mode 100644 index bf05e0e8b3a6..000000000000 --- a/dev-util/cflow/cflow-1.2-r2.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cflow/cflow-1.2-r2.ebuild,v 1.1 2009/02/02 20:45:35 ulm Exp $ - -inherit elisp-common eutils - -DESCRIPTION="C function call hierarchy analyzer" -HOMEPAGE="http://www.gnu.org/software/cflow/" -SRC_URI="ftp://download.gnu.org.ua/pub/release/cflow/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="debug emacs nls" - -DEPEND="nls? ( sys-devel/gettext ) - emacs? ( virtual/emacs )" -RDEPEND="${DEPEND}" - -SITEFILE="50${PN}-gentoo.el" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-info-direntry.patch" -} - -src_compile() { - econf \ - $(use_enable nls) \ - $(use_enable debug) \ - EMACS=no \ - || die "econf failed" - emake || die "emake failed" - - if use emacs; then - elisp-compile elisp/cflow-mode.el || die - fi -} - -src_install() { - dodoc AUTHORS ChangeLog NEWS README THANKS TODO - doinfo doc/cflow.info - emake DESTDIR="${D}" install || die "emake install failed" - - if use emacs; then - elisp-install ${PN} elisp/cflow-mode.{el,elc} || die - elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die - fi -} - -pkg_postinst() { - use emacs && elisp-site-regen -} - -pkg_postrm() { - use emacs && elisp-site-regen -} diff --git a/dev-util/cflow/cflow-1.3.ebuild b/dev-util/cflow/cflow-1.3.ebuild index dd09b2681b33..d0774cf101b5 100644 --- a/dev-util/cflow/cflow-1.3.ebuild +++ b/dev-util/cflow/cflow-1.3.ebuild @@ -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/dev-util/cflow/cflow-1.3.ebuild,v 1.1 2009/09/12 01:13:23 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cflow/cflow-1.3.ebuild,v 1.2 2009/10/12 16:47:54 ssuominen Exp $ EAPI="2" @@ -25,12 +25,15 @@ src_prepare() { epatch "${FILESDIR}/${PN}-1.2-info-direntry.patch" } -src_compile() { +src_configure() { econf \ $(use_enable nls) \ $(use_enable debug) \ EMACS=no \ || die "econf failed" +} + +src_compile() { emake || die "emake failed" if use emacs; then |