blob: 152eabbe01fbe5da393e68e63f254e5399cef4bd (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/eggdrop/eggdrop-1.6.15.ebuild,v 1.12 2004/06/07 04:13:40 agriffis Exp $
inherit fixheadtails eutils
DESCRIPTION="An IRC bot extensible with C or Tcl."
HOMEPAGE="http://www.eggheads.org/"
SRC_URI="ftp://ftp.eggheads.org/pub/eggdrop/source/1.6/eggdrop${PV}.tar.gz"
KEYWORDS="x86 sparc mips ia64 ppc"
LICENSE="GPL-2"
SLOT="0"
IUSE="debug static ipv6"
DEPEND="dev-lang/tcl"
pre_pkg() {
use ipv6 && \
ewarn "Note: If eggdrop is built with ipv6 support, the dns.so module is"
ewarn "not built."
}
src_unpack() {
unpack ${A}
mv ${WORKDIR}/eggdrop${PV} ${WORKDIR}/${P}
epatch ${FILESDIR}/eggdrop-1.6.15-config.patch
epatch ${FILESDIR}/eggdrop-1.6.15-botchk.patch
epatch ${FILESDIR}/eggdrop-1.6.15-configure-in.patch
epatch ${FILESDIR}/eggdrop-1.6.15-potential-undef-tm-struct.patch
cd ${WORKDIR}/${P}
ht_fix_file configure aclocal.m4
autoconf || die "autoconf failed?!"
}
src_compile() {
local mytarg myconf
# Sets eggdrop to use ipv6
use ipv6 && myconf="${myconf} --enable-ipv6"
./configure \
--host=${CHOST} \
--disable-cc-optimization \
${myconf} || die "./configure failed"
make config || die "module config failed"
if use static; then
make static || die "make static failed"
fi
if use debug; then
make debug || die "make debug failed"
fi
make || die "make failed"
}
src_install() {
local a
make DEST=${D}/opt/eggdrop install
for a in doc/*
do
[ -f $a ] && dodoc $a
done
for a in doc/html/*
do
[ -f $a ] && dohtml $a
done
dobin ${FILESDIR}/eggdrop-installer
doman doc/man1/eggdrop.1
}
pkg_postinst() {
einfo "Please run /usr/bin/eggdrop-installer to install your eggdrop bot."
}
|