diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2004-08-18 20:56:46 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2004-08-18 20:56:46 +0000 |
commit | ed6380c81c6b4a4e05d989d8f1cca89f4e39e72b (patch) | |
tree | 2b1826d5072f61edfe6e11d25da384f6e7bb5937 /net-libs/libhttpd-persistent | |
parent | Removed -amd64 comment (diff) | |
download | historical-ed6380c81c6b4a4e05d989d8f1cca89f4e39e72b.tar.gz historical-ed6380c81c6b4a4e05d989d8f1cca89f4e39e72b.tar.bz2 historical-ed6380c81c6b4a4e05d989d8f1cca89f4e39e72b.zip |
Version bump closes bug #55201
Diffstat (limited to 'net-libs/libhttpd-persistent')
4 files changed, 61 insertions, 3 deletions
diff --git a/net-libs/libhttpd-persistent/ChangeLog b/net-libs/libhttpd-persistent/ChangeLog index 208f5a920257..e6d1da4b2f50 100644 --- a/net-libs/libhttpd-persistent/ChangeLog +++ b/net-libs/libhttpd-persistent/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-libs/libhttpd-persistent # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/ChangeLog,v 1.9 2004/07/07 09:37:50 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/ChangeLog,v 1.10 2004/08/18 20:56:46 eradicator Exp $ + +*libhttpd-persistent-1.3p-r8 (18 Aug 2004) + + 18 Aug 2004; Jeremy Huddleston <eradicator@gentoo.org> + +libhttpd-persistent-1.3p-r8.ebuild: + Version bump closes bug #55201 *libhttpd-persistent-1.3p-r7 (07 Jul 2004) diff --git a/net-libs/libhttpd-persistent/Manifest b/net-libs/libhttpd-persistent/Manifest index ed9b40cb60a2..6bc08bba07bb 100644 --- a/net-libs/libhttpd-persistent/Manifest +++ b/net-libs/libhttpd-persistent/Manifest @@ -1,6 +1,8 @@ -MD5 411c887e3b874b593f4784d82c7c610c libhttpd-persistent-1.3p-r7.ebuild 1424 +MD5 56f29ee8a07f9316f7ae2ec73dc0bba6 ChangeLog 2355 MD5 cf721678e28743ea0fab7fed1afc8322 libhttpd-persistent-1.3p-r6.ebuild 1417 -MD5 47bab9a2d8769f365b6b51726005f4f4 ChangeLog 2180 MD5 34371b0b6264e8222d4666bf5895f5f7 metadata.xml 432 +MD5 411c887e3b874b593f4784d82c7c610c libhttpd-persistent-1.3p-r7.ebuild 1424 +MD5 e3568afbe5e41bc94a2d654043802c85 libhttpd-persistent-1.3p-r8.ebuild 1425 MD5 3d54fde5d128291ea5a6ae6dd4f9d840 files/digest-libhttpd-persistent-1.3p-r6 64 MD5 a43bd699e47de8bf6404b07890394b13 files/digest-libhttpd-persistent-1.3p-r7 64 +MD5 d59fcbd11fe6a68bf60fcba57b403351 files/digest-libhttpd-persistent-1.3p-r8 64 diff --git a/net-libs/libhttpd-persistent/files/digest-libhttpd-persistent-1.3p-r8 b/net-libs/libhttpd-persistent/files/digest-libhttpd-persistent-1.3p-r8 new file mode 100644 index 000000000000..ce51a909079a --- /dev/null +++ b/net-libs/libhttpd-persistent/files/digest-libhttpd-persistent-1.3p-r8 @@ -0,0 +1 @@ +MD5 72b7f4b3f688d918c771b4c833766b28 libhttpd-1.3p-h.tgz 156210 diff --git a/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild b/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild new file mode 100644 index 000000000000..c925dedc54eb --- /dev/null +++ b/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libhttpd-persistent/libhttpd-persistent-1.3p-r8.ebuild,v 1.1 2004/08/18 20:56:46 eradicator Exp $ + +MY_P="libhttpd-1.3p-h" +S="${WORKDIR}/libhttpd-1.3-persistent-h" + +DESCRIPTION="libhttpd-persistent is a modified version of David Hughes' libhttpd." +HOMEPAGE="http://www.deleet.de/projekte/daap/daapd/" +SRC_URI="http://www.deleet.de/projekte/daap/daapd/${MY_P}.tgz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64 ~sparc" +IUSE="" +DEPEND="" + +src_compile() { + econf || die + + # Package provided compilation is FUBAR + cd ${S}/src + + CFILES="protocol.c api.c version.c ip_acl.c select.c" + OFILES=${CFILES//.c/.o} + + for FILE in ${CFILES}; do + echo g++ ${CFLAGS} -D_OS_UNIX -fPIC -c ${FILE} + g++ ${CFLAGS} -D_OS_UNIX -fPIC -c ${FILE} || die + done + + echo "linking" + ar rc libhttpd-persistent.a ${OFILES} || die + ranlib libhttpd-persistent.a || die + + g++ -shared -Wl,-shared,-soname,libhttpd-persistent.so \ + ${OFILES} -o libhttpd-persistent.so || die +} + +src_install() { + # This pacakge doesn't respect anything autoconf-ish + dolib.a src/libhttpd-persistent.a + dolib.so src/libhttpd-persistent.so + + mkdir -p ${D}/usr/include/ + cp src/httpd-persistent.h ${D}/usr/include/ + chmod 644 ${D}/usr/include/httpd-persistent.h + + dodoc HISTORY License README doc/FAQ.txt doc/libhttpd.pdf +} |