summaryrefslogtreecommitdiff
blob: bd748a5de8b42b475f97a59d858ac97dce5e310a (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
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/tomboy/tomboy-0.5.6.ebuild,v 1.2 2007/02/12 08:28:03 compnerd Exp $

inherit gnome2 mono eutils

DESCRIPTION="Desktop note-taking application"
HOMEPAGE="http://www.beatniksoftware.com/tomboy/"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc eds galago"

RDEPEND=">=dev-lang/mono-1.1
	 >=dev-dotnet/gtk-sharp-2
	 >=dev-dotnet/gconf-sharp-2
	 >=dev-dotnet/gnome-sharp-2
	 >=sys-apps/dbus-0.90
	 >=x11-libs/gtk+-2.6.0
	 >=dev-libs/atk-1.2.4
	 >=gnome-base/gconf-2
	 >=app-text/gtkspell-2.0.9
	 >=gnome-base/gnome-panel-2.8.2
	 >=gnome-base/libgnomeprint-2.2
	 >=gnome-base/libgnomeprintui-2.2
	 eds? ( dev-libs/gmime )
	 galago? ( =dev-dotnet/galago-sharp-0.5* )"
DEPEND="${RDEPEND}
	  dev-libs/libxml2
	  sys-devel/gettext
	  dev-util/pkgconfig
	>=dev-util/intltool-0.25"

DOCS="AUTHORS ChangeLog INSTALL NEWS README"

pkg_setup() {
	if ! built_with_use 'dev-libs/libxml2' 'python' ; then
		eerror "Please build libxml2 with the python USE-flag"
		einfo "echo \"dev-libs/libxml2 python\" >> /etc/portage/package.use"
		die "dev-libs/libxml2 without python bindings detected"
	fi

	if use eds && ! built_with_use 'dev-libs/gmime' mono ; then
		eerror "Please build gmime with the mono USE-flag"
		einfo "echo \"dev-libs/gmime mono\" >> /etc/portage/package.use"
		die "gmime without mono support detected"
	fi

	G2CONF="${G2CONF} $(use_enable galago) $(use_enable eds evolution)"
}

src_unpack() {
	gnome2_src_unpack
	cd ${S}

	epatch ${FILESDIR}/${PN}-0.5.6-gtksharp.patch
}