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/app-arch/lz4/lz4-9999.ebuild

57 lines
1.2 KiB

# 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.10 2014/05/28 12:58:22 pinkbyte 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 ~arm ~hppa ~ia64 ~mips ~s390 ~x86 ~amd64-linux ~x86-linux"
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
}