blob: bf97cb6b51ebe0bc01632bb7dc1695f073484103 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/namazu/namazu-2.0.18.ebuild,v 1.2 2008/03/25 20:02:46 opfer Exp $
inherit elisp-common
IUSE="chasen cjk emacs kakasi nls tk"
DESCRIPTION="Namazu is a full-text search engine"
HOMEPAGE="http://www.namazu.org/"
SRC_URI="http://www.namazu.org/stable/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~ppc64 x86"
SLOT="0"
DEPEND=">=dev-perl/File-MMagic-1.20
chasen? ( app-text/chasen )
cjk? ( app-i18n/nkf )
emacs? ( virtual/emacs )
kakasi? ( dev-perl/Text-Kakasi )
nls? ( sys-devel/gettext )
tk? (
dev-lang/tk
www-client/lynx
)"
SITEFILE=50${PN}-gentoo.el
src_unpack() {
unpack ${A}
cd "${S}"
sed -i "s:\(rm -f \$(filterdir).*$\):# \1:" filter/Makefile.in
}
src_compile() {
local myconf
use tk && myconf="--with-namazu=/usr/bin/namazu
--with-mknmz=/usr/bin/mknmz
--with-indexdir=/var/lib/namazu/index"
econf \
$(use_enable nls) \
$(use_enable tk tknamazu) \
${myconf} \
|| die
emake || die
if use emacs; then
cd lisp
elisp-comp {namazu,gnus-nmz-1}.el || die "elisp-comp failed"
fi
}
src_install () {
emake DESTDIR="${D}" install || die
rm -rf "${D}"/usr/share/namazu/{doc,etc}
dodoc AUTHORS CREDITS ChangeLog* HACKING* NEWS README* THANKS TODO
dohtml -r doc/*
insinto /usr/share/doc/${P}
doins etc/*.png
if use emacs; then
elisp-install ${PN} lisp/{namazu,gnus-nmz-1}.el{,c} \
|| die "elisp-install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
|| die "elisp-site-file-install failed"
docinto lisp
dodoc lisp/ChangeLog*
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
|