From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9853758974 for ; Fri, 29 Jan 2016 04:59:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CDB8E07F9; Fri, 29 Jan 2016 04:59:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CCE81E07FA for ; Fri, 29 Jan 2016 04:59:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 09211340B54 for ; Fri, 29 Jan 2016 04:59:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 153AF8E2 for ; Fri, 29 Jan 2016 04:59:48 +0000 (UTC) From: "Mark Wright" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mark Wright" Message-ID: <1454043549.c812d14ee2c817bc63175175b93de6c98c544019.gienah@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: / X-VCS-Repository: repo/gentoo X-VCS-Committer: gienah X-VCS-Committer-Name: Mark Wright X-VCS-Revision: c812d14ee2c817bc63175175b93de6c98c544019 X-VCS-Branch: master Date: Fri, 29 Jan 2016 04:59:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: bff99bc1-5fd9-4165-a3ef-414a0cd14d18 X-Archives-Hash: 605688619a4a3333c06125c90f19b366 commit: c812d14ee2c817bc63175175b93de6c98c544019 Author: Mark Wright gentoo org> AuthorDate: Fri Jan 29 04:59:09 2016 +0000 Commit: Mark Wright gentoo org> CommitDate: Fri Jan 29 04:59:09 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c812d14e sci-mathematics/rstudio: Thanks to tomboy-64 for fixing bug Bug 534152 - sci-mathematics/rstudio - add systemd support .../rstudio/files/rstudio-0.99.486-systemd.patch | 22 ++++++++++++++++++++++ sci-mathematics/rstudio/files/rstudio-server.conf | 2 +- .../rstudio/files/rstudio-server.service.in | 10 ++++++++++ ...-0.99.486.ebuild => rstudio-0.99.486-r1.ebuild} | 22 +++++++++++++++------- 4 files changed, 48 insertions(+), 8 deletions(-) diff --cc sci-mathematics/rstudio/rstudio-0.99.486-r1.ebuild index 64818de,4f1c7f3..764c9da --- a/sci-mathematics/rstudio/rstudio-0.99.486-r1.ebuild +++ b/sci-mathematics/rstudio/rstudio-0.99.486-r1.ebuild @@@ -125,15 -133,13 +135,13 @@@ src_unpack() src_prepare() { java-pkg-2_src_prepare - find . -name .gitignore -delete || die + egit_clean - epatch \ - "${FILESDIR}"/${PN}-0.98.490-prefs.patch \ - "${FILESDIR}"/${PN}-0.99.473-paths.patch \ - "${FILESDIR}"/${PN}-0.99.473-clang-pandoc.patch \ - "${FILESDIR}"/${PN}-0.98.490-linker_flags.patch \ - "${FILESDIR}"/${PN}-0.98.1091-boost-1.57.patch \ - "${FILESDIR}"/${PN}-0.99.473-qtsingleapplication.patch + epatch "${PATCHES[@]}" + + # Enable CMake to install our .service file for systemd usage + mkdir -vp "${S}/src/cpp/server/lib/systemd/system" || die + cp -v "${FILESDIR}/rstudio-server.service.in" "${S}/src/cpp/server/lib/systemd/system/" || die # Adding -DDISTRO_SHARE=... to append-flags breaks cmake so using # this sed hack for now. ~RMH