blob: 46c450fe291933574a9ed12e4a83a6e4362255b2 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/gonzui/gonzui-1.2.ebuild,v 1.7 2006/12/22 09:16:26 vapier Exp $
inherit eutils ruby
USE_RUBY="ruby18 ruby19"
DESCRIPTION="source code search engine"
HOMEPAGE="http://gonzui.sourceforge.net/"
SRC_URI="mirror://sourceforge/gonzui/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="ocaml"
DEPEND=">=virtual/ruby-1.8.2
>=sys-libs/db-4.2
>=dev-ruby/ruby-bdb-0.5.2
dev-ruby/ruby-progressbar
ocaml? ( dev-lang/ocaml )"
# perl? ( dev-perl/PPI ) # g-cpan.pl PPI
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-parallel.patch
cp "${FILESDIR}"/ebuild.rb "${S}"/langscan
sed -i \
-e "s/rubylib_DATA = /rubylib_DATA = ebuild.rb /" \
"${S}"/langscan/Makefile.in || die
}
src_install() {
ruby_src_install
mv "${D}"/etc/gonzuirc.sample "${D}"/etc/gonzuirc
doinitd "${FILESDIR}"/gonzui || die
keepdir /var/lib/gonzui
keepdir /var/log/gonzui
}
pkg_postinst() {
einfo "The database (gonzui.db) format has become incompatible with"
einfo "older versions."
einfo "Please restructure the database if you already have it."
}
|