diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-09-27 13:43:22 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-09-27 13:43:22 +0000 |
commit | bbf2dbd64de9a248fcf99fa32c4f4bf57d327740 (patch) | |
tree | cd0973988394b235a5324514a0cb9e43f945311a | |
parent | Changed the softlimit from 2MB to 8MB due to ssl enabled ucspi-tcp (diff) | |
download | historical-bbf2dbd64de9a248fcf99fa32c4f4bf57d327740.tar.gz historical-bbf2dbd64de9a248fcf99fa32c4f4bf57d327740.tar.bz2 historical-bbf2dbd64de9a248fcf99fa32c4f4bf57d327740.zip |
new version
-rw-r--r-- | gnome-base/oaf/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-base/oaf/files/digest-oaf-0.6.10 | 1 | ||||
-rw-r--r-- | gnome-base/oaf/oaf-0.6.10.ebuild | 60 |
3 files changed, 67 insertions, 1 deletions
diff --git a/gnome-base/oaf/ChangeLog b/gnome-base/oaf/ChangeLog index 0af2a58933e2..8521d1bb9697 100644 --- a/gnome-base/oaf/ChangeLog +++ b/gnome-base/oaf/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnome-base/oaf # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/gnome-base/oaf/ChangeLog,v 1.4 2002/04/09 22:07:33 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/oaf/ChangeLog,v 1.5 2002/09/27 13:43:22 azarah Exp $ + +*oaf-0.6.10 (27 Sep 2002) + + 27 Sep 2002; Martin Schlemmer <azarah@gentoo.org> : + Update to use gnome.org eclass. Update version. 9 Apr 2002; M.Schlemmer <azarah@gentoo.org> oaf-0.6.8-r1.ebuild : diff --git a/gnome-base/oaf/files/digest-oaf-0.6.10 b/gnome-base/oaf/files/digest-oaf-0.6.10 new file mode 100644 index 000000000000..cc166b1eeb12 --- /dev/null +++ b/gnome-base/oaf/files/digest-oaf-0.6.10 @@ -0,0 +1 @@ +MD5 ed9aa2ceb70bba34034b3134b22d2729 oaf-0.6.10.tar.bz2 435621 diff --git a/gnome-base/oaf/oaf-0.6.10.ebuild b/gnome-base/oaf/oaf-0.6.10.ebuild new file mode 100644 index 000000000000..7ff999cc33bd --- /dev/null +++ b/gnome-base/oaf/oaf-0.6.10.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/gnome-base/oaf/oaf-0.6.10.ebuild,v 1.1 2002/09/27 13:43:22 azarah Exp $ + +inherit gnome.org libtool + +S=${WORKDIR}/${P} +DESCRIPTION="Object Activation Framework for GNOME" +HOMEPAGE="http://www.gnome.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc sparc sparc64" + +RDEPEND="virtual/glibc + >=dev-libs/popt-1.5 + >=gnome-base/ORBit-0.5.10-r1 + >=dev-libs/libxml-1.8.15" + +DEPEND="${RDEPEND} + >=sys-devel/perl-5 + dev-util/indent + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + + cd ${S} + cp -a configure configure.orig + sed -e "s:perl5\.00404:perl5.6.1:" configure.orig > configure + rm configure.orig +} + +src_compile() { + elibtoolize + + local myconf="" + use nls || myconf="--disable-nls" + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + ${myconf} || die + + emake || die +} + +src_install() { + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die + + dodoc AUTHORS COPYING* ChangeLog README + dodoc NEWS TODO +} + |