commit:     61456ffce0dd6799a4282d6f62780f696caf9c9a
Author:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  8 10:49:06 2020 +0000
Commit:     Sergey Popov <pinkbyte <AT> gentoo <DOT> org>
CommitDate: Tue Dec  8 10:49:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61456ffc

dev-libs/xmlrpc-c: add multilib support

Closes: https://bugs.gentoo.org/597494
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Sergey Popov <pinkbyte <AT> gentoo.org>

 dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r1.ebuild | 74 ++++++++++++++++++++++++++++
 1 file changed, 74 insertions(+)

diff --git a/dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r1.ebuild 
b/dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r1.ebuild
new file mode 100644
index 00000000000..70b804cf737
--- /dev/null
+++ b/dev-libs/xmlrpc-c/xmlrpc-c-1.51.06-r1.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib-minimal
+
+# Upstream maintains 3 release channels: 
http://xmlrpc-c.sourceforge.net/release.html
+# 1. Only the "Super Stable" series is released as a tarball
+# 2. SVN tagging of releases seems spotty: 
http://svn.code.sf.net/p/xmlrpc-c/code/release_number/
+# Because of this, we are following the "Super Stable" release channel
+
+DESCRIPTION="A lightweigt RPC library based on XML and HTTP"
+HOMEPAGE="http://xmlrpc-c.sourceforge.net/";
+SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+
+IUSE="abyss +cgi +curl +cxx +libxml2 threads test"
+
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="test? ( abyss curl cxx )"
+
+RDEPEND="
+       sys-libs/ncurses:0=[${MULTILIB_USEDEP}]
+       sys-libs/readline:0=[${MULTILIB_USEDEP}]
+       curl? ( net-misc/curl[${MULTILIB_USEDEP}] )
+       libxml2? ( dev-libs/libxml2[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}"
+
+pkg_setup() {
+       use curl || ewarn "Curl support disabled: No client library will be 
built"
+}
+
+src_prepare() {
+       sed -i \
+               -e "/CFLAGS_COMMON/s|-g -O3$||" \
+               -e "/CXXFLAGS_COMMON/s|-g$||" \
+               common.mk || die
+
+       default
+
+       # Out-of-source install phase is broken
+       multilib_copy_sources
+}
+
+multilib_src_configure() {
+       ECONF_SOURCE=${S} \
+       econf \
+               --disable-libwww-client \
+               --disable-wininet-client \
+               --without-libwww-ssl \
+               $(use_enable abyss abyss-server) \
+               $(use_enable cgi cgi-server) \
+               $(use_enable curl curl-client) \
+               $(use_enable cxx cplusplus) \
+               $(use_enable libxml2 libxml2-backend) \
+               $(use_enable threads abyss-threads)
+}
+
+multilib_src_compile() {
+       default_src_compile
+       # Tools building is broken in this release
+       #multilib_is_native_abi && use tools && emake -rC "${S}"/tools
+}
+
+#multilib_src_install_all() {
+#      # Tools building is broken in this release
+#      #use tools && emake DESTDIR="${D}" -rC "${S}"/tools install
+#}

Reply via email to