diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2010-01-22 17:34:11 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2010-01-22 17:34:11 +0000 |
commit | c34f4872ea8547afcc02d892056b6c6c02cb707c (patch) | |
tree | 72c5f6945ee2a96bd0c11057c331ca70fe96df01 /media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild | |
parent | Require SLOT="0" of media-libs/jpeg for headers. (diff) | |
download | historical-c34f4872ea8547afcc02d892056b6c6c02cb707c.tar.gz historical-c34f4872ea8547afcc02d892056b6c6c02cb707c.tar.bz2 historical-c34f4872ea8547afcc02d892056b6c6c02cb707c.zip |
Require SLOT="0" of media-libs/jpeg for headers.
Package-Manager: portage-2.2_rc61/cvs/Linux x86_64
Diffstat (limited to 'media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild')
-rw-r--r-- | media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild b/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild index 4fd4abe95772..71fe5ad200ba 100644 --- a/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild +++ b/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild @@ -1,30 +1,28 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild,v 1.17 2010/01/07 22:13:07 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/jpeginfo/jpeginfo-1.6.0.ebuild,v 1.18 2010/01/22 17:34:11 ssuominen Exp $ +EAPI=2 inherit toolchain-funcs -IUSE="" - DESCRIPTION="Prints information and tests integrity of JPEG/JFIF files." HOMEPAGE="http://www.cc.jyu.fi/~tjko/projects.html" SRC_URI="http://www.cc.jyu.fi/~tjko/src/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="alpha amd64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="" -DEPEND=">=media-libs/jpeg-6b" +DEPEND=">=media-libs/jpeg-6b:0" -src_compile() { +src_configure() { tc-export CC - econf || die "econf failed" - emake || die "emake failed" + econf } src_install() { # bug #294820 emake -j1 INSTALL_ROOT="${D}" install || die - - dodoc COPY* README + dodoc README } |