blob: a421ce0e8f2b976a4c6e40f3dd065fc486f262a2 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/onis/onis-0.8.0.ebuild,v 1.1 2005/04/22 15:21:29 swegener Exp $
inherit eutils
DESCRIPTION="onis not irc stats"
HOMEPAGE="http://verplant.org/onis/"
SRC_URI="http://verplant.org/${PN}/${P}.tar.bz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc"
IUSE=""
RDEPEND="dev-lang/perl"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/0.6.0-nochdir.patch
sed -i -e s:lang/:/usr/share/onis/lang/: onis.conf || die "sed failed"
}
src_install () {
eval $(perl -V:installprivlib)
dobin onis || die "dobin failed"
insinto "${installprivlib}"
doins -r lib/Onis || die "doins failed"
insinto /usr/share/onis
doins -r lang reports/* || die "doins failed"
dodoc CHANGELOG README THANKS onis.conf users.conf
}
pkg_postinst() {
einfo
einfo "The onis themes have been installed in /usr/share/onis/*-theme"
einfo "You can find a sample configuration at /usr/share/doc/${PF}/onis.conf.gz"
einfo
}
|