summaryrefslogtreecommitdiff
blob: 163e46d7ee5c28657ad54d6306dd93222731dfe6 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="Multiuser IRC proxy with ssl support"
SRC_URI="http://download.berlios.de/bip/${P}.tar.bz2"
HOMEPAGE="http://bip.berlios.de/"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86"
IUSE="ssl"

DEPEND="ssl? ( dev-libs/openssl )"

src_compile() {
	local myconf=""
	use ssl || myconf="--disable-ssl"

	econf ${myconf} || die "econf failed"
	make || die "make failed"
}

src_install() {
	make DESTDIR="${D}" install || die "make install failed"
	rm -rf "${D}/usr/share/doc/bip/"

	dodoc AUTHORS ChangeLog README IDEAS NEWS TODO
	docinto samples
	dodoc samples/*
}