diff options
author | 2002-08-18 23:35:54 +0000 | |
---|---|---|
committer | 2002-08-18 23:35:54 +0000 | |
commit | ad43978143f0088e06698d426ebb99551e03fbe6 (patch) | |
tree | ee62f639651e32d2bcbbb1502e50af0de333d868 /app-office/mrproject/mrproject-0.6.ebuild | |
parent | new stable version (diff) | |
download | gentoo-2-ad43978143f0088e06698d426ebb99551e03fbe6.tar.gz gentoo-2-ad43978143f0088e06698d426ebb99551e03fbe6.tar.bz2 gentoo-2-ad43978143f0088e06698d426ebb99551e03fbe6.zip |
new version, removed dev series
Diffstat (limited to 'app-office/mrproject/mrproject-0.6.ebuild')
-rw-r--r-- | app-office/mrproject/mrproject-0.6.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app-office/mrproject/mrproject-0.6.ebuild b/app-office/mrproject/mrproject-0.6.ebuild new file mode 100644 index 000000000000..5c57dca94d2d --- /dev/null +++ b/app-office/mrproject/mrproject-0.6.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/app-office/mrproject/mrproject-0.6.ebuild,v 1.1 2002/08/18 23:35:54 spider Exp $ + +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/" + +SLOT="2" +LICENSE="GPL-2" +KEYWORDS="x86" + +RDEPEND=">=x11-libs/gtk+-2.0.5 + >=x11-libs/pango-1.0.3 + >=dev-libs/glib-2.0.3 + >=gnome-base/libgnomecanvas-2.0.1 + >=gnome-base/libglade-2.0.0 + >=gnome-base/libgnomeui-2.0.1 + >=dev-libs/libmrproject-0.6 + nls? ( sys-devel/gettext )" + +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" + emake || die +} + +src_install() { + einstall + dodoc AUTHORS COPYING ChangeL* INSTALL NEWS README* + +} |