37 lines
858 B
Bash
37 lines
858 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/stimg/stimg-0.1.0.ebuild,v 1.12 2011/08/09 09:10:30 ssuominen Exp $
|
|
|
|
EAPI=4
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="Simple and tiny image loading library"
|
|
HOMEPAGE="http://homepage3.nifty.com/slokar/fb/"
|
|
SRC_URI="http://homepage3.nifty.com/slokar/stimg/${P}.tar.gz"
|
|
|
|
LICENSE="as-is LGPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 ppc x86"
|
|
IUSE="linguas_ja static-libs"
|
|
|
|
RDEPEND="media-libs/libpng
|
|
media-libs/tiff
|
|
virtual/jpeg"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
DOCS=( AUTHORS )
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-libpng15.patch
|
|
}
|
|
|
|
src_configure() {
|
|
tc-export CC
|
|
econf $(use_enable static-libs static)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${D}" -name '*.la' -exec rm -f {} +
|
|
use linguas_ja && dodoc README.ja
|
|
}
|