46 lines
1.2 KiB
Bash
46 lines
1.2 KiB
Bash
# Copyright 1999-2013 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-proxy/polipo/polipo-9999.ebuild,v 1.1 2013/03/31 15:30:54 tomwij Exp $
|
|
|
|
EAPI="5"
|
|
|
|
inherit eutils toolchain-funcs git-2
|
|
|
|
DESCRIPTION="A caching web proxy"
|
|
HOMEPAGE="http://www.pps.jussieu.fr/~jch/software/polipo/"
|
|
EGIT_REPO_URI="git://git.wifi.pps.univ-paris-diderot.fr/polipo"
|
|
|
|
LICENSE="MIT GPL-2"
|
|
SLOT="0"
|
|
|
|
DEPEND="sys-apps/texinfo"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
pkg_setup() {
|
|
enewgroup polipo
|
|
enewuser polipo -1 -1 /var/cache/polipo polipo
|
|
}
|
|
|
|
src_compile() {
|
|
tc-export CC
|
|
emake PREFIX=/usr "CDEBUGFLAGS=${CFLAGS}" all || die "build failed"
|
|
}
|
|
|
|
src_install() {
|
|
einstall PREFIX=/usr MANDIR=/usr/share/man INFODIR=/usr/share/info "TARGET=${D}" || die "install failed"
|
|
|
|
newinitd "${FILESDIR}/polipo.initd" polipo
|
|
insinto /etc/polipo ; doins "${FILESDIR}/config"
|
|
exeinto /etc/cron.daily ; newexe "${FILESDIR}/polipo.crond" polipo.sh
|
|
|
|
diropts -m0750 -o polipo -g polipo
|
|
keepdir /var/cache/polipo
|
|
|
|
dodoc CHANGES README
|
|
dohtml html/*
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "Do not forget to read the manual."
|
|
einfo "Change the config file in /etc/polipo to suit your needs."
|
|
}
|