blob: eea06377b3beea0bbce74c3e3401826cfb0372c2 (
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
36
37
38
39
40
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/ctrlproxy/ctrlproxy-2.7_pre2.ebuild,v 1.1 2005/02/07 18:25:01 agriffis Exp $
inherit flag-o-matic
MY_P=${P/_pre/-test}
DESCRIPTION="IRC proxy with multiserver and multiclient support"
HOMEPAGE="http://jelmer.vernstok.nl/${PN}/"
SRC_URI="http://jelmer.vernstok.nl/releases/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~alpha ~ppc ~ia64"
IUSE="ssl doc"
DEPEND=">=dev-libs/glib-2
dev-libs/popt
dev-libs/libxml2
dev-libs/tdb
dev-libs/libpcre
ssl? ( dev-libs/openssl )"
S=${WORKDIR}/${MY_P}
src_compile() {
use alpha && append-flags -fPIC
econf || die
emake || die
}
src_install() {
make install \
DESTDIR=${D} \
man1dir=/usr/share/man/man1 \
man5dir=/usr/share/man/man5 \
docdir=/usr/share/doc/${P} || die
gzip ${D}/usr/share/doc/${P}/*
dodoc ctrlproxyrc.example
}
|