summaryrefslogtreecommitdiff
blob: 4db0a22bb03eb96ed68c7a4d72402b0ee2a72844 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# 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-r2.ebuild,v 1.1 2004/02/03 03:02:49 zul Exp $

inherit fixheadtails

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
http://gentoo.mirror.at.stealer.net/files/${P}-STEALER.net.patch.bz2
		http://www.egghelp.org/files/patches/eggdrop${PV}-ssl.fixed.diff.gz"
KEYWORDS="~x86 ~sparc ~mips ~ia64"

LICENSE="GPL-2"
SLOT="0"

IUSE="debug static ipv6 ssl"
DEPEND="dev-lang/tcl
	ssl? ( dev-libs/openssl )"

pre_pkg() {
	use ipv6 && \
		ewarn "Note: If eggdrop is built with ipv6 support, the dns.so module is"
		ewarn "not built."

	use mysql && \
		ewarn "Note: for this release mysql has been temporarily disabled."
}

src_unpack()  {

	unpack ${A}
	use ssl && epatch eggdrop${PV}-ssl.fixed.diff

	mv ${WORKDIR}/eggdrop${PV} ${WORKDIR}/${P}

	epatch ${FILESDIR}/${P}-config.patch
	epatch ${FILESDIR}/${P}-botchk.patch
	epatch ${FILESDIR}/${P}-configure-in.patch
	epatch ${FILESDIR}/${P}-potential-undef-tm-struct.patch
	epatch ${P}-STEALER.net.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"
	use mysql || echo mysql >>disabled_modules
	use ssl && myconf="${myconf} --with-ssl"
	./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

	cd src/mod
	for a in *.mod
	do
		for b in README UPDATES INSTALL TODO CONTENTS
		do
			[ -f $a/$b ] && newdoc $a/$b $b.$a
		done
	done
	cd ${S}

	dodoc src/mod/botnetop.mod/botnetop.conf src/mod/gseen.mod/gseen.conf
	dodoc src/mod/mc_greet.mod/mc_greet.conf src/mod/stats.mod/stats.conf
	dodoc src/mod/away.mod/away.doc src/mod/rcon.mod/matchbot.tcl

	for a in doc/html/*
	do
		[ -f $a ] && dohtml $a
	done

	dobin ${FILESDIR}/eggdrop-installer
	doman doc/man1/eggdrop.1
}

pkg_postinfo() {
	einfo "Please run /usr/bin/eggdrop-insaller to install your eggdrop bot."

	use ssl && \
		einfo "You must ad 'set use-ssl [0/1]' to your bot.conf to disable/"
		einfo "enable SSL connectivity."
}