forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lzlib-1.6.ebuild
38 lines (31 loc) · 878 Bytes
/
lzlib-1.6.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils multilib toolchain-funcs
DESCRIPTION="Library for lzip compression"
HOMEPAGE="http://www.nongnu.org/lzip/lzlib.html"
SRC_URI="http://download.savannah.gnu.org/releases-noredirect/lzip/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"
src_configure() {
# not autotools-based
./configure \
--enable-shared \
--prefix="${EPREFIX}"/usr \
--libdir="${EPREFIX}"/usr/$(get_libdir) \
CC="$(tc-getCC)" \
CPPFLAGS="${CPPFLAGS}" \
CFLAGS="${CXXFLAGS}" \
LDFLAGS="${LDFLAGS}" || die
}
src_install() {
emake DESTDIR="${D}" LDCONFIG=: install
einstalldocs
# this sucking thing does not support disabling static libs
if ! use static-libs; then
rm "${ED%/}"/usr/$(get_libdir)/*.a || die
fi
}