diff options
author | 2009-01-03 11:27:11 +0900 | |
---|---|---|
committer | 2009-01-03 11:27:11 +0900 | |
commit | 02b5fef269ed357b8037e215678ef8d3110135ff (patch) | |
tree | e26a62dc52f01b08d2c5f3d0b8ef1e4e2a016bd4 /app-backup | |
parent | www-client/mozilla-fennec-bin: Initial import. (diff) | |
download | matsuu-02b5fef269ed357b8037e215678ef8d3110135ff.tar.gz matsuu-02b5fef269ed357b8037e215678ef8d3110135ff.tar.bz2 matsuu-02b5fef269ed357b8037e215678ef8d3110135ff.zip |
app-backup/nautilus-dropbox: Initial import.
Diffstat (limited to 'app-backup')
-rw-r--r-- | app-backup/nautilus-dropbox/Manifest | 3 | ||||
-rw-r--r-- | app-backup/nautilus-dropbox/nautilus-dropbox-0.5.0.ebuild | 53 |
2 files changed, 56 insertions, 0 deletions
diff --git a/app-backup/nautilus-dropbox/Manifest b/app-backup/nautilus-dropbox/Manifest new file mode 100644 index 0000000..1749731 --- /dev/null +++ b/app-backup/nautilus-dropbox/Manifest @@ -0,0 +1,3 @@ +DIST dbcli.py 11731 RMD160 71a9e4d317c470e3f7fb5345c42ddb23ff67a2f5 SHA1 dceb7f0d4fbd9817d9925e44e9cf14a2d6e98fae SHA256 9fd4914951ac394443e71d4382f59aebbb846be18c88234ec571a940e3affbc2 +DIST nautilus-dropbox-0.5.0.tar.bz2 279130 RMD160 00eb7433c4483073eb04478c0c2f00bbea65d05e SHA1 834b44b6296b8eb867a30ecc988e25c87b557a15 SHA256 d29bdf03b147318d3c6a5c5287bab07f0e357d98cde49ac32624e4ca0c3e433c +EBUILD nautilus-dropbox-0.5.0.ebuild 1343 RMD160 555f7080aae34907a3b58037fce90d69c0181d05 SHA1 eba85600d3eff827ad4831ef17c4002ecdc701d2 SHA256 03056cd4b0e800ebb07f55c4f5466580235bfbb90ffd0f791abf1a4dcbf6fef9 diff --git a/app-backup/nautilus-dropbox/nautilus-dropbox-0.5.0.ebuild b/app-backup/nautilus-dropbox/nautilus-dropbox-0.5.0.ebuild new file mode 100644 index 0000000..d1a47aa --- /dev/null +++ b/app-backup/nautilus-dropbox/nautilus-dropbox-0.5.0.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit gnome2 eutils multilib + +DESCRIPTION="Store, Sync and Share Files Online" +HOMEPAGE="http://www.getdropbox.com/" +SRC_URI="http://www.getdropbox.com/download?dl=packages/${P}.tar.bz2 + http://dl.getdropbox.com/u/43645/dbcli.py" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~amd64" +IUSE="debug" + +RDEPEND=">=gnome-base/nautilus-2.16 + >=x11-libs/gtk+-2.12 + >=net-misc/wget-1.10 + >=dev-libs/glib-2.14 + >=x11-libs/libnotify-0.4.4" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +DOCS="AUTHORS ChangeLog NEWS README" + +pkg_setup () { + G2CONF="${G2CONF} $(use_enable debug)" + + # create the group for the daemon, if necessary + # truthfully this should be run for any dropbox plugin + enewgroup dropbox +} + +src_install () { + gnome2_src_install + + # Allow only for users in the dropbox group + # see http://forums.getdropbox.com/topic.php?id=3329&replies=5#post-22898 + fowners root:dropbox /usr/$(get_libdir)/nautilus/extensions-2.0/libnautilus-dropbox.{a,la,so} + fperms 640 /usr/$(get_libdir)/nautilus/extensions-2.0/libnautilus-dropbox.{a,la,so} + + dobin "${DISTDIR}/dbcli.py" +} + +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'." + elog +} |