diff options
author | 2012-12-17 08:27:30 +0000 | |
---|---|---|
committer | 2012-12-17 08:27:30 +0000 | |
commit | 80cc7becca4d5cf2ed68e77a166d4c06c40e7b14 (patch) | |
tree | e1450daaf90b20cb8ea6a58b1becac5b7fbe5d01 /net-proxy/squirm | |
parent | Add a revision compatible with gdl-3.6. Update license. Drop useless doc USE ... (diff) | |
download | gentoo-2-80cc7becca4d5cf2ed68e77a166d4c06c40e7b14.tar.gz gentoo-2-80cc7becca4d5cf2ed68e77a166d4c06c40e7b14.tar.bz2 gentoo-2-80cc7becca4d5cf2ed68e77a166d4c06c40e7b14.zip |
Revision bump: EAPI 5, respect compiler and LDFLAGS wrt bug #447514, add runtime dependency on squid wrt bug #447518. Thanks to Vicente Olivert Riera for discovering this issues
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-proxy/squirm')
-rw-r--r-- | net-proxy/squirm/ChangeLog | 11 | ||||
-rw-r--r-- | net-proxy/squirm/squirm-1.26-r1.ebuild | 36 |
2 files changed, 45 insertions, 2 deletions
diff --git a/net-proxy/squirm/ChangeLog b/net-proxy/squirm/ChangeLog index 2ee6fbdec039..80c09fb2de8c 100644 --- a/net-proxy/squirm/ChangeLog +++ b/net-proxy/squirm/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for net-proxy/squirm -# Copyright 2002-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/squirm/ChangeLog,v 1.8 2012/12/16 13:48:17 ago Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/squirm/ChangeLog,v 1.9 2012/12/17 08:27:30 pinkbyte Exp $ + +*squirm-1.26-r1 (17 Dec 2012) + + 17 Dec 2012; Sergey Popov <pinkbyte@gentoo.org> +squirm-1.26-r1.ebuild: + Revision bump: EAPI 5, respect compiler and LDFLAGS wrt bug #447514, add + runtime dependency on squid wrt bug #447518. Thanks to Vicente Olivert Riera + for discovering this issues 16 Dec 2012; Agostino Sarubbo <ago@gentoo.org> squirm-1.26.ebuild: Stable for x86, wrt bug #441496 diff --git a/net-proxy/squirm/squirm-1.26-r1.ebuild b/net-proxy/squirm/squirm-1.26-r1.ebuild new file mode 100644 index 000000000000..a2cbc195fd61 --- /dev/null +++ b/net-proxy/squirm/squirm-1.26-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/squirm/squirm-1.26-r1.ebuild,v 1.1 2012/12/17 08:27:30 pinkbyte Exp $ + +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" +} |