blob: 4e62182e0dadd0b694174ed097f355f324ad1993 (
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/beagle/beagle-0.2.8.ebuild,v 1.1 2006/08/18 02:14:29 metalgod Exp $
inherit gnome.org eutils autotools mono
DESCRIPTION="search tool that ransacks your personal information space to find whatever you're looking for"
HOMEPAGE="http://www.beagle-project.org/"
LICENSE="MIT Apache-1.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="chm debug evo gtk ole pdf python"
RDEPEND="
>=dev-lang/mono-1.1.16.1
app-shells/bash
app-arch/zip
sys-devel/gettext
>=x11-libs/gtk+-2.6.0
>=dev-libs/atk-1.2.4
>=dev-libs/gmime-2.2.1
>=dev-dotnet/gtk-sharp-2.8
>=gnome-base/librsvg-2.0
>=media-libs/libexif-0.6.0
>=dev-libs/libxml2-2.6.19
|| ( >=dev-db/sqlite-3.3.1
=dev-db/sqlite-2* )
|| ( ( x11-libs/libX11
x11-libs/libXScrnSaver
x11-libs/libXt )
virtual/x11 )
gtk? ( >=dev-dotnet/gconf-sharp-2.8
>=dev-dotnet/glade-sharp-2.8
>=dev-dotnet/gnome-sharp-2.8 )
python? ( >=dev-lang/python-2.3
>=dev-python/pygtk-2.6 )
evo? ( >=dev-dotnet/evolution-sharp-0.10.2
>=dev-dotnet/gconf-sharp-2.3 )
ole? ( >=app-text/wv-1.2.0
>=dev-dotnet/gsf-sharp-0.6
>=app-office/gnumeric-1.4.3-r3 )
pdf? ( >=app-text/poppler-0.5.1 )
chm? ( app-doc/chmlib ) "
DEPEND="${RDEPEND}
dev-util/pkgconfig
|| ( ( x11-proto/xproto
x11-proto/scrnsaverproto )
virtual/x11 )"
pkg_setup() {
if built_with_use dev-libs/gmime mono
then
einfo "Mono support enabled in dev-libs/gmime, I will continue..."
else
eerror "Please rebuild dev-libs/gmime, with mono support enabled!"
eerror "Try USE=\"mono\" emerge dev-libs/gmime,"
eerror "or add \"mono\" to your USE string in /etc/make.conf and"
eerror "emerge dev-libs/gmime."
die "Mono USE flag must be enabled in dev-libs/gmime"
fi
enewgroup beagleindex
enewuser beagleindex -1 -1 /var/lib/cache/beagle beagleindex
}
src_unpack() {
unpack ${A}
cd ${S}
# To prevent excessive revdep-rebuild, gentoo's libexif is sticking to
# soversion 10 for now.
sed -i -e 's/EXIF_SOVERSION=12/EXIF_SOVERSION=10/' configure.in
# Multilib fix
sed -i -e 's:prefix mono`/lib:libdir mono`:' \
${S}/configure.in || die "sed failed"
# Don't log so much
! use debug && sed -i -e \
's/defaultLevel = LogLevel.Debug/defaultLevel = LogLevel.Info/' \
Util/Logger.cs
epatch ${FILESDIR}/${PN}-0.2.4-CVE-2006-1296.patch
epatch ${FILESDIR}/${PN}-0.2.7-crawltweek.patch
eautoreconf
}
src_compile() {
econf \
$(use_enable evo evolution) \
$(use_enable gtk gui) \
$(use_enable python ) \
--enable-libbeagle \
|| die "configure failed"
emake || die "Make failed"
}
src_install() {
make DESTDIR="${D}" install || die "Install failed!"
dodir /usr/share/beagle
insinto /usr/share/beagle
doins mozilla-extension/beagle.xpi
dodoc AUTHORS INSTALL NEWS README
sed -i 's/CRAWL_ENABLED="yes"/CRAWL_ENABLED="no"/' ${D}/etc/beagle/crawl-*
insinto /etc/beagle
doins ${FILESDIR}/crawl-portage
keepdir /usr/$(get_libdir)/beagle/Backends
diropts -o beagleindex -g beagleindex
keepdir /var/lib/cache/beagle/indexes
}
pkg_postinst() {
einfo "If available, Beagle greatly benefits from using certain operating"
einfo "system features such as Extended Attributes and inotify."
echo
einfo "If you want static queryables such as the portage tree and system"
einfo "documentation you will need to edit the /etc/beagle/crawl-* files"
einfo "and change CRAWL_ENABLE from 'no' to 'yes'."
echo
einfo "For more info on how to create the optimal beagle environment, and"
einfo "basic usage info, see the Gentoo page of the Beagle website:"
einfo " http://www.beagle-project.org/Gentoo_Installation"
}
|