diff options
author | Tiziano Müller <dev-zero@gentoo.org> | 2012-06-01 20:50:58 +0000 |
---|---|---|
committer | Tiziano Müller <dev-zero@gentoo.org> | 2012-06-01 20:50:58 +0000 |
commit | 65a6a4b349491c3afecd67e26596f23c290b5905 (patch) | |
tree | 78d8ddc16d7d7b958a854ac2f2b7ba6e83bf121e | |
parent | Stable for x86, wrt bug #419005 (diff) | |
download | gentoo-2-65a6a4b349491c3afecd67e26596f23c290b5905.tar.gz gentoo-2-65a6a4b349491c3afecd67e26596f23c290b5905.tar.bz2 gentoo-2-65a6a4b349491c3afecd67e26596f23c290b5905.zip |
Version and EAPI bump, pass the boost-filesystem-2 definition to build's pp options instead of using append-flags.
(Portage version: 2.1.10.56/cvs/Linux x86_64)
-rw-r--r-- | dev-cpp/libxsd-frontend/ChangeLog | 11 | ||||
-rw-r--r-- | dev-cpp/libxsd-frontend/libxsd-frontend-1.18.0.ebuild | 94 |
2 files changed, 103 insertions, 2 deletions
diff --git a/dev-cpp/libxsd-frontend/ChangeLog b/dev-cpp/libxsd-frontend/ChangeLog index 9983a7466c0a..d7e8b8c5c904 100644 --- a/dev-cpp/libxsd-frontend/ChangeLog +++ b/dev-cpp/libxsd-frontend/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-cpp/libxsd-frontend -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libxsd-frontend/ChangeLog,v 1.2 2011/08/04 10:25:18 hwoarang Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libxsd-frontend/ChangeLog,v 1.3 2012/06/01 20:50:58 dev-zero Exp $ + +*libxsd-frontend-1.18.0 (01 Jun 2012) + + 01 Jun 2012; Tiziano Müller <dev-zero@gentoo.org> + +libxsd-frontend-1.18.0.ebuild: + Version and EAPI bump, pass the boost-filesystem-2 definition to build's pp + options instead of using append-flags. 04 Aug 2011; Markos Chandras <hwoarang@gentoo.org> libxsd-frontend-1.17.0.ebuild: diff --git a/dev-cpp/libxsd-frontend/libxsd-frontend-1.18.0.ebuild b/dev-cpp/libxsd-frontend/libxsd-frontend-1.18.0.ebuild new file mode 100644 index 000000000000..bdb3c0209083 --- /dev/null +++ b/dev-cpp/libxsd-frontend/libxsd-frontend-1.18.0.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libxsd-frontend/libxsd-frontend-1.18.0.ebuild,v 1.1 2012/06/01 20:50:58 dev-zero Exp $ + +EAPI="4" + +inherit toolchain-funcs versionator + +DESCRIPTION="A compiler frontend for the W3C XML Schema definition language." +HOMEPAGE="http://www.codesynthesis.com/projects/libxsd-frontend/" +SRC_URI="http://www.codesynthesis.com/download/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-libs/xerces-c-3 + dev-libs/boost + >=dev-cpp/libcult-1.4.6-r1 + >=dev-cpp/libfrontend-elements-1.1.4" +DEPEND="${RDEPEND} + dev-util/build:0.3" + +src_configure() { + BOOST_PKG="$(best_version ">=dev-libs/boost-1.35.0-r5")" + BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")" + BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")" + BOOST_INC="/usr/include/boost-${BOOST_VER}" + + mkdir -p \ + build/{ld,cxx/gnu} \ + build/import/lib{boost,cult,frontend-elements,xerces-c} + + cat >> build/cxx/configuration-dynamic.make <<- EOF +cxx_id := gnu +cxx_optimize := n +cxx_debug := n +cxx_rpath := n +cxx_pp_extra_options := -DBOOST_FILESYSTEM_VERSION=2 +cxx_extra_options := ${CXXFLAGS} -I${BOOST_INC} +cxx_ld_extra_options := ${LDFLAGS} +cxx_extra_libs := +cxx_extra_lib_paths := + EOF + + cat >> build/cxx/gnu/configuration-dynamic.make <<- EOF +cxx_gnu := $(tc-getCXX) +cxx_gnu_libraries := +cxx_gnu_optimization_options := + EOF + + cat >> build/import/libboost/configuration-dynamic.make <<- EOF +libboost_installed := y +libboost_suffix := -mt-${BOOST_VER} + EOF + cat >> build/import/libcult/configuration-dynamic.make <<- EOF +libcult_installed := y + EOF + + cat >> build/ld/configuration-lib-dynamic.make <<- EOF +ld_lib_type := shared + EOF + + cat >> build/import/libfrontend-elements/configuration-dynamic.make <<- EOF +libfrontend_elements_installed := y + EOF + + cat >> build/import/libxerces-c/configuration-dynamic.make <<- EOF +libxerces_c_installed := y + EOF + + MAKEOPTS+=" verbose=1" +} + +src_install() { + dolib.so xsd-frontend/libxsd-frontend.so + + find xsd-frontend -iname "*.cxx" \ + -o -iname "makefile" \ + -o -iname "*.o" -o -iname "*.d" \ + -o -iname "*.m4" -o -iname "*.l" \ + -o -iname "*.cpp-options" -o -iname "*.so" | xargs rm -f + rm -rf xsd-frontend/arch + + insinto /usr/include + doins -r xsd-frontend + + dodoc NEWS README +} + +src_test() { + export LD_LIBRARY_PATH="${S}/xsd-frontend:${LD_LIBRARY_PATH}" + default +} |