blob: 5a2652ab1106f93a7d948f915d9271fd9a520054 (
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
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit eutils flag-o-matic
DESCRIPTION="low-level event loop management library for POSIX-based operating systems"
HOMEPAGE="http://liboop.ofb.net/"
SRC_URI="http://download.ofb.net/liboop/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~x86-macos"
IUSE="adns gnome tcl readline"
DEPEND="
adns? ( net-libs/adns )
gnome? ( dev-libs/glib:2 )
tcl? ( dev-lang/tcl:0 )
readline? ( sys-libs/readline:0 )"
src_configure() {
export ac_cv_path_PROG_LDCONFIG=true
econf \
$(use_with adns) \
$(use_with gnome) \
$(use_with tcl tcltk) \
$(use_with readline) \
--without-libwww \
--disable-static
}
src_compile() {
emake -j1
}
src_install() {
default
prune_libtool_files
}
|