blob: d5cb37946dac22af640c0d3e3c08f1d8f4d0af83 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcli/libcli-1.9.7.ebuild,v 1.3 2014/03/03 23:38:36 pacho Exp $
EAPI=5
inherit eutils multilib toolchain-funcs
DESCRIPTION="Cisco-style (telnet) command-line interface library"
HOMEPAGE="http://sites.dparrish.com/libcli"
SRC_URI="https://github.com/dparrish/libcli/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux"
IUSE=""
DEPEND=""
RDEPEND=""
src_prepare() {
epatch "${FILESDIR}/${PN}-1.9.7-libdir.patch" \
"${FILESDIR}/${PN}-1.9.4-ldflags.patch"
}
src_compile() {
emake OPTIM="" DEBUG="" \
CC="$(tc-getCC)" AR="$(tc-getAR)"
}
src_install() {
emake DESTDIR="${ED}" PREFIX="/usr" \
libdir="/usr/$(get_libdir)" install
dobin clitest
dodoc README
}
|