diff options
author | Donny Davies <woodchip@gentoo.org> | 2002-10-24 01:40:38 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2002-10-24 01:40:38 +0000 |
commit | 9f7603af1539fe0253919ba587d816c1b6c329a9 (patch) | |
tree | 5c82e5ca9a6261c6aa2b7c1f501dcd8e98da84c7 /dev-libs/libol | |
parent | hopefully fix #9278 (diff) | |
download | historical-9f7603af1539fe0253919ba587d816c1b6c329a9.tar.gz historical-9f7603af1539fe0253919ba587d816c1b6c329a9.tar.bz2 historical-9f7603af1539fe0253919ba587d816c1b6c329a9.zip |
hopefully fix #9278
Diffstat (limited to 'dev-libs/libol')
-rw-r--r-- | dev-libs/libol/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libol/files/digest-libol-0.3.5 | 1 | ||||
-rw-r--r-- | dev-libs/libol/libol-0.3.5.ebuild | 27 |
3 files changed, 34 insertions, 1 deletions
diff --git a/dev-libs/libol/ChangeLog b/dev-libs/libol/ChangeLog index a00963d91e70..5efb0dbeea6e 100644 --- a/dev-libs/libol/ChangeLog +++ b/dev-libs/libol/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libol # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libol/ChangeLog,v 1.5 2002/10/12 07:12:35 blocke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libol/ChangeLog,v 1.6 2002/10/24 01:40:38 woodchip Exp $ + +*libol-0.3.5 (23 Oct 2002) + + 23 Oct 2002; Donny Davies <woodchip@gentoo.org.org> libol-0.3.5.ebuild: + Bug fix release. Thanks rkilgore@hotpop.com, wylie@geekasylum.org; #9278. *libol-0.3.4 (12 Oct 2002) diff --git a/dev-libs/libol/files/digest-libol-0.3.5 b/dev-libs/libol/files/digest-libol-0.3.5 new file mode 100644 index 000000000000..a5dd92af925d --- /dev/null +++ b/dev-libs/libol/files/digest-libol-0.3.5 @@ -0,0 +1 @@ +MD5 48dc24ef039b34258a031c9102abb5d0 libol-0.3.5.tar.gz 197346 diff --git a/dev-libs/libol/libol-0.3.5.ebuild b/dev-libs/libol/libol-0.3.5.ebuild new file mode 100644 index 000000000000..01668aee4d48 --- /dev/null +++ b/dev-libs/libol/libol-0.3.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libol/libol-0.3.5.ebuild,v 1.1 2002/10/24 01:40:38 woodchip Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Support library for syslog-ng" +SRC_URI="http://www.balabit.hu/downloads/libol/0.3/${P}.tar.gz" +HOMEPAGE="http://www.balabit.hu/en/products/syslog-ng/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc ~sparc64" + +DEPEND="virtual/glibc" + +src_compile() { + econf \ + --enable-shared \ + --enable-static \ + --disable-libtool-lock || die + emake CFLAGS="${CFLAGS}" all || die +} + +src_install() { + einstall || die + dodoc ChangeLog +} |