summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2012-11-28 17:50:28 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2012-11-28 17:50:28 +0000
commitcc291938d71fc18d7646d7b93aecb872003fc726 (patch)
tree1221bfc6a99f3cb22be05b7ce68d106db505cb8e /app-pda/synce-core
parentversion bump (diff)
downloadgentoo-2-cc291938d71fc18d7646d7b93aecb872003fc726.tar.gz
gentoo-2-cc291938d71fc18d7646d7b93aecb872003fc726.tar.bz2
gentoo-2-cc291938d71fc18d7646d7b93aecb872003fc726.zip
old
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'app-pda/synce-core')
-rw-r--r--app-pda/synce-core/ChangeLog5
-rw-r--r--app-pda/synce-core/synce-core-0.16.ebuild78
2 files changed, 4 insertions, 79 deletions
diff --git a/app-pda/synce-core/ChangeLog b/app-pda/synce-core/ChangeLog
index fcbb08bbb7f8..a580a7a128ea 100644
--- a/app-pda/synce-core/ChangeLog
+++ b/app-pda/synce-core/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-pda/synce-core
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-core/ChangeLog,v 1.5 2012/11/28 16:58:10 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-core/ChangeLog,v 1.6 2012/11/28 17:50:28 ssuominen Exp $
+
+ 28 Nov 2012; Samuli Suominen <ssuominen@gentoo.org> -synce-core-0.16.ebuild:
+ old
28 Nov 2012; Samuli Suominen <ssuominen@gentoo.org>
synce-core-0.16-r1.ebuild:
diff --git a/app-pda/synce-core/synce-core-0.16.ebuild b/app-pda/synce-core/synce-core-0.16.ebuild
deleted file mode 100644
index 6fd7f64296d2..000000000000
--- a/app-pda/synce-core/synce-core-0.16.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-core/synce-core-0.16.ebuild,v 1.4 2012/06/15 09:17:46 ssuominen Exp $
-
-EAPI=4
-
-PYTHON_DEPEND="python? 2:2.7"
-
-inherit flag-o-matic python
-
-DESCRIPTION="Base libraries, including RAPI protocol, tools and dccm daemon"
-HOMEPAGE="http://sourceforge.net/projects/synce/"
-SRC_URI="mirror://sourceforge/synce/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="python static-libs"
-
-# AC_PATH_PROG -> pppd -> net-dialup/ppp
-# AC_PATH_PROG -> ifconfig -> sys-apps/net-tools
-RDEPEND="!app-pda/synce-connector
- >=dev-libs/dbus-glib-0.98
- >=dev-libs/glib-2.28
- !dev-libs/librapi2
- !dev-libs/libsynce
- net-dialup/ppp
- sys-apps/net-tools
- || ( >=sys-fs/udev-171-r6[gudev] <sys-fs/udev-171[extras] )
- python? (
- >=dev-python/pyrex-0.9.6
- dev-python/python-gudev
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-pkg_setup() {
- if use python; then
- python_set_active_version 2
- python_pkg_setup
- fi
-}
-
-src_prepare() {
- # AC_PATH_PROG -> dhclient ->
- local dhclient=true
- type -P dhclient >/dev/null && dhclient=dhclient
- sed -i -e "s:dhclient:${dhclient}:" configure || die
-
- use python && python_convert_shebangs -r 2 .
-}
-
-src_configure() {
- append-cflags -fno-strict-aliasing
-
- # hal OR udev -> udev -> dbus -> build all of bluetooth, odccm, udev
- econf \
- $(use_enable static-libs static) \
- --enable-dccm-file-support \
- --enable-odccm-support \
- --disable-hal-support \
- --enable-udev-support \
- --enable-bluetooth-support \
- $(use_enable python python-bindings)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
-
- dodoc BUGS ChangeLog README* TODO
- newdoc bluetooth/README README.bluetooth
-
- # prune_libtool_files() from eutils.eclass fails wrt #421197
- find "${ED}" -name '*.la' -exec rm -f {} +
-
- # Always remove static archive from site-packages
- use static-libs && find "${ED}" -name pyrapi2.a -exec rm -f {} +
-}