# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Recompress ZIP, PNG and MNGs using the Deflate 7-Zip implementation" HOMEPAGE="http://advancemame.sf.net" SRC_URI="mirror://sourceforge/advancemame/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="sys-libs/zlib" S=${WORKDIR}/${P} src_compile() { # bzip2-support is broken in release 1.6! # myopts="--enable-bzip2" ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ ${myopts} || die "./configure failed" emake || die } src_install() { make DESTDIR=${D} install || die dodoc AUTHORS HISTORY README dohtml doc/*.html }