blob: c3b37d80974f6a37fb78f326c8c4a963fb397e1e (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/epic4/epic4-1.0.1-r2.ebuild,v 1.3 2003/03/24 09:37:23 aliz Exp $
IUSE=""
DESCRIPTION="Epic4 IRC Client"
SRC_URI="ftp://prbh.org/pub/epic/EPIC4-PRODUCTION/${P}.tar.gz \
ftp://prbh.org/pub/epic/EPIC4-PRODUCTION/epic4-help-20030114.tar.gz"
HOMEPAGE="http://www.epicsol.org"
DEPEND=">=sys-libs/ncurses-5.2"
SLOT="0"
LICENSE="as-is"
KEYWORDS="x86 ppc sparc"
inherit flag-o-matic
replace-flags "-O?" "-O"
src_compile() {
econf --libexecdir=/usr/lib/misc || die
make || die
}
src_install () {
einstall \
sharedir=${D}/usr/share \
libexecdir=${D}/usr/lib/misc || die
rm ${D}/usr/bin/epic
dosym epic-EPIC4-${PV} /usr/bin/epic
dodoc BUG_FORM COPYRIGHT README KNOWNBUGS VOTES
docinto doc
cd doc
dodoc *.txt colors EPIC* IRCII_VERSIONS local_vars missing new-load
dodoc nicknames outputhelp server_groups SILLINESS TS4
dodir /usr/share/epic
tar xzvf ${DISTDIR}/epic4-help-20030114.tar.gz -C ${D}/usr/share/epic
}
pkg_postinst() {
einfo "If /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."
if [ ! -e /usr/share/epic/script/local ]; then
cp ${FILESDIR}/local /usr/share/epic/script/
fi
}
|