diff options
Diffstat (limited to 'app-pda/libsyncml/libsyncml-0.5.4.ebuild')
-rw-r--r-- | app-pda/libsyncml/libsyncml-0.5.4.ebuild | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/app-pda/libsyncml/libsyncml-0.5.4.ebuild b/app-pda/libsyncml/libsyncml-0.5.4.ebuild deleted file mode 100644 index b83a3e4690df..000000000000 --- a/app-pda/libsyncml/libsyncml-0.5.4.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit cmake-utils - -DESCRIPTION="Implementation of the SyncML protocol" -HOMEPAGE="http://libsyncml.opensync.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -KEYWORDS="~amd64 ~ppc ~x86" -SLOT="0" -LICENSE="LGPL-2.1" -IUSE="debug doc http +obex test" - -# bluetooth and obex merged because bluetooth support in obex backend is -# automagic, bug #285040 -# libsoup:2.2 is forced off to avoid automagic -RDEPEND=">=dev-libs/glib-2.12 - >=dev-libs/libwbxml-0.11.0 - dev-libs/libxml2 - http? ( net-libs/libsoup:2.4 ) - obex? ( - net-wireless/bluez - >=dev-libs/openobex-1.1[bluetooth] )" -DEPEND="${RDEPEND} - virtual/pkgconfig - doc? ( app-doc/doxygen ) - test? ( >=dev-libs/check-0.9.7 )" - -REQUIRED_USE="|| ( http obex )" - -DOCS="AUTHORS CODING ChangeLog RELEASE" - -src_prepare() { - # https://bugs.gentoo.org/425738 - sed -i \ - -e '/include/s:wbxml.h:wbxml/&:' \ - libsyncml/parser/sml_wbxml_internals.h tests/mobiles/obex_mobile_ds_client.c || die -} - -src_configure() { - local mycmakeargs=( - -DHAVE_LIBSOUP22=OFF - -DDOC_INSTALL_DIR=/usr/share/doc/${PF} - $(cmake-utils_use_enable debug TRACE) - $(cmake-utils_use_enable http HTTP) - $(cmake-utils_use_enable obex OBEX) - $(cmake-utils_use_enable obex BLUETOOTH) - $(cmake-utils_use_enable test UNIT_TEST) - ) - - if use http && use obex; then - # Doc builds with those previous USE flags only - mycmakeargs+=( $(cmake-utils_use_build doc DOCUMENTATION) ) - fi - - cmake-utils_src_configure -} |