You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-fs/lessfs/lessfs-1.5.8.ebuild

51 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-fs/lessfs/lessfs-1.5.8.ebuild,v 1.3 2012/04/04 06:57:15 jdhore Exp $
EAPI="4"
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="crypt debug filelog memtrace lzo"
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_configure() {
econf \
$(use_enable debug) $(use_enable debug lckdebug) \
$(use_enable filelog) $(use_with crypt crypto) \
$(use_with lzo) $(use_enable memtrace)
}
src_install () {
emake DESTDIR="${D}" install
dodoc ChangeLog FAQ README.*
insinto /etc
newins examples/lessfs.cfg-master ${PN}.cfg
dodoc examples/lessfs.* etc/lessfs.*
}
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
}