# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/jbigkit/jbigkit-1.4.ebuild,v 1.26 2006/01/07 08:02:13 vapier Exp $ inherit flag-o-matic DESCRIPTION="JBIG-KIT implements a highly effective data compression algorithm for bi-level high-resolution images such as fax pages or scanned documents" HOMEPAGE="http://www.cl.cam.ac.uk/~mgk25/jbigkit/" SRC_URI="http://www.cl.cam.ac.uk/~mgk25/download/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc-macos ppc64 sh sparc x86" IUSE="" DEPEND=">=sys-apps/sed-4" RDEPEND="" S=${WORKDIR}/${PN} src_unpack() { unpack ${A} cd "${S}" [[ ${ARCH} == "hppa" ]] && append-flags -fPIC [[ ${ARCH} == "amd64" ]] && append-flags -fPIC sed -i \ -e "s:-O2 -W:${CFLAGS}:" Makefile \ || die "sed Makefile failed" } src_compile() { make || die "make failed" } src_install() { dolib libjbig/libjbig.a || die "dolib" insinto /usr/include newins libjbig/jbig.h jbig.h || die "doins include" dodoc ANNOUNCE CHANGES INSTALL TODO }