diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-09-27 13:07:35 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2010-09-27 13:07:35 +0000 |
commit | 592027f8f4eb0080676e85ec4c164b7730f5741d (patch) | |
tree | 2ea748a806e73d818f87254e942ddeca49815639 /app-pda/libopensync | |
parent | Remove packages scheduled for removal. (diff) | |
download | gentoo-2-592027f8f4eb0080676e85ec4c164b7730f5741d.tar.gz gentoo-2-592027f8f4eb0080676e85ec4c164b7730f5741d.tar.bz2 gentoo-2-592027f8f4eb0080676e85ec4c164b7730f5741d.zip |
Remove ebuild version that was always masked; 0.39 is fine.
(Portage version: 2.2_rc87/cvs/Linux x86_64)
Diffstat (limited to 'app-pda/libopensync')
-rw-r--r-- | app-pda/libopensync/ChangeLog | 6 | ||||
-rw-r--r-- | app-pda/libopensync/libopensync-0.38.ebuild | 78 |
2 files changed, 5 insertions, 79 deletions
diff --git a/app-pda/libopensync/ChangeLog b/app-pda/libopensync/ChangeLog index 6bbd48f36126..7c06739b554e 100644 --- a/app-pda/libopensync/ChangeLog +++ b/app-pda/libopensync/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-pda/libopensync # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync/ChangeLog,v 1.36 2010/05/23 20:38:01 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync/ChangeLog,v 1.37 2010/09/27 13:07:35 flameeyes Exp $ + + 27 Sep 2010; Diego E. Pettenò <flameeyes@gentoo.org> + -libopensync-0.38.ebuild: + Remove ebuild version that was always masked; 0.39 is fine. 23 May 2010; Thilo Bangert <bangert@gentoo.org> libopensync-0.39.ebuild: add note about the msynctool -> osynctool switch diff --git a/app-pda/libopensync/libopensync-0.38.ebuild b/app-pda/libopensync/libopensync-0.38.ebuild deleted file mode 100644 index d7a78ddf32ef..000000000000 --- a/app-pda/libopensync/libopensync-0.38.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/libopensync/libopensync-0.38.ebuild,v 1.3 2009/07/05 19:38:19 aballier Exp $ - -inherit cmake-utils eutils - -DESCRIPTION="OpenSync synchronisation framework library" -HOMEPAGE="http://www.opensync.org/" -SRC_URI="http://www.opensync.org/download/releases/${PV}/${P}.tar.bz2" - -KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" -SLOT="0" -LICENSE="LGPL-2.1" -IUSE="debug doc python" - -# Tests don't pass -#>=dev-libs/check-0.9.2 -#mycmakeargs="${mycmakeargs} -DOPENSYNC_UNITTESTS=ON" -RESTRICT="test" - -RDEPEND=">=dev-db/sqlite-3 - >=dev-libs/glib-2 - dev-libs/libxml2 - python? ( >=dev-lang/python-2.2 )" - -DEPEND="${RDEPEND} - python? ( >=dev-lang/swig-1.3.17 ) - >=dev-util/pkgconfig-0.9.0 - doc? ( app-doc/doxygen )" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "$FILESDIR/libopensync-py2.6.patch" -} - -src_compile() { - local mycmakeargs - mycmakeargs="${mycmakeargs} -DCMAKE_SKIP_RPATH=ON - $(cmake-utils_use debug OPENSYNC_TRACE) - $(cmake-utils_use debug OPENSYNC_DEBUG_MODULES) - $(cmake-utils_use python OPENSYNC_PYTHONBINDINGS) - $(cmake-utils_use_build doc DOCUMENTATION) - " - cmake-utils_src_compile - - if use doc ; then - cd "${CMAKE_BUILD_DIR}" - doxygen Doxyfile || die "Failed to generate docs." - fi -} - -src_test() { - echo ">>> Test phase [test]: ${CATEGORY}/${PF}" - - pushd "${CMAKE_BUILD_DIR}" > /dev/null - - if ! LD_LIBRARY_PATH="${CMAKE_BUILD_DIR}/opensync/" emake -j1 test ; then - die "Make test failed. See above for details." - fi - - popd > /dev/null -} - -src_install() { - cmake-utils_src_install - - if use doc ; then - cd "${CMAKE_BUILD_DIR}" - dohtml docs/html/* || die "Failed to install docs." - fi -} - -pkg_postinst() { - elog "Building with 'debug' useflag is highly encouraged" - elog "and requiered for bug reports." - elog "Also see http://www.opensync.org/wiki/tracing" -} |