diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 18:02:39 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-01 18:02:39 +0000 |
commit | 10a102ec8ff3f11500cdf945f68631d3f3490719 (patch) | |
tree | 428654f340215726d1e105ddf6db044b4aa4eecc /dev-libs/libmrproject | |
parent | Jaxp was a repack of various apache projects under a very restrictive Sun lic... (diff) | |
download | gentoo-2-10a102ec8ff3f11500cdf945f68631d3f3490719.tar.gz gentoo-2-10a102ec8ff3f11500cdf945f68631d3f3490719.tar.bz2 gentoo-2-10a102ec8ff3f11500cdf945f68631d3f3490719.zip |
repoman'd
Diffstat (limited to 'dev-libs/libmrproject')
-rw-r--r-- | dev-libs/libmrproject/libmrproject-0.4.ebuild | 48 |
1 files changed, 19 insertions, 29 deletions
diff --git a/dev-libs/libmrproject/libmrproject-0.4.ebuild b/dev-libs/libmrproject/libmrproject-0.4.ebuild index d2aa6a1f4254..4b759dd6f7aa 100644 --- a/dev-libs/libmrproject/libmrproject-0.4.ebuild +++ b/dev-libs/libmrproject/libmrproject-0.4.ebuild @@ -1,7 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmrproject/libmrproject-0.4.ebuild,v 1.1 2002/07/06 20:25:40 spider Exp $ - +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmrproject/libmrproject-0.4.ebuild,v 1.2 2002/08/01 18:02:36 seemant Exp $ inherit debug @@ -9,45 +8,36 @@ S=${WORKDIR}/${P} DESCRIPTION="Project manager for Gnome2" SRC_URI="ftp://ftp.codefactory.se/pub/software/mrproject/unstable/${P}.tar.gz" HOMEPAGE="http://mrproject.codefactory.se/" + SLOT="0" LICENSE="GPL-2" +KEYWORDS="x86" RDEPEND=">=dev-util/pkgconfig-0.12.0 - >=dev-libs/glib-2.0.0 - >=dev-libs/libxml2-2.4.19 - nls? ( sys-devel/gettext )" - + >=dev-libs/glib-2.0.0 + >=dev-libs/libxml2-2.4.19" -DEPEND="${RDEPEND} - >=dev-util/pkgconfig-0.12.0 +DEPEND="nls? ( sys-devel/gettext ) 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" - ./configure --host=${CHOST} \ - --prefix=/usr \ - --sysconfdir=/etc \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --localstatedir=/var/lib \ - ${myconf} --disable-maintainer-mode \ - --enable-debug || die + use doc \ + && myconf="--enable-gtk-doc" \ + || myconf="--disable-gtk-doc" + + use nls \ + && myconf="${myconf} --enable-nls" \ + || myconf="${myconf} --disable-nls" + + econf \ + --disable-maintainer-mode \ + --enable-debug \ + ${myconf} || die emake || die } src_install() { - make DESTDIR=${D} prefix=/usr \ - sysconfdir=/etc \ - infodir=/usr/share/info \ - mandir=/usr/share/man \ - localstatedir=/var/lib \ - install || die - + einstall || die dodoc AUTHORS COPYING ChangeL* INSTALL NEWS README* - } - - |