You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-libs/libosmocore/libosmocore-9999.ebuild

43 lines
1.0 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libosmocore/libosmocore-9999.ebuild,v 1.6 2014/11/03 15:37:14 zerochaos Exp $
EAPI=5
inherit autotools eutils git-2
DESCRIPTION="Utility functions for OsmocomBB, OpenBSC and related projects"
HOMEPAGE="http://bb.osmocom.org/trac/wiki/libosmocore"
EGIT_REPO_URI="git://git.osmocom.org/${PN}.git"
LICENSE="GPL-2 LGPL-3"
SLOT="0"
KEYWORDS=""
#IUSE="embedded pcsc"
IUSE="embedded"
RDEPEND="sys-apps/pcsc-lite
embedded? ( sys-libs/talloc )"
DEPEND="${RDEPEND}
app-doc/doxygen"
src_prepare() {
# set correct version in pkgconfig files
sed -i "s/UNKNOWN/${PV}/" git-version-gen || die
epatch "${FILESDIR}"/${PN}-0.6.0-automake-1.13.patch
eautoreconf
}
src_configure() {
econf \
$(use_enable embedded)
#$(use_enable pcsc)
}
src_install() {
default
# install to correct documentation directory
mv "${ED}"/usr/share/doc/${PN} "${ED}"/usr/share/doc/${PF} || die
}