From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qbtpl-0005Wq-JX for garchives@archives.gentoo.org; Wed, 29 Jun 2011 12:25:33 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8F2B01C02D; Wed, 29 Jun 2011 12:25:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 487221C02D for ; Wed, 29 Jun 2011 12:25:25 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2D8E51B4051 for ; Wed, 29 Jun 2011 12:25:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 6090E8003C for ; Wed, 29 Jun 2011 12:25:23 +0000 (UTC) From: "Matsuu Takuto" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matsuu Takuto" Message-ID: <5f6830071f0438f50fe0f7b4a33f5e5d0e2d8807.matsuu@gentoo> Subject: [gentoo-commits] proj/betagarden:master commit in: app-backup/sparkleshare/ X-VCS-Repository: proj/betagarden X-VCS-Files: app-backup/sparkleshare/ChangeLog app-backup/sparkleshare/metadata.xml app-backup/sparkleshare/sparkleshare-0.2.3.ebuild X-VCS-Directories: app-backup/sparkleshare/ X-VCS-Committer: matsuu X-VCS-Committer-Name: Matsuu Takuto X-VCS-Revision: 5f6830071f0438f50fe0f7b4a33f5e5d0e2d8807 Date: Wed, 29 Jun 2011 12:25:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: f9362ca6bab250823b5ffa639e6822e0 commit: 5f6830071f0438f50fe0f7b4a33f5e5d0e2d8807 Author: MATSUU Takuto gentoo org> AuthorDate: Wed Jun 29 12:25:15 2011 +0000 Commit: Matsuu Takuto gentoo org> CommitDate: Wed Jun 29 12:25:15 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/betagarden.gi= t;a=3Dcommit;h=3D5f683007 app-backup/sparkleshare: Initial import. --- app-backup/sparkleshare/ChangeLog | 10 ++++ app-backup/sparkleshare/metadata.xml | 9 +++ app-backup/sparkleshare/sparkleshare-0.2.3.ebuild | 57 +++++++++++++++= ++++++ 3 files changed, 76 insertions(+), 0 deletions(-) diff --git a/app-backup/sparkleshare/ChangeLog b/app-backup/sparkleshare/= ChangeLog new file mode 100644 index 0000000..984a852 --- /dev/null +++ b/app-backup/sparkleshare/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-backup/sparkleshare +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*sparkleshare-0.2.3 (29 Jun 2011) + + 29 Jun 2011; MATSUU Takuto +sparkleshare-0.2.3.ebu= ild, + +metadata.xml: + Initial import. + diff --git a/app-backup/sparkleshare/metadata.xml b/app-backup/sparklesha= re/metadata.xml new file mode 100644 index 0000000..1393be2 --- /dev/null +++ b/app-backup/sparkleshare/metadata.xml @@ -0,0 +1,9 @@ + + + + no-herd + + matsuu@gentoo.org + MATSUU Takuto + + diff --git a/app-backup/sparkleshare/sparkleshare-0.2.3.ebuild b/app-back= up/sparkleshare/sparkleshare-0.2.3.ebuild new file mode 100644 index 0000000..4ec9052 --- /dev/null +++ b/app-backup/sparkleshare/sparkleshare-0.2.3.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D3 +inherit gnome2-utils + +DESCRIPTION=3D"A collaboration and sharing tool that is designed to keep= things simple and to stay out of your way." +HOMEPAGE=3D"http://sparkleshare.org/" +SRC_URI=3D"https://github.com/downloads/hbons/SparkleShare/${P}.tar.gz" + +LICENSE=3D"GPL-3" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~x86" +IUSE=3D"debug doc libnotify nautilus" + +RDEPEND=3D">=3Ddev-lang/mono-2.2 + >=3Ddev-dotnet/gtk-sharp-2.12.2 + >=3Ddev-dotnet/glib-sharp-2.12.2 + libnotify? ( dev-dotnet/notify-sharp ) + dev-dotnet/webkit-sharp + nautilus? ( dev-python/nautilus-python ) + >=3Ddev-vcs/git-1.7.1 + virtual/libintl" +DEPEND=3D"${RDEPEND} + sys-devel/gettext + dev-util/pkgconfig + doc? ( >=3Dapp-text/gnome-doc-utils-0.17.3 )" +# appindicator? ( >=3Ddev-dotnet/appindicator-sharp-0.0.7 ) + +src_configure() { + local myconf + if use debug ; then + myconf=3D"${myconf} --enable-debug" + else + myconf=3D"${myconf} --enable-release" + fi + econf ${myconf} || die +} + +src_install() { + emake DESTDIR=3D"${D}" install || die + + dodoc AUTHORS NEWS README || die +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}