Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 202490 Details for
Bug 282902
media-libs/netpbm-10.46.00: fails to emerge during unpack with bash-3
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
Broken ebuild file that causes netpbm to fail.
netpbm-10.46.00.ebuild.broken (text/plain), 4.04 KB, created by
Stonie R. Cooper
on 2009-08-28 14:15:38 UTC
(
hide
)
Description:
Broken ebuild file that causes netpbm to fail.
Filename:
MIME Type:
Creator:
Stonie R. Cooper
Created:
2009-08-28 14:15:38 UTC
Size:
4.04 KB
patch
obsolete
># Copyright 1999-2009 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: /var/cvsroot/gentoo-x86/media-libs/netpbm/netpbm-10.46.00.ebuild,v 1.9 2009/08/27 10:03:54 vapier Exp $ > >inherit toolchain-funcs eutils multilib > >MAN_VER=10.33 >DESCRIPTION="A set of utilities for converting to/from the netpbm (and related) formats" >HOMEPAGE="http://netpbm.sourceforge.net/" >SRC_URI="mirror://gentoo/${P}.tar.lzma > mirror://gentoo/${PN}-${MAN_VER}-manpages.tar.bz2" > >LICENSE="GPL-2" >SLOT="0" >KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ~ppc64 s390 sh ~sparc x86 ~x86-fbsd" >IUSE="jbig jpeg jpeg2k png rle svga tiff X xml zlib" > >RDEPEND="jpeg? ( >=media-libs/jpeg-6b ) > jpeg2k? ( media-libs/jasper ) > tiff? ( >=media-libs/tiff-3.5.5 ) > png? ( >=media-libs/libpng-1.2.1 ) > xml? ( dev-libs/libxml2 ) > zlib? ( sys-libs/zlib ) > svga? ( media-libs/svgalib ) > jbig? ( media-libs/jbigkit ) > rle? ( media-libs/urt ) > X? ( x11-libs/libX11 )" >DEPEND="${RDEPEND} > app-arch/lzma-utils" > >maint_pkg_create() { > local base="/usr/local/src" > local srcdir="${base}/netpbm/release_number" > if [[ -d ${srcdir} ]] ; then > cd "${T}" || die > > ebegin "Exporting ${srcdir}/${PV} to netpbm-${PV}" > svn export -q ${srcdir}/${PV} netpbm-${PV} > eend $? || return 1 > > ebegin "Creating netpbm-${PV}.tar.lzma" > tar cf - netpbm-${PV} | lzma > netpbm-${PV}.tar.lzma > eend $? > > einfo "Tarball now ready at: ${T}/netpbm-${PV}.tar.lzma" > else > einfo "You need to run:" > einfo " cd ${base}" > einfo " svn co https://netpbm.svn.sourceforge.net/svnroot/netpbm" > die "need svn checkout dir" > fi >} >pkg_setup() { [[ -n ${VAPIER_LOVES_YOU} && ! -e ${DISTDIR}/${P}.tar.lzma ]] && maint_pkg_create ; } > >netpbm_libtype() { > case ${CHOST} in > *-darwin*) echo dylib;; > *) echo unixshared;; > esac >} >netpbm_libsuffix() { > local suffix=$(get_libname) > echo ${suffix//\.} >} >netpbm_ldshlib() { > case ${CHOST} in > *-darwin*) echo '$(LDFLAGS) -dynamiclib -install_name $(SONAME)';; > *) echo '$(LDFLAGS) -shared -Wl,-soname,$(SONAME)';; > esac >} >netpbm_config() { > if use $1 ; then > [[ $2 != "!" ]] && echo -l${2:-$1} > else > echo NONE > fi >} > >src_unpack() { > unpack ${A} > cd "${S}" > > # glibc2.10 compat (bug 270351) > sed "s:getline:getline_nonlibc:" -i converter/ppm/xvminitoppm.c || die > > epatch "${FILESDIR}"/netpbm-10.31-build.patch > > # avoid ugly depend.mk warnings > touch $(find . -name Makefile | sed s:Makefile:depend.mk:g) > > cat config.mk.in /dev/stdin >> config.mk <<-EOF || die > # Misc crap > BUILD_FIASCO = N > SYMLINK = ln -sf > > # Toolchain options > CC = $(tc-getCC) -Wall > LD = \$(CC) > CC_FOR_BUILD = $(tc-getBUILD_CC) > LD_FOR_BUILD = \$(CC_FOR_BUILD) > AR = $(tc-getAR) > RANLIB = $(tc-getRANLIB) > > STRIPFLAG = > CFLAGS_SHLIB = -fPIC > > LDRELOC = \$(LD) -r > LDSHLIB = $(netpbm_ldshlib) > LINKER_CAN_DO_EXPLICIT_LIBRARY = N # we can, but dont want to > LINKERISCOMPILER = Y > NETPBMLIBSUFFIX = $(netpbm_libsuffix) > NETPBMLIBTYPE = $(netpbm_libtype) > > # Gentoo build options > TIFFLIB = $(netpbm_config tiff) > JPEGLIB = $(netpbm_config jpeg) > PNGLIB = $(netpbm_config png) > ZLIB = $(netpbm_config zlib z) > LINUXSVGALIB = $(netpbm_config svga vga) > XML2_LIBS = $(netpbm_config xml xml2) > JBIGLIB = -ljbig > JBIGHDR_DIR = $(netpbm_config jbig "!") > JASPERLIB = -ljasper > JASPERHDR_DIR = $(netpbm_config jpeg2k "!") > URTLIB = $(netpbm_config rle) > URTHDR_DIR = > X11LIB = $(netpbm_config X X11) > X11HDR_DIR = > EOF >} > >src_compile() { > emake -j1 || die >} > >src_install() { > emake -j1 package pkgdir="${D}"/usr || die "make package failed" > > [[ $(get_libdir) != "lib" ]] && mv "${D}"/usr/lib "${D}"/usr/$(get_libdir) > > # Remove cruft that we don't need, and move around stuff we want > rm -f "${D}"/usr/bin/{doc.url,manweb} || die > rm -r "${D}"/usr/man/web || die > rm -r "${D}"/usr/link || die > rm -f "${D}"/usr/{README,VERSION,config_template,pkginfo} || die > dodir /usr/share > mv "${D}"/usr/man "${D}"/usr/share/ || die > mv "${D}"/usr/misc "${D}"/usr/share/netpbm || die > > dodoc README > cd doc > GLOBIGNORE='*.html:.*' dodoc * > dohtml -r . > > cd "${WORKDIR}"/${PN}-${MAN_VER}-manpages || die > doman *.[0-9] > dodoc README* gen-netpbm-manpages >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 282902
:
202471
|
202488
| 202490 |
202491