blob: 85ff579c9a33d02f5562e049c4d00bd4d8ae9fe4 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/stone/stone-2.2.ebuild,v 1.3 2004/06/10 00:49:23 agriffis Exp $
DESCRIPTION="A simple TCP/IP packet repeater"
HOMEPAGE="http://www.gcd.org/sengoku/stone/"
SRC_URI="http://www.gcd.org/sengoku/stone/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 amd64"
IUSE="ssl"
DEPEND="virtual/glibc
ssl? ( dev-libs/openssl )"
S=${WORKDIR}/${P}
src_compile() {
if use ssl ; then
emake \
SSL=/usr \
SSL_FLAGS="-DUSE_SSL -I/usr/include/openssl" \
SSL_LIBS="-ldl -L/usr/lib -lssl -lcrypto" \
linux-ssl || die
else
emake linux || die
fi
}
src_install() {
dobin stone
doman stone.1
dodoc README*
}
|