Gentoo Archives: gentoo-commits

From: Matsuu Takuto <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/betagarden:master commit in: app-backup/sparkleshare/
Date: Wed, 29 Jun 2011 12:25:33
Message-Id: 5f6830071f0438f50fe0f7b4a33f5e5d0e2d8807.matsuu@gentoo
1 commit: 5f6830071f0438f50fe0f7b4a33f5e5d0e2d8807
2 Author: MATSUU Takuto <matsuu <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 12:25:15 2011 +0000
4 Commit: Matsuu Takuto <matsuu <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 12:25:15 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/betagarden.git;a=commit;h=5f683007
7
8 app-backup/sparkleshare: Initial import.
9
10 ---
11 app-backup/sparkleshare/ChangeLog | 10 ++++
12 app-backup/sparkleshare/metadata.xml | 9 +++
13 app-backup/sparkleshare/sparkleshare-0.2.3.ebuild | 57 +++++++++++++++++++++
14 3 files changed, 76 insertions(+), 0 deletions(-)
15
16 diff --git a/app-backup/sparkleshare/ChangeLog b/app-backup/sparkleshare/ChangeLog
17 new file mode 100644
18 index 0000000..984a852
19 --- /dev/null
20 +++ b/app-backup/sparkleshare/ChangeLog
21 @@ -0,0 +1,10 @@
22 +# ChangeLog for app-backup/sparkleshare
23 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
24 +# $Header: $
25 +
26 +*sparkleshare-0.2.3 (29 Jun 2011)
27 +
28 + 29 Jun 2011; MATSUU Takuto <matsuu@g.o> +sparkleshare-0.2.3.ebuild,
29 + +metadata.xml:
30 + Initial import.
31 +
32
33 diff --git a/app-backup/sparkleshare/metadata.xml b/app-backup/sparkleshare/metadata.xml
34 new file mode 100644
35 index 0000000..1393be2
36 --- /dev/null
37 +++ b/app-backup/sparkleshare/metadata.xml
38 @@ -0,0 +1,9 @@
39 +<?xml version="1.0" encoding="UTF-8"?>
40 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
41 +<pkgmetadata>
42 + <herd>no-herd</herd>
43 + <maintainer>
44 + <email>matsuu@g.o</email>
45 + <name>MATSUU Takuto</name>
46 + </maintainer>
47 +</pkgmetadata>
48
49 diff --git a/app-backup/sparkleshare/sparkleshare-0.2.3.ebuild b/app-backup/sparkleshare/sparkleshare-0.2.3.ebuild
50 new file mode 100644
51 index 0000000..4ec9052
52 --- /dev/null
53 +++ b/app-backup/sparkleshare/sparkleshare-0.2.3.ebuild
54 @@ -0,0 +1,57 @@
55 +# Copyright 1999-2011 Gentoo Foundation
56 +# Distributed under the terms of the GNU General Public License v2
57 +# $Header: $
58 +
59 +EAPI=3
60 +inherit gnome2-utils
61 +
62 +DESCRIPTION="A collaboration and sharing tool that is designed to keep things simple and to stay out of your way."
63 +HOMEPAGE="http://sparkleshare.org/"
64 +SRC_URI="https://github.com/downloads/hbons/SparkleShare/${P}.tar.gz"
65 +
66 +LICENSE="GPL-3"
67 +SLOT="0"
68 +KEYWORDS="~amd64 ~x86"
69 +IUSE="debug doc libnotify nautilus"
70 +
71 +RDEPEND=">=dev-lang/mono-2.2
72 + >=dev-dotnet/gtk-sharp-2.12.2
73 + >=dev-dotnet/glib-sharp-2.12.2
74 + libnotify? ( dev-dotnet/notify-sharp )
75 + dev-dotnet/webkit-sharp
76 + nautilus? ( dev-python/nautilus-python )
77 + >=dev-vcs/git-1.7.1
78 + virtual/libintl"
79 +DEPEND="${RDEPEND}
80 + sys-devel/gettext
81 + dev-util/pkgconfig
82 + doc? ( >=app-text/gnome-doc-utils-0.17.3 )"
83 +# appindicator? ( >=dev-dotnet/appindicator-sharp-0.0.7 )
84 +
85 +src_configure() {
86 + local myconf
87 + if use debug ; then
88 + myconf="${myconf} --enable-debug"
89 + else
90 + myconf="${myconf} --enable-release"
91 + fi
92 + econf ${myconf} || die
93 +}
94 +
95 +src_install() {
96 + emake DESTDIR="${D}" install || die
97 +
98 + dodoc AUTHORS NEWS README || die
99 +}
100 +
101 +pkg_preinst() {
102 + gnome2_icon_savelist
103 +}
104 +
105 +pkg_postinst() {
106 + gnome2_icon_cache_update
107 +}
108 +
109 +pkg_postrm() {
110 + gnome2_icon_cache_update
111 +}