blob: 87f3b9202b83400d253b11cac96fb52b1c49f3a0 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/evfs/evfs-9999.ebuild,v 1.3 2006/08/06 15:50:23 vapier Exp $
ECVS_MODULE="e17/apps/evfs"
inherit enlightenment
DESCRIPTION="Enlightenment File Daemon"
IUSE="fam samba threads"
DEPEND="x11-libs/ecore
dev-db/sqlite
fam? ( virtual/fam )
samba? ( net-fs/samba )
dev-libs/libxml2"
src_compile() {
export MY_ECONF="
$(use_with fam)
$(use_enable samba)
$(use_enable threads)
"
enlightenment_src_compile
}
|