summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD.M.D. Ljungmark <spider@gentoo.org>2003-02-03 04:08:38 +0000
committerD.M.D. Ljungmark <spider@gentoo.org>2003-02-03 04:08:38 +0000
commitb18737b6a1c687637e5e9fea9ae5dbcc4c553a71 (patch)
tree808d76aa40871f5f706459aa02d47268e16fd4d3 /app-office
parentminor version bump, but ~86'd because of the release freeze (diff)
downloadgentoo-2-b18737b6a1c687637e5e9fea9ae5dbcc4c553a71.tar.gz
gentoo-2-b18737b6a1c687637e5e9fea9ae5dbcc4c553a71.tar.bz2
gentoo-2-b18737b6a1c687637e5e9fea9ae5dbcc4c553a71.zip
versionbump
Diffstat (limited to 'app-office')
-rw-r--r--app-office/mrproject/ChangeLog7
-rw-r--r--app-office/mrproject/files/digest-mrproject-0.81
-rw-r--r--app-office/mrproject/mrproject-0.8.ebuild39
3 files changed, 46 insertions, 1 deletions
diff --git a/app-office/mrproject/ChangeLog b/app-office/mrproject/ChangeLog
index 77aa840a60cd..fe9fca8f0098 100644
--- a/app-office/mrproject/ChangeLog
+++ b/app-office/mrproject/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-office/mrproject
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-office/mrproject/ChangeLog,v 1.8 2002/12/02 21:19:32 spider Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/mrproject/ChangeLog,v 1.9 2003/02/03 04:08:38 spider Exp $
+
+
+*mrproject-0.8 (02 Feb 2003)
+ 02 Feb 2003; Spider <spider@gentoo.org> mrproject-0.8.ebuild :
+ versionbump
*mrproject-0.7 (02 Dec 2002)
diff --git a/app-office/mrproject/files/digest-mrproject-0.8 b/app-office/mrproject/files/digest-mrproject-0.8
new file mode 100644
index 000000000000..dbf75b63a4ed
--- /dev/null
+++ b/app-office/mrproject/files/digest-mrproject-0.8
@@ -0,0 +1 @@
+MD5 feaa485526ab7955babf01b17c66b9c4 mrproject-0.8.tar.gz 1437562
diff --git a/app-office/mrproject/mrproject-0.8.ebuild b/app-office/mrproject/mrproject-0.8.ebuild
new file mode 100644
index 000000000000..c95ce92fa4c9
--- /dev/null
+++ b/app-office/mrproject/mrproject-0.8.ebuild
@@ -0,0 +1,39 @@
+# 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.8.ebuild,v 1.1 2003/02/03 04:08:38 spider Exp $
+
+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"
+IUSE="doc nls"
+
+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-${PV}
+ 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
+ emake || die
+}
+
+src_install() {
+ einstall
+ dodoc AUTHORS COPYING ChangeL* INSTALL NEWS README*
+}