diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 12:05:20 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 12:05:20 +0000 |
commit | c5e53db0be2e3534202f4ca04a105b0605cb64fd (patch) | |
tree | 6b04ee29b8b080b619e357eb61291dd2f9d8398d /dev-libs/libol | |
parent | A=-fix, try->die,... (diff) | |
download | historical-c5e53db0be2e3534202f4ca04a105b0605cb64fd.tar.gz historical-c5e53db0be2e3534202f4ca04a105b0605cb64fd.tar.bz2 historical-c5e53db0be2e3534202f4ca04a105b0605cb64fd.zip |
A=-fix, try->die, tab-fixes, stylefixes, ...
Diffstat (limited to 'dev-libs/libol')
-rw-r--r-- | dev-libs/libol/libol-0.2.23.ebuild | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/dev-libs/libol/libol-0.2.23.ebuild b/dev-libs/libol/libol-0.2.23.ebuild index db80b3ca1937..24f0562c1eef 100644 --- a/dev-libs/libol/libol-0.2.23.ebuild +++ b/dev-libs/libol/libol-0.2.23.ebuild @@ -1,30 +1,29 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Bruce Locke <blocke@shivan.org> -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libol/libol-0.2.23.ebuild,v 1.4 2001/08/31 03:23:38 pm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libol/libol-0.2.23.ebuild,v 1.5 2001/11/10 12:05:20 hallski Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="Support library for syslog-ng" -SRC_URI="http://www.balabit.hu/downloads/libol/0.2/${A}" +SRC_URI="http://www.balabit.hu/downloads/libol/0.2/${P}.tar.gz" HOMEPAGE="http://www.balabit.hu/en/products/syslog-ng/" #DEPEND=">=" src_compile() { - - try ./configure --host=${CHOST} --prefix=/usr --enable-shared --enable-static --disable-libtool-lock - try make CFLAGS="${CFLAGS}" ${MAKEOPTS} prefix=${D}/usr all - + ./configure --host=${CHOST} \ + --prefix=/usr \ + --enable-shared \ + --enable-static \ + --disable-libtool-lock + assert + + make CFLAGS="${CFLAGS}" ${MAKEOPTS} prefix=${D}/usr all || die } src_install() { + make prefix=${D}/usr install || die - try make prefix=${D}/usr install - dodoc ChangeLog - + dodoc ChangeLog } - - - |