Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
halcy0n 08/11/12 01:15:16
Modified: ChangeLog
Added: xalan-c-1.11.0_pre705082.ebuild
Log:
Bump to a snapshot to fix compilation against xerces-c-3. Thanks a lot to Martin von Gagern <Martin DOT vGagern AT gmx DOT net> for the analysis of this issue; bug #242218
(Portage version: 2.2_rc13/cvs/Linux 2.6.27.1 x86_64)
Revision Changes Path
1.19 dev-libs/xalan-c/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xalan-c/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xalan-c/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xalan-c/ChangeLog?r1=1.18&r2=1.19
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog 9 Aug 2008 09:36:08 -0000 1.18
+++ ChangeLog 12 Nov 2008 01:15:16 -0000 1.19
@@ -1,6 +1,14 @@
# ChangeLog for dev-libs/xalan-c
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v 1.18 2008/08/09 09:36:08 dev-zero Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/xalan-c/ChangeLog,v 1.19 2008/11/12 01:15:16 halcy0n Exp $
+
+*xalan-c-1.11.0_pre705082 (12 Nov 2008)
+
+ 12 Nov 2008; Mark Loeser <halcy0n@g.o>
+ +xalan-c-1.11.0_pre705082.ebuild:
+ Bump to a snapshot to fix compilation against xerces-c-3. Thanks a lot to
+ Martin von Gagern <Martin DOT vGagern AT gmx DOT net> for the analysis of
+ this issue; bug #242218
09 Aug 2008; Tiziano Müller <dev-zero@g.o> xalan-c-1.10.0.ebuild:
Updated xerces-c dependency
1.1 dev-libs/xalan-c/xalan-c-1.11.0_pre705082.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre705082.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/xalan-c/xalan-c-1.11.0_pre705082.ebuild?rev=1.1&content-type=text/plain
Index: xalan-c-1.11.0_pre705082.ebuild
===================================================================
# Copyright 1999-2008 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_pre705082.ebuild,v 1.1 2008/11/12 01:15:16 halcy0n Exp $
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"
RDEPEND=">=dev-libs/xerces-c-2.7.0"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
S="${WORKDIR}"/xml-xalan/c
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e 's/\(debugflag\)="-O.\? /\1="/' \
-e 's/^\(CXXFLAGS\)="$compileroptions/\1="${\1}/' \
-e 's/^\(CFLAGS\)="$compileroptions/\1="${\1}/' \
runConfigure || die "sed failed"
}
src_compile() {
export XALANCROOT=${S}
export XERCESCROOT="/usr/include/xercesc"
append-ldflags -pthread
./runConfigure -p linux -c "$(tc-getCC)" -x "$(tc-getCXX)" -P /usr -C --libdir=/usr/$(get_libdir) || die "configure failed"
emake -j1 || die "emake failed"
if use doc ; then
mkdir build
cd "${S}/xdocs"
doxygen DoxyfileXalan
fi
}
src_install() {
export XALANCROOT=${S}
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README version.incl
dohtml readme.html
if use doc ; then
dodir /usr/share/doc/${PF}
cp -r "${S}/samples" "${D}/usr/share/doc/${PF}"
find "${D}/usr/share/doc/${PF}" -type d -name CVS -exec rm -rf '{}' \; >& /dev/null
dohtml -r build/docs/apiDocs
fi
}
|
|