blob: 840dc3ec8e3583a3f09f3e6d1005f83a78f1ebd3 (
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
56
|
# Copyright 1999-2014 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.9 2014/03/02 15:23:50 mgorny Exp $
EAPI=5
inherit cmake-utils multilib
CMAKE_USE_DIR="${S}/cmake_unofficial"
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() {
if [[ ${PV} == "9999" ]]
then
subversion_src_prepare
else
epatch "${FILESDIR}/${P}-install-to-bindir.patch"
fi
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(-DBUILD_LIBS=ON -DBUILD_SHARED_LIBS=ON)
cmake-utils_src_configure
}
src_install() {
if [[ $(get_libdir) != lib ]]; then
dodir "/usr/$(get_libdir)"
dosym "$(get_libdir)" /usr/lib
fi
cmake-utils_src_install
if [[ $(get_libdir) != lib ]]; then
rm "${ED}usr/lib" || die
fi
}
|