blob: 06c7280a2b4dc5ff29582e490f6b6962d86b08a6 (
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
42
43
44
45
46
47
48
49
50
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libmix/libmix-2.05-r5.ebuild,v 1.7 2011/04/11 22:28:12 jer Exp $
EAPI="2"
inherit autotools base multilib toolchain-funcs
DESCRIPTION="Programs Crypto/Network/Multipurpose Library"
HOMEPAGE="http://mixter.void.ru/"
SRC_URI="http://mixter.void.ru/${P/.}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="static-libs"
#IUSE="net2 static-libs"
#DEPEND="net2? ( net-libs/libpcap net-libs/libnet:1.0 )"
#RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}-v${PV}
PATCHES=(
"${FILESDIR}"/${P}-fix-pattern.patch
"${FILESDIR}"/${P}-gentoo.patch
"${FILESDIR}"/${P}-libnet.patch
"${FILESDIR}"/${P}-gentoo2.patch
)
DOCS=( CHANGES )
pkg_setup() {
tc-export CC CXX
}
src_prepare(){
base_src_prepare
eautoreconf
}
# net-libs/libnet doesn't provide shared libs, cannot be used currently
src_configure() {
econf \
--libdir=/usr/$(get_libdir) \
$(use_enable static-libs static) \
--without-net2
# $(use_with net2)
}
|