blob: 99c263f92b9b30ab65e3e089ed56edac783d0ff4 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/lessfs/lessfs-1.3.3.11.ebuild,v 1.1 2011/04/23 18:12:35 hwoarang Exp $
EAPI="2"
inherit autotools
MY_PV="${PV/_/-}"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="A high performance inline data deduplicating filesystem"
HOMEPAGE="http://www.lessfs.com"
SRC_URI="mirror://sourceforge/${PN}/${PN}/${P/_beta*/-beta}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="lzo crypt debug"
DEPEND=">=dev-db/tokyocabinet-1.4.42
app-crypt/mhash
>=sys-fs/fuse-2.8.0
crypt? ( dev-libs/openssl )
lzo? ( dev-libs/lzo )"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_prepare() {
eautoreconf
}
src_configure() {
econf \
$(use_enable debug) $(use_enable debug lckdebug) \
$(use_with crypt crypto) $(use_with lzo)
}
src_install () {
emake DESTDIR="${D}" install || die "make install failed"
dodoc ChangeLog FAQ README.* || die "dodpc failed"
insinto /etc
newins examples/lessfs.cfg-master ${PN}.cfg || die "newins failed"
dodoc examples/lessfs.* etc/lessfs.* || die "dodoc failed"
}
pkg_postinst() {
elog
elog "Default configuration file: /etc/${PN}.cfg"
elog "If your host is a client consult the following configuration"
elog "file: /usr/share/doc/${PF}/${PN}.cfg-slave.bz2"
elog
}
|