# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-gfx/xloadimage/xloadimage-4.1-r4.ebuild,v 1.14 2006/01/18 23:02:05 vapier Exp $ inherit alternatives eutils flag-o-matic MY_P="${P/-/.}" S=${WORKDIR}/${MY_P} DESCRIPTION="utility to view many different types of images under X11" HOMEPAGE="http://world.std.com/~jimf/xloadimage.html" SRC_URI="ftp://ftp.x.org/R5contrib/${MY_P}.tar.gz mirror://gentoo/${P}-gentoo.diff.bz2" LICENSE="MIT" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc-macos ppc64 sh sparc x86" IUSE="tiff jpeg png" RDEPEND="|| ( x11-libs/libX11 virtual/x11 ) tiff? ( media-libs/tiff ) png? ( media-libs/libpng ) jpeg? ( media-libs/jpeg )" DEPEND="${RDEPEND} >=sys-apps/sed-4.0.5" src_unpack() { unpack ${A} cd "${S}" epatch "${WORKDIR}"/${P}-gentoo.diff epatch "${FILESDIR}"/${P}-zio-shell-meta-char.diff epatch "${FILESDIR}"/${P}-endif.patch # Do not define errno extern, but rather include errno.h # (1 Jan 2003) epatch "${FILESDIR}"/${P}-include-errno_h.patch epatch "${FILESDIR}"/xloadimage-gentoo.patch sed -i "s:OPT_FLAGS=:OPT_FLAGS=$CFLAGS:" Make.conf sed -i "s:^#include :#include :" "${S}"/rlelib.c # On FreeBSD systems malloc.h is a false header asking for fixes. # On MacOSX it would require malloc/malloc.h # On other systems it's simply unneeded sed -i -e 's,,,' vicar.c if use userland_Darwin ; then for f in $(grep zopen * | cut -d':' -f1 | uniq);do sed -i "s:zopen:zloadimage_zopen:g" $f done fi chmod +x "${S}"/configure } src_install() { dobin xloadimage || die dobin uufilter || die insinto /etc/X11 doins xloadimagerc newman xloadimage.man xloadimage.1 newman uufilter.man uufilter.1 dodoc README } update_alternatives() { alternatives_makesym /usr/bin/xview \ /usr/bin/{xloadimage,xli} alternatives_makesym /usr/bin/xsetbg \ /usr/bin/{xloadimage,xli} alternatives_makesym /usr/share/man/man1/xview.1.gz \ /usr/share/man/man1/{xloadimage,xli}.1.gz alternatives_makesym /usr/share/man/man1/xsetbg.1.gz \ /usr/share/man/man1/{xloadimage,xli}.1.gz } pkg_postinst() { use ppc-macos || update_alternatives } pkg_postrm() { use ppc-macos || update_alternatives }