blob: 43003dca33b524111ad276ff6dc5d8426ab2c532 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# 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.3 2001/08/30 17:31:35 pm 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}"
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
}
src_install() {
try make prefix=${D}/usr install
dodoc ChangeLog
}
|