diff options
Diffstat (limited to 'app-arch/snappy/snappy-1.1.1.ebuild')
-rw-r--r-- | app-arch/snappy/snappy-1.1.1.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-arch/snappy/snappy-1.1.1.ebuild b/app-arch/snappy/snappy-1.1.1.ebuild new file mode 100644 index 000000000000..4da8c027bd50 --- /dev/null +++ b/app-arch/snappy/snappy-1.1.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" + +inherit eutils autotools + +DESCRIPTION="A high-speed compression/decompression library by Google" +HOMEPAGE="https://code.google.com/p/snappy/" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="amd64 arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux" +IUSE="static-libs" + +DOCS="AUTHORS ChangeLog README NEWS format_description.txt" + +src_prepare() { + # Avoid automagic lzop and gzip by not checking for it + sed -i -e '/^CHECK_EXT_COMPRESSION_LIB/d' "${S}/configure.ac" || die + eautoreconf +} + +src_configure() { + econf \ + --without-gflags \ + --disable-gtest \ + $(use_enable static-libs static) +} + +src_install() { + default + + # Remove docs installed by snappy itself + rm -rf "${ED}/usr/share/doc/snappy" || die + + prune_libtool_files +} |