blob: 5cefa4a2bbc5da895d1a86c36721d93fee2822d2 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/ezbounce/ezbounce-1.04c.ebuild,v 1.1 2007/04/10 14:11:40 armin76 Exp $
inherit eutils
DESCRIPTION="ezbounce is a small IRC bouncer"
HOMEPAGE="http://druglord.freelsd.org/ezbounce/"
SRC_URI="http://druglord.freelsd.org/${PN}/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="ssl"
DEPEND=">=net-misc/mdidentd-1.04c
ssl? ( dev-libs/openssl )"
src_compile() {
econf $(use_with ssl) || die
emake CXX_OPTIMIZATIONS="${CXXFLAGS}" || die
}
src_install() {
dobin ezbounce || die
dosym ezbounce /usr/bin/ezb
dodoc CHANGES TODO README ezb.conf sample.*
doman misc/ezbounce.1
}
|