blob: a99888c100d66958c0ede878368e27b9bf29ffbc (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-do-plugins/gnome-do-plugins-0.4.0.ebuild,v 1.1 2008/03/22 12:30:17 graaff Exp $
inherit eutils autotools gnome2 mono versionator
MY_PN="do-plugins"
PVC=$(get_version_component_range 1-2)
DESCRIPTION="Plugins to put the Do in Gnome Do"
HOMEPAGE="http://do.davebsd.com/"
SRC_URI="https://launchpad.net/do/trunk/${PVC}/+download/${MY_PN}-${PV}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="amarok evo"
DEPEND=">=gnome-extra/gnome-do-${PV}
evo? ( dev-dotnet/evolution-sharp )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${MY_PN}-${PV}"
src_compile()
{
econf \
$(use_enable amarok amarok-plugin) \
$(use_enable evo evolution-plugin) \
|| die "configure failed"
emake || die "make failed"
}
|