diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-17 04:09:27 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-17 04:09:27 +0000 |
commit | 0ba73e5ec8b543d9a86b0dacb1d8764aa512fb1c (patch) | |
tree | 25c0a8ace38b365984b03437895f21d691c32084 /media-libs/jpeg | |
parent | new ebuild (required by updated mason) (diff) | |
download | historical-0ba73e5ec8b543d9a86b0dacb1d8764aa512fb1c.tar.gz historical-0ba73e5ec8b543d9a86b0dacb1d8764aa512fb1c.tar.bz2 historical-0ba73e5ec8b543d9a86b0dacb1d8764aa512fb1c.zip |
changed $host to $chost per #10844
Diffstat (limited to 'media-libs/jpeg')
-rw-r--r-- | media-libs/jpeg/jpeg-6b-r3.ebuild | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/media-libs/jpeg/jpeg-6b-r3.ebuild b/media-libs/jpeg/jpeg-6b-r3.ebuild index 38aa26f97122..f0b7a04af72a 100644 --- a/media-libs/jpeg/jpeg-6b-r3.ebuild +++ b/media-libs/jpeg/jpeg-6b-r3.ebuild @@ -1,9 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-6b-r3.ebuild,v 1.1 2002/11/15 20:26:20 chouser Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-6b-r3.ebuild,v 1.2 2002/11/17 04:09:27 vapier Exp $ MY_P=${PN}src.v${PV} -S=${WORKDIR}/${P} DESCRIPTION="Library to load, handle and manipulate images in the JPEG format" SRC_URI="ftp://ftp.uu.net/graphics/jpeg/${MY_P}.tar.gz" HOMEPAGE="http://www.ijg.org/" @@ -20,20 +19,16 @@ src_unpack() { # allow /etc/make.conf's HOST setting to apply cd ${S} cp configure configure.orig - sed 's/ltconfig.*/& $host/' configure.orig > configure + sed 's/ltconfig.*/& $chost/' configure.orig > configure } src_compile() { - - econf \ - --enable-shared \ - --enable-static || die + econf --enable-shared --enable-static make || die } src_install() { - dodir /usr/{include,lib,bin,share/man/man1} make \ prefix=${D}/usr \ |