public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tiziano Müller" <dev-zero@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] dev/dev-zero:master commit in: net-misc/mirall/files/, net-misc/mirall/
Date: Tue, 31 Jul 2012 11:39:55 +0000 (UTC)	[thread overview]
Message-ID: <1343734788.ad2fa4794561b78cb4f4d8d88d0d82cd2fc06fb0.dev-zero@gentoo> (raw)

commit:     ad2fa4794561b78cb4f4d8d88d0d82cd2fc06fb0
Author:     Tiziano Müller <tm <AT> dev-zero <DOT> ch>
AuthorDate: Tue Jul 31 11:39:48 2012 +0000
Commit:     Tiziano Müller <dev-zero <AT> gentoo <DOT> org>
CommitDate: Tue Jul 31 11:39:48 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=dev/dev-zero.git;a=commit;h=ad2fa479

Initial commit, ebuild written by me.

---
 net-misc/mirall/Manifest                           |    3 ++
 .../mirall/files/1.0.3-fix-exclude.lst-path.patch  |   25 +++++++++++++++
 net-misc/mirall/mirall-1.0.3.ebuild                |   32 ++++++++++++++++++++
 3 files changed, 60 insertions(+), 0 deletions(-)

diff --git a/net-misc/mirall/Manifest b/net-misc/mirall/Manifest
new file mode 100644
index 0000000..d91d808
--- /dev/null
+++ b/net-misc/mirall/Manifest
@@ -0,0 +1,3 @@
+AUX 1.0.3-fix-exclude.lst-path.patch 908 RMD160 fd7f046f96331c619d37a16daea304ca30110163 SHA1 ac6647b1d5fdbed8a58ee2ea8fbde22c2b61a3fa SHA256 a947ea1b2166af38302a4f5d691efb8bb72d21a44aaba0bf84440b2b314a46dd
+DIST mirall-1.0.3.tar.bz2 781278 RMD160 3b00021b5256744891fbc536d2cc27fad5915abc SHA1 6fcb1831d13dd6ed69fd5a70deb74259e6d3aef5 SHA256 48de479c034e665180f4eebc393f39f046f2d2008b84d3039f111ed40ad3c00e
+EBUILD mirall-1.0.3.ebuild 665 RMD160 ed48625c817bb5de85460b294a264185fc1cc226 SHA1 4528255e0c45fa5d42951de6ae68215b73f13965 SHA256 b138fbc03340fbc6f3956d61cf81439d8d7b884bc8668c02acf1c7f1f3bfc12a

diff --git a/net-misc/mirall/files/1.0.3-fix-exclude.lst-path.patch b/net-misc/mirall/files/1.0.3-fix-exclude.lst-path.patch
new file mode 100644
index 0000000..3e569ac
--- /dev/null
+++ b/net-misc/mirall/files/1.0.3-fix-exclude.lst-path.patch
@@ -0,0 +1,25 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 08a4fb8..88afae9 100644
+--- a/CMakeLists.txt
++++ b/CMakeLists.txt
+@@ -76,6 +76,6 @@ add_subdirectory(src)
+ if(BUILD_OWNCLOUD_OSX_BUNDLE)
+     install( FILES exclude.lst DESTINATION ${OWNCLOUD_OSX_BUNDLE}/Contents/Resources )
+ else()
+-    install( FILES exclude.lst DESTINATION ${CMAKE_INSTALL_SYSCONFDIR} )
++    install( FILES exclude.lst DESTINATION ${CMAKE_INSTALL_SYSCONFDIR}/mirall )
+ endif()
+ 
+diff --git a/src/mirall/mirallconfigfile.cpp b/src/mirall/mirallconfigfile.cpp
+index 1cf5d17..899cd16 100644
+--- a/src/mirall/mirallconfigfile.cpp
++++ b/src/mirall/mirallconfigfile.cpp
+@@ -76,7 +76,7 @@ QString MirallConfigFile::excludeFile() const
+     fi.setFile(exePath, exclFile );
+ #endif
+ #ifdef Q_OS_LINUX
+-    fi.setFile( QString("/etc"), exclFile );
++    fi.setFile( QString("/etc/mirall"), exclFile );
+ #endif
+ #ifdef Q_OS_MAC
+     char buf[1024];

diff --git a/net-misc/mirall/mirall-1.0.3.ebuild b/net-misc/mirall/mirall-1.0.3.ebuild
new file mode 100644
index 0000000..8bf034e
--- /dev/null
+++ b/net-misc/mirall/mirall-1.0.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit cmake-utils
+
+DESCRIPTION="Desktop Syncing Client"
+HOMEPAGE="http://owncloud.org/sync-clients/"
+SRC_URI="http://download.owncloud.com/download/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="net-misc/csync[log2callback,owncloud]
+	x11-libs/qt-gui
+	x11-libs/qt-test"
+RDEPEND="${DEPEND}"
+
+DOCS=( "ChangeLog" "README.md" )
+PATCHES=( "${FILESDIR}/${PV}-fix-exclude.lst-path.patch" )
+
+# test-target is available, but no tests
+RESTRICT="test"
+
+src_install() {
+	cmake-utils_src_install
+	mv "${D}"/{usr,}/etc
+}


                 reply	other threads:[~2012-07-31 11:40 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1343734788.ad2fa4794561b78cb4f4d8d88d0d82cd2fc06fb0.dev-zero@gentoo \
    --to=dev-zero@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox