public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/xalan-c: ChangeLog xalan-c-1.11.0_pre1153059.ebuild
@ 2011-08-04 12:34 Tiziano Mueller (dev-zero)
  0 siblings, 0 replies; 3+ messages in thread
From: Tiziano Mueller (dev-zero) @ 2011-08-04 12:34 UTC (permalink / raw
  To: gentoo-commits

dev-zero    11/08/04 12:34:59

  Modified:             ChangeLog
  Added:                xalan-c-1.11.0_pre1153059.ebuild
  Log:
  Version bump, fixes compilation with gcc-4.6 (bug #363531). Also fixed compilation with USE=-nls (bug #373035) and use EAPI-4.
  
  (Portage version: 2.1.10.6/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 dev-libs/xalan-c/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/ChangeLog?rev=1.28&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/ChangeLog?rev=1.28&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/ChangeLog?r1=1.27&r2=1.28

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	25 Feb 2011 17:15:29 -0000	1.27
+++ ChangeLog	4 Aug 2011 12:34:59 -0000	1.28
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/xalan-c
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v 1.27 2011/02/25 17:15:29 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v 1.28 2011/08/04 12:34:59 dev-zero Exp $
+
+*xalan-c-1.11.0_pre1153059 (04 Aug 2011)
+
+  04 Aug 2011; Tiziano Müller <dev-zero@gentoo.org>
+  +xalan-c-1.11.0_pre1153059.ebuild:
+  Version bump, fixes compilation with gcc-4.6 (bug #363531). Also fixed
+  compilation with USE=-nls (bug #373035) and use EAPI-4.
 
   25 Feb 2011; Tiziano Müller <dev-zero@gentoo.org>
   xalan-c-1.11.0_pre797991.ebuild:



1.1                  dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild?rev=1.1&content-type=text/plain

Index: xalan-c-1.11.0_pre1153059.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild,v 1.1 2011/08/04 12:34:59 dev-zero Exp $

EAPI="4"

inherit toolchain-funcs eutils flag-o-matic multilib

DESCRIPTION="XSLT processor for transforming XML into HTML, text, or other XML types"
HOMEPAGE="http://xml.apache.org/xalan-c/"
SRC_URI="mirror://gentoo/Xalan-C_r${PV#*_pre}-src.tar.gz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc examples nls threads"

RDEPEND=">=dev-libs/xerces-c-2.8.0"
#	icu? ( dev-libs/icu )"
DEPEND="${RDEPEND}
	doc? ( app-doc/doxygen )"

S="${WORKDIR}/xml-xalan/c"

pkg_setup() {
#	export ICUROOT="/usr"
	export XALANCROOT="${S}"
}

src_prepare() {
	epatch \
		"${FILESDIR}/1.11.0_pre797991-as-needed.patch" \
		"${FILESDIR}/1.11.0_pre797991-bugfixes.patch" \
		"${FILESDIR}/1.11.0_pre797991-parallel-build.patch"

	# - do not run configure in runConfigure
	# - echo the export commands instead exporting the vars
	# - remove -O3
	# - make sure our {C,CXX}FLAGS get respected
	sed -i \
		-e '/\/configure/d' \
		-e 's/^export \([a-zA-Z_]*\)/echo export \1=\\"$\1\\"/' \
		-e 's/\(debugflag\)="-O.\? /\1="/' \
		-e 's/^\(CXXFLAGS\)="$compileroptions/\1="${\1}/' \
		-e 's/^\(CFLAGS\)="$compileroptions/\1="${\1}/' \
		runConfigure || die "sed failed"
}

src_configure() {
	export XERCESCROOT="/usr"

	local target="linux"
	# add more if needed, see xerces-c-2.8.0-r1 ebuild

	local mloader="inmem"
	use nls && mloader="nls"
#	use icu && mloader="icu"

	local transcoder="default"
#	use icu && transcoder="icu"

	local thread="none"
	use threads && thread="pthread"

	local bitstobuild="32"
	$(has_m64) && bitstobuild="64"

	./runConfigure -p ${target} -c "$(tc-getCC)" -x "$(tc-getCXX)" \
		-m ${mloader} -t ${transcoder} \
		-r ${thread} -b ${bitstobuild} > configure.vars || die "runConfigure failed"

	eval $(grep export configure.vars)

	default
}

src_compile() {
	default

	if use doc ; then
		mkdir build
		cd "${S}/xdocs"
		doxygen DoxyfileXalan
	fi
}

src_install() {
	default

	if use doc ; then
		dodir /usr/share/doc/${PF}
		dohtml -r build/docs/apiDocs/*
	fi

	if use examples ; then
		insinto /usr/share/doc/${PF}/examples
		doins -r samples/*
	fi
}

pkg_postinst() {
	ewarn "If you are upgrading you should run"
	ewarn "    revdep-rebuild --library=libxalan-c.so.110"
	ewarn "if using portage or"
	ewarn "    reconcilio --library libxalan-c.so.110"
	ewarn "if using paludis as your package manager."
}






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/xalan-c: ChangeLog xalan-c-1.11.0_pre1153059.ebuild
@ 2011-09-16 12:35 Tony Vroon (chainsaw)
  0 siblings, 0 replies; 3+ messages in thread
From: Tony Vroon (chainsaw) @ 2011-09-16 12:35 UTC (permalink / raw
  To: gentoo-commits

chainsaw    11/09/16 12:35:29

  Modified:             ChangeLog xalan-c-1.11.0_pre1153059.ebuild
  Log:
  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Ian "idella4" Delaney in bug #382781.
  
  (Portage version: 2.1.10.16/cvs/Linux x86_64)

Revision  Changes    Path
1.29                 dev-libs/xalan-c/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/ChangeLog?rev=1.29&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/ChangeLog?rev=1.29&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/ChangeLog?r1=1.28&r2=1.29

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	4 Aug 2011 12:34:59 -0000	1.28
+++ ChangeLog	16 Sep 2011 12:35:29 -0000	1.29
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/xalan-c
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v 1.28 2011/08/04 12:34:59 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v 1.29 2011/09/16 12:35:29 chainsaw Exp $
+
+  16 Sep 2011; Tony Vroon <chainsaw@gentoo.org>
+  xalan-c-1.11.0_pre1153059.ebuild:
+  Marked stable on AMD64 based on arch testing by Agostino "ago" Sarubbo & Ian
+  "idella4" Delaney in bug #382781.
 
 *xalan-c-1.11.0_pre1153059 (04 Aug 2011)
 



1.2                  dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild?r1=1.1&r2=1.2

Index: xalan-c-1.11.0_pre1153059.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xalan-c-1.11.0_pre1153059.ebuild	4 Aug 2011 12:34:59 -0000	1.1
+++ xalan-c-1.11.0_pre1153059.ebuild	16 Sep 2011 12:35:29 -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/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild,v 1.1 2011/08/04 12:34:59 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild,v 1.2 2011/09/16 12:35:29 chainsaw Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
 IUSE="doc examples nls threads"
 
 RDEPEND=">=dev-libs/xerces-c-2.8.0"






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

* [gentoo-commits] gentoo-x86 commit in dev-libs/xalan-c: ChangeLog xalan-c-1.11.0_pre1153059.ebuild
@ 2011-09-18 21:49 Markus Meier (maekke)
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Meier (maekke) @ 2011-09-18 21:49 UTC (permalink / raw
  To: gentoo-commits

maekke      11/09/18 21:49:08

  Modified:             ChangeLog xalan-c-1.11.0_pre1153059.ebuild
  Log:
  x86 stable, bug #382781
  
  (Portage version: 2.1.10.18/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 dev-libs/xalan-c/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/ChangeLog?rev=1.30&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/ChangeLog?rev=1.30&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/ChangeLog?r1=1.29&r2=1.30

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	16 Sep 2011 12:35:29 -0000	1.29
+++ ChangeLog	18 Sep 2011 21:49:08 -0000	1.30
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/xalan-c
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v 1.29 2011/09/16 12:35:29 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v 1.30 2011/09/18 21:49:08 maekke Exp $
+
+  18 Sep 2011; Markus Meier <maekke@gentoo.org>
+  xalan-c-1.11.0_pre1153059.ebuild:
+  x86 stable, bug #382781
 
   16 Sep 2011; Tony Vroon <chainsaw@gentoo.org>
   xalan-c-1.11.0_pre1153059.ebuild:



1.3                  dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild?r1=1.2&r2=1.3

Index: xalan-c-1.11.0_pre1153059.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xalan-c-1.11.0_pre1153059.ebuild	16 Sep 2011 12:35:29 -0000	1.2
+++ xalan-c-1.11.0_pre1153059.ebuild	18 Sep 2011 21:49:08 -0000	1.3
@@ -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/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild,v 1.2 2011/09/16 12:35:29 chainsaw Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre1153059.ebuild,v 1.3 2011/09/18 21:49:08 maekke Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE="doc examples nls threads"
 
 RDEPEND=">=dev-libs/xerces-c-2.8.0"






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

end of thread, other threads:[~2011-09-18 21:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04 12:34 [gentoo-commits] gentoo-x86 commit in dev-libs/xalan-c: ChangeLog xalan-c-1.11.0_pre1153059.ebuild Tiziano Mueller (dev-zero)
  -- strict thread matches above, loose matches on Subject: below --
2011-09-16 12:35 Tony Vroon (chainsaw)
2011-09-18 21:49 Markus Meier (maekke)

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