blob: cf534c118cac624b0a14e7829f06a8ab8c7c8ca1 (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/lz4/lz4-9999.ebuild,v 1.6 2013/10/13 11:16:59 ryao Exp $
EAPI=5
inherit cmake-utils
CMAKE_USE_DIR="${S}/cmake"
PREFIX="/usr/bin"
if [ ${PV} == "9999" ] ; then
inherit subversion
ESVN_REPO_URI="http://lz4.googlecode.com/svn/trunk/"
ESVN_PROJECT="lz4-read-only"
else
SRC_URI="http://dev.gentoo.org/~ryao/dist/${P}.tar.xz"
KEYWORDS="~amd64"
fi
DESCRIPTION="Extremely Fast Compression algorithm"
HOMEPAGE="https://code.google.com/p/lz4/"
LICENSE="BSD-2"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
src_prepare() {
[ ${PV} == "9999" ] && subversion_src_prepare
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(-DBUILD_SHARED_LIBS=ON)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
if [ -f "${ED}usr/bin/lz4c64" ]
then
dosym /usr/bin/{lz4c64,lz4c}
else
dosym /usr/bin/{lz4c32,lz4c}
fi
}
|