You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-gfx/imageworsener/imageworsener-0.9.8.ebuild

58 lines
1.2 KiB

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/imageworsener/imageworsener-0.9.8.ebuild,v 1.2 2012/03/15 20:31:51 sping Exp $
EAPI="4"
inherit eutils autotools
MY_P="${PN}-src-${PV}"
MY_PN="imagew"
DESCRIPTION="Utility for image scaling and processing"
HOMEPAGE="http://entropymine.com/imageworsener/"
SRC_URI="http://entropymine.com/${PN}/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="jpeg png test webp zlib"
DEPEND="png? ( media-libs/libpng:0 )
jpeg? ( virtual/jpeg )
webp? ( >=media-libs/libwebp-0.1.3 )
zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}"
REQUIRED_USE="test? ( jpeg png webp zlib )"
src_prepare() {
epatch "${FILESDIR}"/${P}-libm.patch
eautoreconf
}
src_configure() {
local switch=
use test && switch=test
econf \
$(use_with ${switch} jpeg) \
$(use_with ${switch} png) \
$(use_with ${switch} webp) \
$(use_with ${switch} zlib) \
|| die
}
src_install() {
default
dodoc readme.txt technical.txt changelog.txt || die
# Remove dummy files pointing to others
rm "${D}"/usr/share/doc/${PF}/{ChangeLog,README} || die
}
src_test() {
cd "${S}/tests" || die
./runtest "${S}/${MY_PN}"
}