blob: ab8431593e9f6a8ea093bca17b1073fa60c59787 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils readme.gentoo toolchain-funcs
DESCRIPTION="UNIX compatible IRC bot programmed in the C language"
HOMEPAGE="http://www.energymech.net/"
SRC_URI="http://www.energymech.net/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="debug session tcl"
DOC_CONTENTS="You can find a compressed sample config file at /usr/share/doc/${PF}"
src_prepare() {
sed -i \
-e 's: "help/":"/usr/share/energymech/help/":' \
-e 's: "messages/":"/usr/share/energymech/messages/":' \
src/config.h.in || die
# Respect CFLAGS and LDFLAGS
sed -i \
-e '/^LFLAGS/s/\$(PIPEFLAG)/\0 \$(OPTIMIZE) \$(LDFLAGS)/' \
-e '/^GDBFLAG/d' \
-e '/^PIPEFLAG/d' \
src/Makefile.in || die
epatch_user
}
myconf() {
echo ./configure $*
./configure $* || die "./configure failed"
}
src_configure() {
myconf \
--with-alias \
--with-botnet \
--with-bounce \
--with-ctcp \
--with-dccfile \
--with-dynamode \
--with-dyncmd \
--with-greet \
--with-ircd_ext \
--with-md5 \
--with-newbie \
--with-note \
--with-notify \
--with-rawdns \
--with-redirect \
--with-seen \
--with-stats \
--with-telnet \
--with-toybox \
--with-trivia \
--without-uptime \
--with-web \
--with-wingate \
--without-profiling \
$(use_with tcl) \
$(use_with session) \
$(use_with debug)
}
src_compile() {
emake -C src CC="$(tc-getCC)" OPTIMIZE="${CFLAGS}"
}
src_install() {
dobin src/energymech
insinto /usr/share/energymech
doins -r help
insinto /usr/share/energymech/messages
doins messages/*.txt
dodoc sample.* README* TODO VERSIONS CREDITS checkmech
readme.gentoo_create_doc
}
|