public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-proxy/c-icap: c-icap-0.1.7-r1.ebuild ChangeLog
@ 2011-10-21 23:56 Diego Petteno (flameeyes)
  0 siblings, 0 replies; 4+ messages in thread
From: Diego Petteno (flameeyes) @ 2011-10-21 23:56 UTC (permalink / raw
  To: gentoo-commits

flameeyes    11/10/21 23:56:20

  Modified:             ChangeLog
  Added:                c-icap-0.1.7-r1.ebuild
  Log:
  Revision bump to use a more OpenRC-designed init script.
  
  (Portage version: 2.2.0_alpha69/cvs/Linux x86_64)

Revision  Changes    Path
1.10                 net-proxy/c-icap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	11 Oct 2011 17:24:43 -0000	1.9
+++ ChangeLog	21 Oct 2011 23:56:20 -0000	1.10
@@ -1,6 +1,12 @@
 # ChangeLog for net-proxy/c-icap
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.9 2011/10/11 17:24:43 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.10 2011/10/21 23:56:20 flameeyes Exp $
+
+*c-icap-0.1.7-r1 (21 Oct 2011)
+
+  21 Oct 2011; Diego E. Pettenò <flameeyes@gentoo.org>
+  +c-icap-0.1.7-r1.ebuild, +files/c-icap.init.2:
+  Revision bump to use a more OpenRC-designed init script.
 
 *c-icap-0.1.7 (11 Oct 2011)
 



1.1                  net-proxy/c-icap/c-icap-0.1.7-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?rev=1.1&content-type=text/plain

Index: c-icap-0.1.7-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v 1.1 2011/10/21 23:56:20 flameeyes Exp $

EAPI=2

inherit eutils multilib flag-o-matic autotools

MY_PN=${PN/-/_}
MY_P=${MY_PN}-${PV}

DESCRIPTION="C Implementation of an ICAP server"
HOMEPAGE="http://c-icap.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"

LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="berkdb ldap ipv6 ldap"

RDEPEND="berkdb? ( sys-libs/db )
	ldap? ( net-nds/openldap )
	sys-libs/zlib"
DEPEND="${RDEPEND}"
RDEPEND="${RDEPEND}
	sys-apps/openrc"

S="${WORKDIR}/${MY_P}"

src_prepare() {
	epatch "${FILESDIR}/${PN}-0.1.3-asneeded.patch"
	epatch "${FILESDIR}/${PN}-0.1.3-implicit.patch"
	epatch "${FILESDIR}/${PN}-0.1.3+db-5.0.patch"
	epatch "${FILESDIR}/${PN}-0.1.4-crosscompile.patch"
	epatch "${FILESDIR}/${PN}-0.1.6-implicit.patch"
	eautoreconf
}

src_configure() {
	# some void *** pointers get casted around and can be troublesome to
	# fix properly.
	append-flags -fno-strict-aliasing

	econf \
		--sysconfdir=/etc/${PN} \
		--disable-dependency-tracking \
		--disable-maintainer-mode \
		--disable-static \
		--enable-large-files \
		$(use_enable ipv6) \
		$(use_with berkdb bdb) \
		$(use_with ldap)
}

src_compile() {
	emake LOGDIR="/var/log" || die
}

src_install() {
	emake \
		LOGDIR="/var/log" \
		DESTDIR="${D}" install || die

	find "${D}" -name '*.la' -delete || die

	# Move the daemon out of the way
	dodir /usr/libexec
	mv "${D}"/usr/bin/c-icap "${D}"/usr/libexec || die

	# Remove the default configuration files since we have etc-update to
	# take care of it for us.
	rm "${D}"/etc/${PN}/c-icap.*.default || die

	# Fix the configuration file; for some reason it's a bit messy
	# around.
	sed -i \
		-e 's:/usr/var/:/var/:g' \
		-e 's:/var/log/:/var/log/c-icap/:g' \
		-e 's:/usr/etc/:/etc/c-icap/:g' \
		-e 's:/usr/local/c-icap/etc/:/etc/c-icap/:g' \
		-e 's:/usr/lib/:/usr/'$(get_libdir)'/:g' \
		"${D}"/etc/${PN}/c-icap.conf \
		|| die

	dodoc AUTHORS README TODO ChangeLog || die

	newinitd "${FILESDIR}/${PN}.init.2" ${PN} || die
	keepdir /var/log/c-icap || die

	insopts -m0644
	insinto /etc/logrotate.d
	newins "${FILESDIR}"/${PN}.logrotate ${PN}
}

pkg_postinst() {
	elog "To enable Squid to call the ICAP modules from a local server you should set"
	elog "the following in your squid.conf:"
	elog ""
	elog "    icap_enable on"
	elog ""
	elog "    # not strictly needed, but some modules might make use of these"
	elog "    icap_send_client_ip on"
	elog "    icap_send_client_username on"
	elog ""
	elog "    icap_service service_req reqmod_precache bypass=1 icap://localhost:1344/service"
	elog "    adaptation_access service_req allow all"
	elog ""
	elog "    icap_service service_resp respmod_precache bypass=0 icap://localhost:1344/service"
	elog "    adaptation_access service_resp allow all"
	elog ""
	elog "You obviously will have to replace \"service\" with the actual ICAP service to"
	elog "use."
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-proxy/c-icap: c-icap-0.1.7-r1.ebuild ChangeLog
@ 2011-12-11 21:51 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2011-12-11 21:51 UTC (permalink / raw
  To: gentoo-commits

maekke      11/12/11 21:51:52

  Modified:             c-icap-0.1.7-r1.ebuild ChangeLog
  Log:
  add ~arm, bug #389449
  
  (Portage version: 2.1.10.40/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  net-proxy/c-icap/c-icap-0.1.7-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?r1=1.1&r2=1.2

Index: c-icap-0.1.7-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- c-icap-0.1.7-r1.ebuild	21 Oct 2011 23:56:20 -0000	1.1
+++ c-icap-0.1.7-r1.ebuild	11 Dec 2011 21:51:52 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v 1.1 2011/10/21 23:56:20 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v 1.2 2011/12/11 21:51:52 maekke Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE="berkdb ldap ipv6 ldap"
 
 RDEPEND="berkdb? ( sys-libs/db )



1.11                 net-proxy/c-icap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	21 Oct 2011 23:56:20 -0000	1.10
+++ ChangeLog	11 Dec 2011 21:51:52 -0000	1.11
@@ -1,6 +1,9 @@
 # ChangeLog for net-proxy/c-icap
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.10 2011/10/21 23:56:20 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.11 2011/12/11 21:51:52 maekke Exp $
+
+  11 Dec 2011; Markus Meier <maekke@gentoo.org> c-icap-0.1.7-r1.ebuild:
+  add ~arm, bug #389449
 
 *c-icap-0.1.7-r1 (21 Oct 2011)
 






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-proxy/c-icap: c-icap-0.1.7-r1.ebuild ChangeLog
@ 2012-02-24  9:38 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 4+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-02-24  9:38 UTC (permalink / raw
  To: gentoo-commits

ago         12/02/24 09:38:10

  Modified:             c-icap-0.1.7-r1.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #400461
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  net-proxy/c-icap/c-icap-0.1.7-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?r1=1.2&r2=1.3

Index: c-icap-0.1.7-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- c-icap-0.1.7-r1.ebuild	11 Dec 2011 21:51:52 -0000	1.2
+++ c-icap-0.1.7-r1.ebuild	24 Feb 2012 09:38:10 -0000	1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v 1.2 2011/12/11 21:51:52 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v 1.3 2012/02/24 09:38:10 ago Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="berkdb ldap ipv6 ldap"
 
 RDEPEND="berkdb? ( sys-libs/db )



1.12                 net-proxy/c-icap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	11 Dec 2011 21:51:52 -0000	1.11
+++ ChangeLog	24 Feb 2012 09:38:10 -0000	1.12
@@ -1,6 +1,9 @@
 # ChangeLog for net-proxy/c-icap
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.11 2011/12/11 21:51:52 maekke Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.12 2012/02/24 09:38:10 ago Exp $
+
+  24 Feb 2012; Agostino Sarubbo <ago@gentoo.org> c-icap-0.1.7-r1.ebuild:
+  Stable for amd64, wrt bug #400461
 
   11 Dec 2011; Markus Meier <maekke@gentoo.org> c-icap-0.1.7-r1.ebuild:
   add ~arm, bug #389449






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in net-proxy/c-icap: c-icap-0.1.7-r1.ebuild ChangeLog
@ 2012-03-08  9:15 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 4+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2012-03-08  9:15 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    12/03/08 09:15:21

  Modified:             c-icap-0.1.7-r1.ebuild ChangeLog
  Log:
  x86 stable wrt bug #400461
  
  (Portage version: 2.1.10.44/cvs/Linux i686)

Revision  Changes    Path
1.4                  net-proxy/c-icap/c-icap-0.1.7-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild?r1=1.3&r2=1.4

Index: c-icap-0.1.7-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- c-icap-0.1.7-r1.ebuild	24 Feb 2012 09:38:10 -0000	1.3
+++ c-icap-0.1.7-r1.ebuild	8 Mar 2012 09:15:21 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v 1.3 2012/02/24 09:38:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/c-icap-0.1.7-r1.ebuild,v 1.4 2012/03/08 09:15:21 phajdan.jr Exp $
 
 EAPI=2
 
@@ -15,7 +15,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 IUSE="berkdb ldap ipv6 ldap"
 
 RDEPEND="berkdb? ( sys-libs/db )



1.13                 net-proxy/c-icap/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-proxy/c-icap/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	24 Feb 2012 09:38:10 -0000	1.12
+++ ChangeLog	8 Mar 2012 09:15:21 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for net-proxy/c-icap
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.12 2012/02/24 09:38:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-proxy/c-icap/ChangeLog,v 1.13 2012/03/08 09:15:21 phajdan.jr Exp $
+
+  08 Mar 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> c-icap-0.1.7-r1.ebuild:
+  x86 stable wrt bug #400461
 
   24 Feb 2012; Agostino Sarubbo <ago@gentoo.org> c-icap-0.1.7-r1.ebuild:
   Stable for amd64, wrt bug #400461






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-03-08 10:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-08  9:15 [gentoo-commits] gentoo-x86 commit in net-proxy/c-icap: c-icap-0.1.7-r1.ebuild ChangeLog PaweA Hajdan (phajdan.jr)
  -- strict thread matches above, loose matches on Subject: below --
2012-02-24  9:38 Agostino Sarubbo (ago)
2011-12-11 21:51 Markus Meier (maekke)
2011-10-21 23:56 Diego Petteno (flameeyes)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox