diff options
Diffstat (limited to 'sys-fs/lessfs/lessfs-1.7.0.ebuild')
-rw-r--r-- | sys-fs/lessfs/lessfs-1.7.0.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sys-fs/lessfs/lessfs-1.7.0.ebuild b/sys-fs/lessfs/lessfs-1.7.0.ebuild new file mode 100644 index 000000000000..99fe01fe5e4b --- /dev/null +++ b/sys-fs/lessfs/lessfs-1.7.0.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +inherit readme.gentoo + +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}/${MY_P}/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="berkdb crypt debug filelog memtrace lzo snappy" + +DEPEND="berkdb? ( sys-libs/db ) + crypt? ( dev-libs/openssl ) + lzo? ( dev-libs/lzo ) + snappy? ( app-arch/snappy ) + >=dev-db/tokyocabinet-1.4.42 + app-crypt/mhash + >=sys-fs/fuse-2.8.0" + +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}" + +DOC_CONTENTS="Default configuration file: /etc/${PN}.cfg. + If your host is a client consult the following configuration + file: /usr/share/doc/${PF}/${PN}.cfg-slave.*" + +src_configure() { + econf \ + $(use_enable debug) $(use_enable debug lckdebug) \ + $(use_enable filelog) $(use_with crypt crypto) \ + $(use_with lzo) $(use_enable memtrace) \ + $(use_with berkdb berkeleydb) \ + $(use_with snappy) +} + +src_install () { + emake DESTDIR="${D}" install + dodoc ChangeLog FAQ README.* + insinto /etc + newins examples/lessfs.cfg-master ${PN}.cfg + dodoc examples/lessfs.* etc/lessfs.* + readme.gentoo_create_doc +} |