diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-06-20 09:10:19 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-06-20 09:10:19 +0000 |
commit | 173f5bb74c2e44eba2e96e6d3cd9799a0aa802cb (patch) | |
tree | 8baad0cd3b2e1c02ed62abf1dde946d57607cd91 /media-gfx/sfftobmp/sfftobmp-3.1.2.ebuild | |
parent | [dev-tex/luatex] Add ~mips keyword that i forget to add last time =) (diff) | |
download | gentoo-2-173f5bb74c2e44eba2e96e6d3cd9799a0aa802cb.tar.gz gentoo-2-173f5bb74c2e44eba2e96e6d3cd9799a0aa802cb.tar.bz2 gentoo-2-173f5bb74c2e44eba2e96e6d3cd9799a0aa802cb.zip |
Version bump.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx/sfftobmp/sfftobmp-3.1.2.ebuild')
-rw-r--r-- | media-gfx/sfftobmp/sfftobmp-3.1.2.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/media-gfx/sfftobmp/sfftobmp-3.1.2.ebuild b/media-gfx/sfftobmp/sfftobmp-3.1.2.ebuild new file mode 100644 index 000000000000..f1765c9ae558 --- /dev/null +++ b/media-gfx/sfftobmp/sfftobmp-3.1.2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/sfftobmp/sfftobmp-3.1.2.ebuild,v 1.1 2009/06/20 09:10:19 ssuominen Exp $ + +EAPI=2 +inherit autotools eutils + +MY_P=${PN}${PV//./_} + +DESCRIPTION="sff to bmp converter" +HOMEPAGE="http://sfftools.sourceforge.net/" +SRC_URI="mirror://sourceforge/sfftools/${MY_P}_src.zip" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ppc ~x86" +IUSE="" + +RDEPEND="dev-libs/boost + media-libs/tiff + media-libs/jpeg" +DEPEND="${RDEPEND} + app-arch/unzip" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-3.1.1-gcc44-and-boost-1_37.patch + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc doc/{changes,credits,readme} +} |