35 lines
798 B
Bash
35 lines
798 B
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=4
|
|
inherit eutils
|
|
|
|
DESCRIPTION="A lossy image compression format"
|
|
HOMEPAGE="https://developers.google.com/speed/webp/download"
|
|
SRC_URI="https://webp.googlecode.com/files/${P}.tar.gz"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
|
|
IUSE="experimental static-libs"
|
|
|
|
RDEPEND="media-libs/libpng:0
|
|
media-libs/tiff:0
|
|
virtual/jpeg"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
DOCS="AUTHORS ChangeLog doc/*.txt NEWS README*"
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable static-libs static) \
|
|
--disable-silent-rules \
|
|
$(use_enable experimental) \
|
|
--enable-experimental-libwebpmux
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
prune_libtool_files
|
|
}
|