diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 23:40:28 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 23:40:28 +0000 |
commit | 19af09d0cd9f90ed508e1b973533c9b8d1b8fa1b (patch) | |
tree | 1ee14e5b26bde5fe3b837afc653fa47e0114ae8b /app-office/mrproject | |
parent | Changed unpack||die to unpack (diff) | |
download | gentoo-2-19af09d0cd9f90ed508e1b973533c9b8d1b8fa1b.tar.gz gentoo-2-19af09d0cd9f90ed508e1b973533c9b8d1b8fa1b.tar.bz2 gentoo-2-19af09d0cd9f90ed508e1b973533c9b8d1b8fa1b.zip |
Changed econf||die to econf
Diffstat (limited to 'app-office/mrproject')
-rw-r--r-- | app-office/mrproject/mrproject-0.6.ebuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/app-office/mrproject/mrproject-0.6.ebuild b/app-office/mrproject/mrproject-0.6.ebuild index 6d4fa78e393d..2c193ffffab3 100644 --- a/app-office/mrproject/mrproject-0.6.ebuild +++ b/app-office/mrproject/mrproject-0.6.ebuild @@ -1,10 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/mrproject/mrproject-0.6.ebuild,v 1.3 2002/10/05 05:39:09 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/mrproject/mrproject-0.6.ebuild,v 1.4 2002/11/30 23:37:54 vapier Exp $ -IUSE="doc nls" - -S=${WORKDIR}/${P} DESCRIPTION="Project manager for Gnome2" SRC_URI="ftp://ftp.codefactory.se/pub/software/mrproject/source/${P}.tar.gz" HOMEPAGE="http://mrproject.codefactory.se/" @@ -12,6 +9,7 @@ HOMEPAGE="http://mrproject.codefactory.se/" SLOT="2" LICENSE="GPL-2" KEYWORDS="x86" +IUSE="doc nls" RDEPEND=">=x11-libs/gtk+-2.0.5 >=x11-libs/pango-1.0.3 @@ -26,18 +24,16 @@ DEPEND="${RDEPEND} >=dev-util/pkgconfig-0.12.0 doc? ( >=dev-util/gtk-doc-0.9-r2 )" - src_compile() { local myconf use doc && myconf="--enable-gtk-doc" || myconf="--disable-gtk-doc" use nls && myconf="${myconf} --enable-nls" || myconf="${myconf} --disable-nls" - - econf ${myconf} --disable-maintainer-mode || die "compile failure" + + econf ${myconf} --disable-maintainer-mode emake || die } src_install() { einstall dodoc AUTHORS COPYING ChangeL* INSTALL NEWS README* - } |