You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-arch/ppmd/ppmd-9.1_p10.ebuild

51 lines
1.5 KiB

# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/ppmd/ppmd-9.1_p10.ebuild,v 1.10 2009/10/12 16:46:02 halcy0n Exp $
inherit eutils flag-o-matic
PATCHV="${P##*_p}"
MY_P="${P%%_*}"
MY_P="${MY_P/-/_}"
MY_S=${PN}-i1
S="${WORKDIR}"/${MY_S}
DESCRIPTION="PPM based compressor -- better behaved than bzip2"
HOMEPAGE="http://http.us.debian.org/debian/pool/main/p/ppmd/"
SRC_URI="http://http.us.debian.org/debian/pool/main/p/ppmd/${MY_P}.orig.tar.gz
http://http.us.debian.org/debian/pool/main/p/ppmd/${MY_P}-${PATCHV}.diff.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="-alpha -amd64 hppa -ia64 ~mips ppc sparc x86"
IUSE=""
DEPEND=">=sys-apps/sed-4
app-arch/gzip
sys-devel/patch
sys-devel/autoconf
sys-devel/automake"
RDEPEND=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}/${MY_P}-${PATCHV}.diff"
epatch "${S}/${MY_P/_/-}/debian/patches"/*.patch
mv "${S}/${MY_P/_/-}/Makefile" "${S}" || die "no makefile found"
epatch "${FILESDIR}/${PN}-p${PATCHV}-makefile.patch"
}
src_compile() {
# replace-flags "-O3" "-O2"
# see bug #44529 if this starts producing goofy executables
# if it pops up again, re-enable replace-flags.
append-flags "-fno-inline-functions -fno-exceptions -fno-rtti"
emake || die
}
src_install() {
make install DESTDIR="${D}" || die "failed installing"
doman "${S}/${MY_P/_/-}/debian/PPMd.1" || die "failed installing manpage"
dodoc "${S}/read_me.txt" || die "failed installed readme"
}