View | Details | Raw Unified
Collapse All | Expand All

(-) cronolog-1.6.2-r2.ebuild (-8 / +9 lines)
 Lines 1-8    Link Here 
# Copyright 1999-2005 Gentoo Foundation
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/cronolog/cronolog-1.6.2-r2.ebuild,v 1.5 2005/08/26 18:15:07 ramereth Exp $
# $Header: $
inherit eutils
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="1.4"
inherit eutils autotools
DESCRIPTION="Cronolog apache logfile rotator"
DESCRIPTION="Cronolog apache logfile rotator"
HOMEPAGE="http://cronolog.org/"
HOMEPAGE="http://cronolog.org/"
 Lines 13-33    Link Here 
KEYWORDS="amd64 ppc x86"
KEYWORDS="amd64 ppc x86"
IUSE=""
IUSE=""
DEPEND="virtual/libc
DEPEND=""
	>=sys-devel/autoconf-2.50"
RDEPEND=""
RDEPEND=""
src_unpack() {
src_unpack() {
	unpack ${A} ; cd ${S}
	unpack ${A}
	cd "${S}"
	epatch ${FILESDIR}/${PV}-patches/*.txt
	epatch ${FILESDIR}/${PV}-patches/*.txt
	# Small hack till upstream fixes
	# Small hack till upstream fixes
	touch config.guess config.sub
	touch config.guess config.sub
}
}
src_compile() {
src_compile() {
	export WANT_AUTOCONF=2.5
	eautoreconf || die "autoconf failed"
	aclocal || die "aclocal failed"
	autoconf || die "autoconf failed"
	econf || die "econf failed"
	econf || die "econf failed"
	emake || die "emake failed"
	emake || die "emake failed"
}
}