diff options
author | Marinus Schraal <foser@gentoo.org> | 2003-01-25 00:54:00 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2003-01-25 00:54:00 +0000 |
commit | 477a4bafb49cfdb231a9d2eb925ebf8a270addfa (patch) | |
tree | 6b7d3209df7b7a82e0c8841681df9b6b88c5ead6 /gnome-base/libghttp | |
parent | version bump. many bugfixes. (diff) | |
download | gentoo-2-477a4bafb49cfdb231a9d2eb925ebf8a270addfa.tar.gz gentoo-2-477a4bafb49cfdb231a9d2eb925ebf8a270addfa.tar.bz2 gentoo-2-477a4bafb49cfdb231a9d2eb925ebf8a270addfa.zip |
bugfix
Diffstat (limited to 'gnome-base/libghttp')
-rw-r--r-- | gnome-base/libghttp/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-base/libghttp/files/digest-libghttp-1.0.9-r3 | 1 | ||||
-rw-r--r-- | gnome-base/libghttp/libghttp-1.0.9-r3.ebuild | 40 |
3 files changed, 48 insertions, 1 deletions
diff --git a/gnome-base/libghttp/ChangeLog b/gnome-base/libghttp/ChangeLog index 56741af0212a..aefdfd9adfe6 100644 --- a/gnome-base/libghttp/ChangeLog +++ b/gnome-base/libghttp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-base/libghttp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/gnome-base/libghttp/ChangeLog,v 1.6 2002/12/13 10:56:53 blizzy Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libghttp/ChangeLog,v 1.7 2003/01/25 00:54:00 foser Exp $ + +*libghttp-1.0.9-r2 (24 Jan 2003) + + 24 Jan 2003; foser <foser@gentoo.org> libghttp-1.0.9-r3.ebuild : + Now copies extra headers needed for intermezzo (#11501) + Now uses gnome.org eclass, fixed LICENSE 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords diff --git a/gnome-base/libghttp/files/digest-libghttp-1.0.9-r3 b/gnome-base/libghttp/files/digest-libghttp-1.0.9-r3 new file mode 100644 index 000000000000..5977c599aa4d --- /dev/null +++ b/gnome-base/libghttp/files/digest-libghttp-1.0.9-r3 @@ -0,0 +1 @@ +MD5 0690e7456f9a15c635f240f3d6d5dab2 libghttp-1.0.9.tar.gz 147094 diff --git a/gnome-base/libghttp/libghttp-1.0.9-r3.ebuild b/gnome-base/libghttp/libghttp-1.0.9-r3.ebuild new file mode 100644 index 000000000000..2886381e1ae7 --- /dev/null +++ b/gnome-base/libghttp/libghttp-1.0.9-r3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-base/libghttp/libghttp-1.0.9-r3.ebuild,v 1.1 2003/01/25 00:54:00 foser Exp $ + +GNOME_TARBALL_SUFFIX="gz" +inherit libtool gnome.org + +S=${WORKDIR}/${P} +DESCRIPTION="GNOME http client library" +LICENSE="LGPL-2 GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc" + +HOMEPAGE="http://www.gnome.org/" + +DEPEND="virtual/glibc" + +src_compile() { + elibtoolize + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib || die + + emake || die +} + +src_install() { + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die + + # headers needed for Intermezzo (bug 11501) + insinto /usr/include/ghttp-1.0/ + doins http*.h + + dodoc AUTHORS COPYING* ChangeLog README NEWS TODO + dohtml doc/*.html +} |