diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-08-22 22:18:18 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-08-22 22:18:18 +0000 |
commit | f4fa7b4cd482022c1cf3dbc7c0f7a14757a8550a (patch) | |
tree | a548116bf043ee1a243535019b9c51a3d4577a14 /media-libs/jpeg | |
parent | arm/hppa/ia64/s390 love (diff) | |
download | gentoo-2-f4fa7b4cd482022c1cf3dbc7c0f7a14757a8550a.tar.gz gentoo-2-f4fa7b4cd482022c1cf3dbc7c0f7a14757a8550a.tar.bz2 gentoo-2-f4fa7b4cd482022c1cf3dbc7c0f7a14757a8550a.zip |
push to stable to force users to re-emerge after jpeg-mmx header file clobbering
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'media-libs/jpeg')
-rw-r--r-- | media-libs/jpeg/jpeg-6b-r5.ebuild | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/media-libs/jpeg/jpeg-6b-r5.ebuild b/media-libs/jpeg/jpeg-6b-r5.ebuild index 562e117e3a3e..d0f83c1fb81f 100644 --- a/media-libs/jpeg/jpeg-6b-r5.ebuild +++ b/media-libs/jpeg/jpeg-6b-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-6b-r5.ebuild,v 1.1 2005/06/10 18:22:10 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/jpeg/jpeg-6b-r5.ebuild,v 1.2 2005/08/22 22:18:18 vapier Exp $ inherit flag-o-matic libtool eutils toolchain-funcs @@ -11,17 +11,17 @@ SRC_URI="ftp://ftp.uu.net/graphics/jpeg/${MY_P}.tar.gz" LICENSE="as-is" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc-macos ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 arm hppa ia64 m68k ~mips ~ppc ~ppc-macos ~ppc64 s390 sh ~sparc x86" IUSE="" -RDEPEND="virtual/libc" +RDEPEND="" DEPEND="${RDEPEND} >=sys-devel/libtool-1.5.10-r4" src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # make shared libraries work on G/FBSD. Need to be before the sed epatch "${FILESDIR}/${P}-freebsd.patch" @@ -30,7 +30,7 @@ src_unpack() { sed -i 's/ltconfig.*/& $CHOST/' configure uclibctoolize use ppc-macos && darwintoolize - epatch ${FILESDIR}/${P}-gentoo.patch + epatch "${FILESDIR}"/${P}-gentoo.patch } src_compile() { @@ -38,14 +38,14 @@ src_compile() { econf --enable-shared --enable-static || die "econf failed" if use ppc-macos; then - cd ${S} + cd "${S}" sed -i -e 's:LIBTOOL = libtool:LIBTOOL = /usr/bin/glibtool:' Makefile fi # The configure script seems to ignore the --libdir option.. # set this here to fix libdir path in libtool file sed -i -e "s:^libdir.*:libdir = \$(exec_prefix)/$(get_libdir):" \ - ${S}/Makefile || die + "${S}"/Makefile || die emake \ CC="$(tc-getCC)" \ @@ -57,12 +57,12 @@ src_compile() { src_install() { dodir /usr/{include,$(get_libdir),bin,share/man/man1} make \ - prefix=${D}/usr \ - libdir=${D}/usr/$(get_libdir) \ - mandir=${D}/usr/share/man/man1 \ - install || die + prefix="${D}"/usr \ + libdir="${D}"/usr/$(get_libdir) \ + mandir="${D}"/usr/share/man/man1 \ + install || die "make install" insinto /usr/include - doins jpegint.h + doins jpegint.h || die "jpeg headers" dodoc README install.doc usage.doc wizard.doc change.log \ libjpeg.doc example.c structure.doc filelist.doc \ |