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/sys-libs/libseccomp/libseccomp-1.0.0.ebuild

39 lines
922 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libseccomp/libseccomp-1.0.0.ebuild,v 1.2 2012/11/12 21:21:36 vapier Exp $
# Note: USE=static-libs isn't great -- only PIC objects are provided.
EAPI="4"
inherit eutils
DESCRIPTION="high level interface to Linux seccomp filter"
HOMEPAGE="http://sourceforge.net/projects/libseccomp/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs tools"
src_prepare() {
sed -i \
-e "/^SUBDIRS_BUILD/s:=.*:= src $(usex tools tools ''):" \
Makefile || die
tc-export AR CC
export GCC=${CC}
}
src_test() {
emake SUBDIRS_BUILD='tools tests'
cd tests
./regression
}
src_install() {
default
use tools && dobin tools/{bpf_{disasm,sim},sys_{inspector,resolver}}
use static-libs && dolib.a src/libseccomp.a
}