blob: 9bafbd94153d7d7301419768c97eb40d161df382 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-leechcraft/lc-ooronee/lc-ooronee-0.6.65.ebuild,v 1.1 2014/04/10 18:00:07 maksbotan Exp $
EAPI="5"
inherit leechcraft
DESCRIPTION="Quark handling text and images droppend onto it"
SLOT="0"
KEYWORDS=" ~amd64 ~x86"
IUSE="debug"
DEPEND="~app-leechcraft/lc-core-${PV}"
RDEPEND="${DEPEND}
virtual/leechcraft-quark-sideprovider
"
# Grabbed from net-misc/netctl ebuild.
optfeature() {
local desc=$1
shift
while (( $# )); do
if has_version "$1"; then
elog " [I] $1 to ${desc}"
else
elog " [ ] $1 to ${desc}"
fi
shift
done
}
pkg_postinst() {
elog "Install at least some of the following additional LeechCraft modules for Ooronee to be useful:"
optfeature "upload images" app-leechcraft/lc-imgaste app-leechcraft/lc-blasq
optfeature "search via OpenSearch" app-leechcraft/lc-seekthru
optfeature "search via Google" app-leechcraft/lc-pogooglue
}
|