public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.3.ebuild
@ 2009-03-07 15:13 Raul Porcel (armin76)
  0 siblings, 0 replies; 3+ messages in thread
From: Raul Porcel (armin76) @ 2009-03-07 15:13 UTC (permalink / raw
  To: gentoo-commits

armin76     09/03/07 15:13:55

  Modified:             ChangeLog
  Added:                commoncpp2-1.6.3.ebuild
  Log:
  Version bump
  (Portage version: 2.1.6.7/cvs/Linux i686)

Revision  Changes    Path
1.44                 dev-cpp/commoncpp2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.44&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.44&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?r1=1.43&r2=1.44

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -r1.43 -r1.44
--- ChangeLog	7 Mar 2009 14:57:13 -0000	1.43
+++ ChangeLog	7 Mar 2009 15:13:55 -0000	1.44
@@ -1,6 +1,12 @@
 # ChangeLog for dev-cpp/commoncpp2
 # Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.43 2009/03/07 14:57:13 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.44 2009/03/07 15:13:55 armin76 Exp $
+
+*commoncpp2-1.6.3 (07 Mar 2009)
+
+  07 Mar 2009; Raúl Porcel <armin76@gentoo.org>
+  +files/1.6.3-autoconf.patch, +commoncpp2-1.6.3.ebuild:
+  Version bump
 
   07 Mar 2009; Raúl Porcel <armin76@gentoo.org>
   +files/1.6.2-configure_detect_netfilter.patch, commoncpp2-1.6.1.ebuild,



1.1                  dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild?rev=1.1&content-type=text/plain

Index: commoncpp2-1.6.3.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild,v 1.1 2009/03/07 15:13:55 armin76 Exp $

inherit eutils autotools

DESCRIPTION="GNU Common C++ is a C++ framework offering portable support for threading, sockets, file access, daemons, persistence, serial I/O, XML parsing, and system services"
SRC_URI="mirror://gnu/commoncpp/${P}.tar.gz"
HOMEPAGE="http://www.gnu.org/software/commoncpp/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="debug doc examples ipv6 gnutls"

RDEPEND="gnutls? ( dev-libs/libgcrypt
		net-libs/gnutls )
	!gnutls? ( dev-libs/openssl )
	sys-libs/zlib"
DEPEND="doc? ( >=app-doc/doxygen-1.3.6 )
	${RDEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"

	epatch "${FILESDIR}/1.6.1-gcc42_atomicity.patch"
	epatch "${FILESDIR}/${PV}-autoconf.patch"
	epatch "${FILESDIR}/1.6.2-configure_detect_netfilter.patch" # bug 236177
		
	AT_M4DIR="m4" eautoreconf
}

src_compile() {
	use doc || \
		sed -i "s/^DOXYGEN=.*/DOXYGEN=no/" configure || die "sed failed"

	local myconf
	use gnutls || myconf="--with-openssl"

	econf \
		$(use_enable debug) \
		$(use_with ipv6 ) \
		${myconf} || die "econf failed"
	emake -j1 || die "emake failed"
}

