blob: f1134e1fe6af87cd90d4d8482c2baa302305eebf (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libcrafter/libcrafter-0.2_p20140626.ebuild,v 1.2 2014/06/26 23:06:46 jer Exp $
EAPI=5
inherit eutils
DESCRIPTION="a high level library for C++ designed to make easier the creation and decoding of network packets"
HOMEPAGE="https://code.google.com/p/libcrafter/"
SRC_URI="https://dev.gentoo.org/~jer/libcrafter-${PV}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="pcap static-libs"
DEPEND="
pcap? ( net-libs/libpcap )
"
S=${WORKDIR}/${P}/${PN}
src_configure() {
econf \
$(use_enable static-libs static) \
$(use_with pcap libpcap)
}
src_install() {
default
prune_libtool_files
}
|