summaryrefslogtreecommitdiff
blob: 23a7d457d2b21d6ecfa687d959fe30c6fd64f335 (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: $

EAPI=0
inherit eutils
DESCRIPTION="Cryptkeeper is a Linux system tray applet  that manages EncFS encrypted folders."
HOMEPAGE="http://tom.noflag.org.uk/cryptkeeper.html"

# Point to any required sources; these will be automatically downloaded by
# Portage.
SRC_URI="http://tom.noflag.org.uk/cryptkeeper/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="nls"
DEPEND=">=sys-fs/fuse-2.6.3
        >=sys-fs/encfs-1.5
        >=x11-libs/gtk+-2.12.11
        >=gnome-base/gconf-2.22.0
		nls? ( >=sys-devel/gettext-0.14.1 )"
RDEPEND="${DEPEND}"

src_compile() {
	econf `use_enable nls` || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dodoc ChangeLog README
}