src_install () {
	emake DESTDIR="${D}" install || die "emake install failed"

	dodoc AUTHORS NEWS ChangeLog README THANKS TODO COPYING.addendum

	# Only install html docs
	# man and latex available, but seems a little wasteful
	use doc && dohtml doc/html/*

	if use examples ; then
		insinto /usr/share/doc/${PF}/examples
		cd demo
		doins *.cpp *.h *.xml README
	fi
}

pkg_postinst() {
	ewarn "There's a change in the ABI between version 1.5.x and 1.6.x, please"
	ewarn "run the following command to find broken packages and rebuild them:"
	ewarn "    revdep-rebuild --library=libccext2-1.5.so"
}

# Some of the tests hang forever
#src_test() {
#	cd "${S}/tests"
#	emake || die "emake tests failed"
#	./test.sh || die "tests failed"
#}






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.3.ebuild
@ 2009-05-03 16:04 Arfrever Frehtes Taifersar Arahesis (arfrever)
  0 siblings, 0 replies; 3+ messages in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-05-03 16:04 UTC (permalink / raw
  To: gentoo-commits

arfrever    09/05/03 16:04:44

  Modified:             ChangeLog commoncpp2-1.6.3.ebuild
  Log:
  Respect USE="gnutls".
  (Portage version: 13599-svn/cvs/Linux x86_64)

Revision  Changes    Path
1.48                 dev-cpp/commoncpp2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.48&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.48&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?r1=1.47&r2=1.48

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	22 Mar 2009 17:45:22 -0000	1.47
+++ ChangeLog	3 May 2009 16:04:44 -0000	1.48
@@ -1,6 +1,10 @@
 # ChangeLog for dev-cpp/commoncpp2
-# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.47 2009/03/22 17:45:22 maekke Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.48 2009/05/03 16:04:44 arfrever Exp $
+
+  03 May 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+  commoncpp2-1.6.3.ebuild:
+  Respect USE="gnutls".
 
   22 Mar 2009; Markus Meier <maekke@gentoo.org> commoncpp2-1.6.2.ebuild:
   amd64 stable, bug #261567



1.3                  dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild?r1=1.2&r2=1.3

Index: commoncpp2-1.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- commoncpp2-1.6.3.ebuild	9 Mar 2009 04:21:03 -0000	1.2
+++ commoncpp2-1.6.3.ebuild	3 May 2009 16:04:44 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild,v 1.2 2009/03/09 04:21:03 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild,v 1.3 2009/05/03 16:04:44 arfrever Exp $
 
 inherit eutils autotools
 
@@ -35,12 +35,16 @@
 		sed -i "s/^DOXYGEN=.*/DOXYGEN=no/" configure || die "sed failed"
 
 	local myconf
-	use gnutls || myconf="--with-openssl"
+	if use gnutls; then
+		myconf="--with-gnutls --without-openssl"
+	else
+		myconf="--without-gnutls --with-openssl"
+	fi
 
 	econf \
 		$(use_enable debug) \
 		$(use_with ipv6 ) \
-		${myconf} || die "econf failed"
+		${myconf}
 	emake -j1 || die "emake failed"
 }
 






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

* [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.3.ebuild
@ 2009-07-30  7:58 Ryan Hill (dirtyepic)
  0 siblings, 0 replies; 3+ messages in thread
From: Ryan Hill (dirtyepic) @ 2009-07-30  7:58 UTC (permalink / raw
  To: gentoo-commits

dirtyepic    09/07/30 07:58:34

  Modified:             ChangeLog commoncpp2-1.6.3.ebuild
  Log:
  Fix build w/ glibc-2.10. (bug #275750)
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.49                 dev-cpp/commoncpp2/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.49&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?rev=1.49&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/ChangeLog?r1=1.48&r2=1.49

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	3 May 2009 16:04:44 -0000	1.48
+++ ChangeLog	30 Jul 2009 07:58:34 -0000	1.49
@@ -1,6 +1,10 @@
 # ChangeLog for dev-cpp/commoncpp2
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.48 2009/05/03 16:04:44 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/ChangeLog,v 1.49 2009/07/30 07:58:34 dirtyepic Exp $
+
+  30 Jul 2009; Ryan Hill <dirtyepic@gentoo.org> commoncpp2-1.6.3.ebuild,
+  +files/commoncpp2-1.6.3-glibc-2.10.patch:
+  Fix build w/ glibc-2.10. (bug #275750)
 
   03 May 2009; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
   commoncpp2-1.6.3.ebuild:



1.4                  dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild?r1=1.3&r2=1.4

Index: commoncpp2-1.6.3.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- commoncpp2-1.6.3.ebuild	3 May 2009 16:04:44 -0000	1.3
+++ commoncpp2-1.6.3.ebuild	30 Jul 2009 07:58:34 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild,v 1.3 2009/05/03 16:04:44 arfrever Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-cpp/commoncpp2/commoncpp2-1.6.3.ebuild,v 1.4 2009/07/30 07:58:34 dirtyepic Exp $
 
 inherit eutils autotools
 
@@ -26,6 +26,7 @@
 	epatch "${FILESDIR}/1.6.1-gcc42_atomicity.patch"
 	epatch "${FILESDIR}/${PV}-autoconf.patch"
 	epatch "${FILESDIR}/1.6.2-configure_detect_netfilter.patch" # bug 236177
+	epatch "${FILESDIR}/${P}-glibc-2.10.patch"
 
 	AT_M4DIR="m4" eautoreconf
 }






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

end of thread, other threads:[~2009-07-30  7:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-03 16:04 [gentoo-commits] gentoo-x86 commit in dev-cpp/commoncpp2: ChangeLog commoncpp2-1.6.3.ebuild Arfrever Frehtes Taifersar Arahesis (arfrever)
  -- strict thread matches above, loose matches on Subject: below --
2009-07-30  7:58 Ryan Hill (dirtyepic)
2009-03-07 15:13 Raul Porcel (armin76)

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