blob: 8dc495a1e86b3d9eeedf92eb24c836efb8ff843f (
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
|
# 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.2.ebuild,v 1.1 2007/04/16 21:19:26 armin76 Exp $
inherit flag-o-matic
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-2"
SLOT="0"
KEYWORDS="~alpha ~ia64 ~ppc ~x86"
IUSE="ssl"
RESTRICT="test"
DEPEND=">=dev-libs/glib-2
dev-libs/popt
dev-libs/libxml2
dev-libs/libpcre
dev-util/pkgconfig
ssl? ( net-libs/gnutls )"
src_compile() {
# hack alert
append-flags -fPIC
econf || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install || die "emake install failed"
}
|