blob: 3a0f28ac024e6fc52ce9567cc4076d338deee431 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libwebp/libwebp-0.1.2.ebuild,v 1.12 2011/09/24 16:47:18 armin76 Exp $
EAPI=4
inherit autotools
DESCRIPTION="A lossy image compression format"
HOMEPAGE="http://code.google.com/p/webp/"
SRC_URI="http://webp.googlecode.com/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="alpha amd64 arm ~hppa ia64 ~ppc ~ppc64 x86"
IUSE="static-libs"
RDEPEND=">=media-libs/libpng-1.4
virtual/jpeg"
DEPEND="${RDEPEND}"
DOCS="AUTHORS ChangeLog NEWS README"
src_prepare() {
eautoreconf
}
src_configure() {
econf \
$(use_enable static-libs static) \
--disable-dependency-tracking
}
src_install() {
default
find "${D}" -name '*.la' -exec rm -f {} +
}
|