41 lines
860 B
Bash
41 lines
860 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
inherit eutils autotools
|
|
|
|
DESCRIPTION="Lightweight OSC (Open Sound Control) implementation"
|
|
HOMEPAGE="http://plugin.org.uk/liblo"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~ppc-macos"
|
|
IUSE="doc ipv6 static-libs"
|
|
|
|
RESTRICT="test"
|
|
|
|
DEPEND="doc? ( app-doc/doxygen )"
|
|
|
|
src_prepare() {
|
|
# don't build examples by default
|
|
sed -i '/^SUBDIRS =/s/examples//' Makefile.am || die
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
use doc || export ac_cv_prog_HAVE_DOXYGEN=false
|
|
|
|
# switching threads on/off breaks ABI, bugs #473282, #473286 and #473356
|
|
econf \
|
|
$(use_enable static-libs static) \
|
|
$(use_enable ipv6) \
|
|
--enable-threads
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
prune_libtool_files
|
|
}
|