blob: a08430d13f1fb92e74c6b50f004cc99d2f77aba9 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit base toolchain-funcs
DESCRIPTION="A shell-level interface to TCP sockets"
HOMEPAGE="http://www.jnickelsen.de/socket/"
SRC_URI="http://www.jnickelsen.de/${PN}/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux"
IUSE="examples"
PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
dobin socket
doman socket.1
dodoc BLURB CHANGES README
if use examples; then
docinto examples
dodoc scripts/*
fi
}
|