diff options
author | Pacho Ramos <pacho@gentoo.org> | 2011-03-21 10:07:24 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2011-03-21 10:07:24 +0000 |
commit | d8074d34d054e6e349a7446f1ce7b27106f01a7e (patch) | |
tree | a5a4fa2c25940836dd51656a8d040a2c72bdc9d4 /app-pda | |
parent | x86 stable per bug 357265 (diff) | |
download | gentoo-2-d8074d34d054e6e349a7446f1ce7b27106f01a7e.tar.gz gentoo-2-d8074d34d054e6e349a7446f1ce7b27106f01a7e.tar.bz2 gentoo-2-d8074d34d054e6e349a7446f1ce7b27106f01a7e.zip |
Version bump with lots of bugfixes.
(Portage version: 2.1.9.44/cvs/Linux x86_64)
Diffstat (limited to 'app-pda')
-rw-r--r-- | app-pda/gnome-pilot/ChangeLog | 7 | ||||
-rw-r--r-- | app-pda/gnome-pilot/gnome-pilot-2.32.1.ebuild | 52 |
2 files changed, 58 insertions, 1 deletions
diff --git a/app-pda/gnome-pilot/ChangeLog b/app-pda/gnome-pilot/ChangeLog index cd85c5eeb0f7..0967f4e70506 100644 --- a/app-pda/gnome-pilot/ChangeLog +++ b/app-pda/gnome-pilot/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-pda/gnome-pilot # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v 1.67 2011/02/24 18:36:41 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/ChangeLog,v 1.68 2011/03/21 10:07:24 pacho Exp $ + +*gnome-pilot-2.32.1 (21 Mar 2011) + + 21 Mar 2011; Pacho Ramos <pacho@gentoo.org> +gnome-pilot-2.32.1.ebuild: + Version bump with lots of bugfixes. 24 Feb 2011; Thomas Kahle <tomka@gentoo.org> gnome-pilot-2.32.0.ebuild: x86 stable per bug 353436 diff --git a/app-pda/gnome-pilot/gnome-pilot-2.32.1.ebuild b/app-pda/gnome-pilot/gnome-pilot-2.32.1.ebuild new file mode 100644 index 000000000000..69ba203c4405 --- /dev/null +++ b/app-pda/gnome-pilot/gnome-pilot-2.32.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-pda/gnome-pilot/gnome-pilot-2.32.1.ebuild,v 1.1 2011/03/21 10:07:24 pacho Exp $ + +EAPI="3" +G2CONF_DEBUG="no" + +inherit gnome2 + +DESCRIPTION="Gnome Palm Pilot and Palm OS Device Syncing Library" +HOMEPAGE="http://live.gnome.org/GnomePilot" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="eds hal" + +RDEPEND=" + || ( gnome-base/gnome-panel[bonobo] <gnome-base/gnome-panel-2.32 ) + >=gnome-base/gconf-2:2 + dev-libs/libxml2:2 + >=app-pda/pilot-link-0.11.7 + >=x11-libs/gtk+-2.13:2 + >=dev-libs/dbus-glib-0.74 + eds? ( >=gnome-extra/evolution-data-server-2 ) + hal? ( >=sys-apps/hal-0.5.4 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + sys-devel/gettext + >=dev-util/gob-2.0.5:2 + >=dev-lang/perl-5.6 + >=app-text/scrollkeeper-0.3.14 + >=dev-util/intltool-0.35.5" + +pkg_setup() { + DOCS="AUTHORS COPYING* ChangeLog README NEWS" + G2CONF="${G2CONF} + --disable-static + $(use_enable eds eds-conduits) + $(use_with hal)" +} + +src_install() { + gnome2_src_install + find "${ED}"/usr/$(get_libdir)/${PN}/conduits -name "*.la" -delete || die +} + +pkg_postinst() { + if ! has_version "app-pda/pilot-link[bluetooth]"; then + elog "if you want bluetooth support, please rebuild app-pda/pilot-link" + elog "echo 'app-pda/pilot-link bluetooth >> /etc/portage/package.use" + fi +} |