diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-libs/dbxml | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-libs/dbxml')
-rw-r--r-- | dev-libs/dbxml/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/dbxml/dbxml-2.5.16-r2.ebuild | 197 | ||||
-rw-r--r-- | dev-libs/dbxml/files/2.5.16-respect-ldflags-no-rpath.patch | 18 | ||||
-rw-r--r-- | dev-libs/dbxml/metadata.xml | 8 |
4 files changed, 224 insertions, 0 deletions
diff --git a/dev-libs/dbxml/Manifest b/dev-libs/dbxml/Manifest new file mode 100644 index 000000000000..80a294db9a34 --- /dev/null +++ b/dev-libs/dbxml/Manifest @@ -0,0 +1 @@ +DIST dbxml-2.5.16.tar.gz 52819154 SHA256 f2423be3805811a9cca71d6877c0b1bdc1941cd76c3f26d6eb011a5724a3edd2 SHA512 71c7db8dccd8dda64aafc2c8399129f94cb2c5b0b75176b96e3f6c57b5cd9d040418de2fdce9322f0b7f00bcd88a21aca1e2b886cf18aba942c582236d7bdc7b WHIRLPOOL 85a67e577948aebba7dcfb833aa90ab14c0d04a66e003bf878bd5655c62a26e54e7f90279d29f29c77726cb37452e9cbe13b82fe06ce92cb061fdbb119aa7670 diff --git a/dev-libs/dbxml/dbxml-2.5.16-r2.ebuild b/dev-libs/dbxml/dbxml-2.5.16-r2.ebuild new file mode 100644 index 000000000000..a816963b238d --- /dev/null +++ b/dev-libs/dbxml/dbxml-2.5.16-r2.ebuild @@ -0,0 +1,197 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="5" +PYTHON_DEPEND="python? 2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.* *-jython" + +inherit autotools distutils flag-o-matic perl-app eutils versionator libtool multilib java-pkg-opt-2 + +MY_PV="$(get_version_component_range 1-3)" +MY_P="${PN}-${MY_PV}" +PATCH_V="$(get_version_component_range 4)" +PATCH_V="${PATCH_V:-0}" +DB_VER="4.8" + +DESCRIPTION="BerkeleyDB XML, a native XML database from the BerkeleyDB team" +HOMEPAGE="http://www.oracle.com/technetwork/database/berkeleydb/index-083851.html + http://download.oracle.com/otndocs/products/berkeleydb/html/$(get_version_component_range 1-2).html" +SRC_URI="http://download-east.oracle.com/berkeley-db/${MY_P}.tar.gz + http://download-west.oracle.com/berkeley-db/${MY_P}.tar.gz + http://download-uk.oracle.com/berkeley-db/${MY_P}.tar.gz" + +LICENSE="Sleepycat Apache-1.1 BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples java perl python tcl" + +RDEPEND="sys-libs/db:${DB_VER}[cxx,java?] + >=dev-libs/xerces-c-3 + =dev-libs/xqilla-2.2* + sys-libs/zlib + perl? ( dev-lang/perl ) + python? ( + >=dev-python/bsddb3-4.8.0 ) + tcl? ( dev-lang/tcl:0= ) + java? ( >=virtual/jre-1.5 )" +DEPEND="${RDEPEND} + sys-devel/libtool + java? ( >=virtual/jdk-1.5 )" + +# return a list of patches calculated using the micro-version +get_patches() { + local patches="" + for (( patch_v=1 ; patch_v <= ${PATCH_V} ; patch_v++ )) ; do + patches="${patches} patch.${MY_PV}.${patch_v}" + done + echo ${patches} +} +MYPATCHES="$(get_patches)" + +for patch in ${MYPATCHES} ; do + SRC_URI="${SRC_URI} http://www.oracle.com/technology/products/berkeley-db/xml/update/${MY_PV}/${patch}" +done + +S="${WORKDIR}/${MY_P}/dbxml" + +src_unpack() { + tar xzpf "${DISTDIR}/${MY_P}.tar.gz" ${MY_P}/dbxml || die "unpacking package failed" + for patch in ${MYPATCHES} ; do + cp "${DISTDIR}/${patch}" "${WORKDIR}" || die "copying patch ${patch} failed" + done +} + +src_prepare() { + for patch in ${MYPATCHES} ; do + edos2unix "${WORKDIR}/${patch}" + epatch "${WORKDIR}/${patch}" + done + + epatch "${FILESDIR}/${PV}-respect-ldflags-no-rpath.patch" + + # sys-libs/db is slotted on Gentoo + sed -i \ + -e "s:db_version=.*:db_version=${DB_VER}:" \ + dist/aclocal/options.ac configure || die "sed failed" + + if use java ; then + sed -i \ + -e "s|\$with_berkeleydb/lib/db.jar|$(java-pkg_getjars db-${DB_VER})|" \ + dist/aclocal/options.ac configure || die "sed failed" + fi + + # * Fix libraries to link + # * Strip "../../build_unix/.libs" from LIBPATH or it'll + # show up in the RPATH entry + sed -i \ + -e "s|dbxml-2|dbxml-$(get_version_component_range 1-2)|" \ + -e "s|db-4|db-${DB_VER}|" \ + -e 's|dbxml_home = .*|dbxml_home = "../.."|' \ + -e 's|"../../build_unix/.libs",||' \ + src/python/setup.py.in || die "sed failed" + + sed -i \ + -e "s|dbxml-2|dbxml-$(get_version_component_range 1-2)|" \ + -e "s|db_cxx-4|db_cxx-${DB_VER}|" \ + -e "s|@DB_DIR@/lib|/usr/$(get_libdir)|" \ + -e "s|@DB_DIR@/include|/usr/include/db${DB_VER}|" \ + -e "s|@XERCES_DIR@/lib|/usr/$(get_libdir)|" \ + -e "s|@XQILLA_DIR@/lib|/usr/$(get_libdir)|" \ + src/perl/config.in || die "sed failed" + + # avoid the automake/autoconf run in src_{configure,compile} + eautoreconf +} + +src_configure() { + cd "${S}/build_unix" + + #Needed despite db_version stuff above + append-flags -I"${EPREFIX}"/usr/include/db${DB_VER} + + local myconf="" + + # use_enable doesn't work here due to a different syntax + use java && myconf="${myconf} --enable-java" + use tcl && myconf="${myconf} --enable-tcl --with-tcl=${EPREFIX}/usr/$(get_libdir)" + + export ac_cv_prog_path_strip="missing_strip" + ECONF_SOURCE="../" \ + JAVAPREFIX="${JAVA_HOME}" \ + econf \ + --with-berkeleydb="${EPREFIX}"/usr \ + --with-xqilla="${EPREFIX}"/usr \ + --with-xerces="${EPREFIX}"/usr \ + ${myconf} +} + +src_compile() { + cd "${S}/build_unix" + + default + + if use python ; then + einfo "Compiling python extension" + cd "${S}/src/python" + append-cflags "-I../../include" + append-ldflags "-L../../build_unix/.libs" + distutils_src_compile + fi + + if use perl ; then + cd "${S}/src/perl" + perl-app_src_prep + perl-app_src_compile + fi +} + +src_install() { + cd "${S}/build_unix" + + # somewhat broken build system + emake DESTDIR="${D}" install || die "emake install failed" + + use doc && dohtml -A pdf -r "${ED}"/usr/docs/* + rm -rf "${ED}/usr/docs" + + if use java ; then + java-pkg_dojar "${ED}/usr/$(get_libdir)/dbxml.jar" + rm "${ED}/usr/$(get_libdir)/dbxml.jar" + fi + + if use python ; then + cd "${S}/src/python" + distutils_src_install + fi + + if use perl ; then + cd "${S}/src/perl" + emake DESTDIR="${D}" install || die "emake install perl module failed" + perl_delete_localpod + fi + + if use examples ; then + insinto /usr/share/doc/${PF} + doins -r "${S}/examples" + fi + +} + +pkg_preinst() { + perl_set_version + java-pkg-opt-2_pkg_preinst +} + +pkg_postinst() { + if use python ; then + python_mod_optimize dbxml.py + fi +} + +pkg_postrm() { + if use python ; then + python_mod_cleanup dbxml.py + fi +} diff --git a/dev-libs/dbxml/files/2.5.16-respect-ldflags-no-rpath.patch b/dev-libs/dbxml/files/2.5.16-respect-ldflags-no-rpath.patch new file mode 100644 index 000000000000..d752941ab530 --- /dev/null +++ b/dev-libs/dbxml/files/2.5.16-respect-ldflags-no-rpath.patch @@ -0,0 +1,18 @@ +diff --git a/Makefile.am b/Makefile.am +index 567aaf9..281c782 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -60,10 +60,10 @@ endif + # Global flags + ################################################## + +-CPPFLAGS = -I$(top_srcdir)/include/ -I$(top_srcdir)/src/dbxml -I$(top_srcdir)/src/common \ ++CPPFLAGS += -I$(top_srcdir)/include/ -I$(top_srcdir)/src/dbxml -I$(top_srcdir)/src/common \ + $(berkeleydb_include) $(xqilla_include) $(xerces_include) $(zlib_include) +-LDFLAGS = -L$(berkeleydb_lib) -R$(berkeleydb_lib) -L$(xqilla_lib) -R$(xqilla_lib) \ +- -L$(xerces_lib) -R$(xerces_lib) $(zlib_lib) -l$(berkeleydb_library) -lxqilla -lxerces-c $(zlib_library) ++LDFLAGS += -L$(berkeleydb_lib) -L$(xqilla_lib) \ ++ -L$(xerces_lib) $(zlib_lib) -l$(berkeleydb_library) -lxqilla -lxerces-c $(zlib_library) + LDADD = libdbxml.la + + ################################################## diff --git a/dev-libs/dbxml/metadata.xml b/dev-libs/dbxml/metadata.xml new file mode 100644 index 000000000000..31c8b99f54a1 --- /dev/null +++ b/dev-libs/dbxml/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<maintainer> + <email>dev-zero@gentoo.org</email> + <name>Tiziano Müller</name> +</maintainer> +</pkgmetadata> |