blob: 2350c19efd1319b0c66bc0058a464d58b16e55f2 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmng/libmng-1.0.10.ebuild,v 1.13 2010/07/23 21:02:22 ssuominen Exp $
EAPI=2
WANT_AUTOCONF=2.5
WANT_AUTOMAKE=1.9
inherit autotools
DESCRIPTION="Multiple Image Networkgraphics lib (animated png's)"
HOMEPAGE="http://www.libmng.com/"
SRC_URI="mirror://sourceforge/libmng/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
IUSE="lcms"
DEPEND="virtual/jpeg
>=sys-libs/zlib-1.1.4
lcms? ( =media-libs/lcms-1* )"
src_prepare() {
ln -s makefiles/configure.in .
ln -s makefiles/Makefile.am .
eautoreconf
}
src_configure() {
econf \
--with-jpeg \
$(use_with lcms)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc CHANGES README*
dodoc doc/doc.readme doc/libmng.txt
doman doc/man/*
}
|