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.
37 lines
737 B
37 lines
737 B
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="A redirector for Squid"
|
|
HOMEPAGE="http://squirm.foote.com.au"
|
|
SRC_URI="http://squirm.foote.com.au/${P}.tgz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ppc x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="net-proxy/squid"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-gentoo.patch
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)" LDOPTS="${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
emake PREFIX="${ED}/opt/squirm" install
|
|
}
|
|
|
|
pkg_postinst() {
|
|
einfo "To enable squirm, add the following lines to /etc/squid/squid.conf:"
|
|
einfo " url_rewrite_program /opt/squirm/bin/squirm"
|
|
einfo " url_rewrite_children 10"
|
|
}
|