summaryrefslogtreecommitdiff
blob: 5449d403e40c3e0db443fdbb3168031a4a52e81a (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/epic4/epic4-2.6.ebuild,v 1.3 2007/03/19 20:36:10 grobian Exp $

inherit flag-o-matic eutils

HELP_V="20050315"

DESCRIPTION="Epic4 IRC Client"
HOMEPAGE="http://epicsol.org/"
SRC_URI="ftp://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/${P}.tar.bz2
	ftp://prbh.org/pub/epic/EPIC4-PRODUCTION/epic4-help-${HELP_V}.tar.gz
	mirror://gentoo/epic4-local.bz2"

LICENSE="as-is"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc x86"
IUSE="ipv6 perl ssl"

DEPEND=">=sys-libs/ncurses-5.2
	perl? ( >=dev-lang/perl-5.6.1 )
	ssl? ( >=dev-libs/openssl-0.9.5 )"

pkg_setup() {
	if use perl && built_with_use dev-lang/perl ithreads
	then
		error "You need perl compiled with USE=\"-ithreads\" to be able to compile epic4."
		die "perl with USE=\"-ithreads\" needed"
	fi
}

src_unpack() {
	unpack ${A}
	cd ${S}

	epatch ${FILESDIR}/epic-defaultserver.patch

	rm -f ${WORKDIR}/help/Makefile
	find ${WORKDIR}/help -type d -name CVS -print0 | xargs -0 rm -r
}

src_compile() {
	replace-flags "-O?" "-O"

	econf \
		--libexecdir=/usr/lib/misc \
		$(use_with ipv6) \
		$(use_with perl) \
		$(use_with ssl) \
		|| die "econf failed"
	emake || die "make failed"
}

src_install () {
	einstall \
		sharedir=${D}/usr/share \
		libexecdir=${D}/usr/lib/misc || die "einstall failed"

	dodoc BUG_FORM COPYRIGHT README KNOWNBUGS VOTES

	cd ${S}/doc
	docinto doc
	dodoc \
		*.txt colors EPIC* IRCII_VERSIONS local_vars missing new-load \
		nicknames outputhelp SILLINESS TS4

	insinto /usr/share/epic/help
	doins -r ${WORKDIR}/help/* || die "doins failed"
}

pkg_postinst() {
	if [ ! -f ${ROOT}/usr/share/epic/script/local ]
	then
		einfo "/usr/share/epic/script/local does not exist, I will now"
		einfo "create it. If you do not like the look/feel of this file, or"
		einfo "if you'd prefer to use your own script, simply remove this"
		einfo "file.  If you want to prevent this file from being installed"
		einfo "in the future, simply create an empty file with this name."
		cp ${WORKDIR}/epic4-local ${ROOT}/usr/share/epic/script/local
		echo
		einfo "This provided local startup script adds a number of nifty"
		einfo "features to Epic including tab completion, a comprehensive set"
		einfo "of aliases, and channel-by-channel logging.  To prevent"
		einfo "unintentional conflicts with your own scripting, if either the"
		einfo "~/.ircrc or ~/.epicrc script files exist, then the local script"
		einfo "is *not* run.  If you like the script but want to make careful"
		einfo "additions (such as selecting your usual servers or setting your"
		einfo "nickname), simply copy /usr/share/epic/script/local to ~/.ircrc"
		einfo "and then add your additions to the copy."
	fi

	# Fix for bug 59075
	chmod 755 ${ROOT}/usr/share/epic/help
}