blob: 34d6698fa2acc678597356949369c072dee144a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/ctrlproxy/ctrlproxy-3.0.5.ebuild,v 1.2 2007/12/17 15:19:00 armin76 Exp $
DESCRIPTION="IRC proxy with multiserver and multiclient support"
HOMEPAGE="http://ctrlproxy.vernstok.nl/"
SRC_URI="http://ctrlproxy.vernstok.nl/releases/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~x86"
IUSE="ssl"
RESTRICT="test"
DEPEND=">=dev-libs/glib-2
dev-util/pkgconfig
ssl? ( net-libs/gnutls )"
src_install() {
emake DESTDIR="${D}" install install-doc || die "emake install failed"
}
|