diff options
author | 2011-12-24 09:12:08 +0000 | |
---|---|---|
committer | 2011-12-24 09:12:08 +0000 | |
commit | 1ff797922de609a7f677b261340908ffc92231a5 (patch) | |
tree | 5066c69db0beedd22cc375e491abf495eab65a42 /gnome-extra | |
parent | version bump. remove old (diff) | |
download | gentoo-2-1ff797922de609a7f677b261340908ffc92231a5.tar.gz gentoo-2-1ff797922de609a7f677b261340908ffc92231a5.tar.bz2 gentoo-2-1ff797922de609a7f677b261340908ffc92231a5.zip |
version bump. Bug #392591. Thanks to b1254633 <b1254633@lhsdv.com>
(Portage version: 2.2.0_alpha82/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra')
-rw-r--r-- | gnome-extra/nautilus-dropbox/ChangeLog | 8 | ||||
-rw-r--r-- | gnome-extra/nautilus-dropbox/nautilus-dropbox-0.7.1.ebuild | 78 |
2 files changed, 85 insertions, 1 deletions
diff --git a/gnome-extra/nautilus-dropbox/ChangeLog b/gnome-extra/nautilus-dropbox/ChangeLog index a871f12ab5cc..aae8a83cf59d 100644 --- a/gnome-extra/nautilus-dropbox/ChangeLog +++ b/gnome-extra/nautilus-dropbox/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for gnome-extra/nautilus-dropbox # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-dropbox/ChangeLog,v 1.9 2011/11/12 10:37:27 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-dropbox/ChangeLog,v 1.10 2011/12/24 09:12:08 hwoarang Exp $ + +*nautilus-dropbox-0.7.1 (24 Dec 2011) + + 24 Dec 2011; Markos Chandras <hwoarang@gentoo.org> + +nautilus-dropbox-0.7.1.ebuild: + version bump. Bug #392591. Thanks to b1254633 <b1254633@lhsdv.com> *nautilus-dropbox-0.7.0 (12 Nov 2011) diff --git a/gnome-extra/nautilus-dropbox/nautilus-dropbox-0.7.1.ebuild b/gnome-extra/nautilus-dropbox/nautilus-dropbox-0.7.1.ebuild new file mode 100644 index 000000000000..9bb331d2f894 --- /dev/null +++ b/gnome-extra/nautilus-dropbox/nautilus-dropbox-0.7.1.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nautilus-dropbox/nautilus-dropbox-0.7.1.ebuild,v 1.1 2011/12/24 09:12:08 hwoarang Exp $ + +EAPI="3" +PYTHON_DEPEND="2" +inherit autotools eutils python linux-info gnome2 + +DESCRIPTION="Store, Sync and Share Files Online" +HOMEPAGE="http://www.dropbox.com/" +SRC_URI="http://www.dropbox.com/download?dl=packages/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-linux" +IUSE="debug" + +RDEPEND="gnome-base/nautilus + dev-libs/glib:2 + dev-python/pygtk:2 + net-misc/dropbox + x11-libs/gtk+:2 + x11-libs/libnotify + x11-libs/libXinerama" + +DEPEND="${RDEPEND} + dev-util/pkgconfig + dev-python/docutils" + +DOCS="AUTHORS ChangeLog NEWS README" +G2CONF="${G2CONF} $(use_enable debug) --disable-static" + +CONFIG_CHECK="~INOTIFY_USER" + +pkg_setup () { + check_extra_config + enewgroup dropbox + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + gnome2_src_prepare + python_convert_shebangs 2 dropbox.in + + # use sysem dropbox + sed -e "s|~/[.]dropbox-dist|/opt/dropbox|" \ + -e 's|\(DROPBOXD_PATH = \).*|\1"/opt/dropbox/dropboxd"|' \ + -i dropbox.in || die + # us system rst2man + epatch "${FILESDIR}"/${PN}-0.7.0-system-rst2man.patch + eautoreconf +} + +src_install () { + gnome2_src_install + + local extensiondir="$(pkg-config --variable=extensiondir libnautilus-extension)" + [ -z ${extensiondir} ] && die "pkg-config unable to get nautilus extensions dir" + + # Strip $EPREFIX from $extensiondir as fowners/fperms act on $ED not $D + extensiondir="${extensiondir#${EPREFIX}}" + + find "${ED}" -name '*.la' -exec rm -f {} + || die + + use prefix || fowners root:dropbox "${extensiondir}"/libnautilus-dropbox.so + fperms o-rwx "${extensiondir}"/libnautilus-dropbox.so +} + +pkg_postinst () { + gnome2_pkg_postinst + + elog + elog "Add any users who wish to have access to the dropbox nautilus" + elog "plugin to the group 'dropbox'. You need to setup a drobox account" + elog "before using this plugin. Visit ${HOMEPAGE} for more information." + elog +} |