diff options
author | Chris Houser <chouser@gentoo.org> | 2002-11-15 20:26:20 +0000 |
---|---|---|
committer | Chris Houser <chouser@gentoo.org> | 2002-11-15 20:26:20 +0000 |
commit | 84fa61a4d5ae2305bab103eab1c143af90e87c05 (patch) | |
tree | 605b4173fb64606dbb119507573928a2ef5f9ac6 /media-libs | |
parent | cleaned up 3.3.11 (diff) | |
download | gentoo-2-84fa61a4d5ae2305bab103eab1c143af90e87c05.tar.gz gentoo-2-84fa61a4d5ae2305bab103eab1c143af90e87c05.tar.bz2 gentoo-2-84fa61a4d5ae2305bab103eab1c143af90e87c05.zip |
Minor bug fix to build process, patching configure to pass the $HOST setting
along to ltconfig. The bug was observed on an alpha-ev6 system, where
alphaev6-unknown-linux-gnu was unrecognized.
NOTE: There is no benefit to upgrading if jpeg-6b-r2 built successfully for
you.
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/jpeg/ChangeLog | 16 | ||||
-rw-r--r-- | media-libs/jpeg/files/digest-jpeg-6b-r3 | 1 | ||||
-rw-r--r-- | media-libs/jpeg/jpeg-6b-r3.ebuild | 44 |
3 files changed, 56 insertions, 5 deletions
diff --git a/media-libs/jpeg/ChangeLog b/media-libs/jpeg/ChangeLog index f549f9a0c9ad..10ce6685599c 100644 --- a/media-libs/jpeg/ChangeLog +++ b/media-libs/jpeg/ChangeLog @@ -1,12 +1,18 @@ # ChangeLog for media-libs/jpeg # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/ChangeLog,v 1.1 2002/02/01 21:53:30 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/ChangeLog,v 1.2 2002/11/15 20:26:20 chouser Exp $ -*jpeg-6b-r2 (1 Feb 2002) +*jpeg-6b-r3 (15 Nov 2002) - 1 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog : - - Added initial ChangeLog which should be updated whenever the package is + 15 Nov 2002; Chris Houser <chouser@gentoo.org> files/digest-jpeg-6b-r3, + jpeg-6b-r3.ebuild, ChangeLog: Minor bug fix to build process. The bug was + observed on an alpha-ev6 system. NOTE: There is no benefit to upgrading if + jpeg-6b-r2 built successfully for you. + +*jpeg-6b-r2 (01 Feb 2002) + + 01 Feb 2002; G.Bevin <gbevin@gentoo.org> ChangeLog: Added initial ChangeLog + which should be updated whenever the package is updated in any way. This changelog is targetted to users. This means that the comments should well explained and written in clean English. The details about writing correct changelogs are explained in the skel.ChangeLog file which you diff --git a/media-libs/jpeg/files/digest-jpeg-6b-r3 b/media-libs/jpeg/files/digest-jpeg-6b-r3 new file mode 100644 index 000000000000..654429e47399 --- /dev/null +++ b/media-libs/jpeg/files/digest-jpeg-6b-r3 @@ -0,0 +1 @@ +MD5 dbd5f3b47ed13132f04c685d608a7547 jpegsrc.v6b.tar.gz 613261 diff --git a/media-libs/jpeg/jpeg-6b-r3.ebuild b/media-libs/jpeg/jpeg-6b-r3.ebuild new file mode 100644 index 000000000000..38aa26f97122 --- /dev/null +++ b/media-libs/jpeg/jpeg-6b-r3.ebuild @@ -0,0 +1,44 @@ +# 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 $ + +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/" + +SLOT="0" +LICENSE="as-is" +KEYWORDS="x86 ppc sparc sparc64 alpha" + +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + + # allow /etc/make.conf's HOST setting to apply + cd ${S} + cp configure configure.orig + sed 's/ltconfig.*/& $host/' configure.orig > configure +} + +src_compile() { + + econf \ + --enable-shared \ + --enable-static || die + + make || die +} + +src_install() { + + dodir /usr/{include,lib,bin,share/man/man1} + make \ + prefix=${D}/usr \ + mandir=${D}/usr/share/man/man1 \ + install || die + + dodoc README change.log structure.doc +} |