app-pda/libopensync-plugin-syncml: Bump

git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/linamh@2164 6952d904-891a-0410-993b-d76249ca496b
This commit is contained in:
geos_one 2010-05-09 06:59:56 +00:00
parent 3da08b3b35
commit c4da11f1b5
3 changed files with 51 additions and 2 deletions

View File

@ -1,7 +1,11 @@
# ChangeLog for app-pda/libopensync-plugin-syncml
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync-plugin-syncml/ChangeLog,v 1.11 2008/08/03 12:54:06 ulm Exp $
09 May 2010; Mario Fetka <mario.fetka@gmail.com>
+libopensync-plugin-syncml-0.39.ebuild:
Bump
03 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml:
Add USE flag description to metadata wrt GLEP 56.

View File

@ -1,4 +1,6 @@
DIST libopensync-plugin-syncml-0.38.tar.bz2 50547 RMD160 58df428431712245bc4f4c7aa909ee5393010a9e SHA1 292c74c6d56ba9d6b0dbe4cf483ef7e855207db3 SHA256 f4d3ed5242f7fa81da5b84823d73a3b940049ff3042e27e5b8a52b81a2a455c1
DIST libopensync-plugin-syncml-0.39.tar.bz2 65557 RMD160 df77184f23af9398dad38d595e6f0548ee8a96f0 SHA1 2e00d053dc73d4872f6d40af99b584ca929e6b9b SHA256 fd1bf079d804e7f8d16cec3eb743c0f7df3379f46ae037387b8b06be8392bbdd
EBUILD libopensync-plugin-syncml-0.38.ebuild 1721 RMD160 7e4a624ae26c441cd1d6ccb2bb89af91c880acad SHA1 9d444e85e28efd23e67455e9fcacb941b9312736 SHA256 055646b738be0eb7f996b3d0e55ff6c2d1e9a551915d5d1c214215397139078b
MISC ChangeLog 1852 RMD160 651c46bb7af7cf7867977c4c60c7d86a61fbaec7 SHA1 91f0ea5eb45cddbc92575d15c1bc57834262926b SHA256 7749aebf4873e9c0371910e556cdcd1d5529706863cb15b732c65a94d8b45964
EBUILD libopensync-plugin-syncml-0.39.ebuild 1115 RMD160 1d5bcb9c8f5c842a46e89e083bdb88ec7b71f109 SHA1 bac7e2908cbc0d53acc69ca88ff8c727e36a82c6 SHA256 a78af612506dd81613844a26d85ac562bad3b58bb4ab66ae126fdc36d6d64da7
MISC ChangeLog 1953 RMD160 29bd948d532ec23140546b610b5161b3161b60fb SHA1 f3a86a97a7b19c00443cf843b490a32531f06770 SHA256 6849919d8eafb5be4a0cdb2795107f1d1b98aa43a219bfb188979e25c3dc5724
MISC metadata.xml 364 RMD160 408b0b30de7d795baa419ced6e65315501ce6fdd SHA1 aa168c9eb3f715e5c07d77322a312da061d0b0d0 SHA256 790d641de2c481d0df4d90df39d003ab8c28806d0300b7833c2f1cb22b3242b0

View File

@ -0,0 +1,43 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync-plugin-syncml/libopensync-plugin-syncml-0.39.ebuild,v 1.1 2009/11/15 22:31:27 eva Exp $
EAPI="2"
inherit cmake-utils
DESCRIPTION="OpenSync SyncML Plugin"
HOMEPAGE="http://www.opensync.org/"
SRC_URI="http://www.opensync.org/download/releases/${PV}/${P}.tar.bz2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
LICENSE="LGPL-2.1"
IUSE="http +obex"
RDEPEND=">=app-pda/libopensync-${PV}
dev-libs/glib:2
dev-libs/libxml2
>=app-pda/libsyncml-0.5.0[obex?,http?]"
DEPEND="${RDEPEND}"
# FIXME: % tests passed, 2 tests failed out of 2
RESTRICT="test"
pkg_setup() {
if ! use obex && ! use http; then
eerror "${CATEGORY}/${P} without support for obex nor http is unusable."
eerror "Please enable \"obex\" or/and \"http\" USE flags."
die "Please enable \"obex\" or/and \"http\" USE flags."
fi
}
src_configure() {
DOCS="AUTHORS"
local mycmakeargs="
$(cmake-utils_use_enable http HTTP)
$(cmake-utils_use_enable obex OBEX)"
cmake-utils_src_configure
}