From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D8D2B138AE9 for ; Fri, 29 Dec 2017 19:06:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CE6EE0C7A; Fri, 29 Dec 2017 19:06:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1D09CE0C7A for ; Fri, 29 Dec 2017 19:06:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2331E34085A for ; Fri, 29 Dec 2017 19:06:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E6EDAFCB for ; Fri, 29 Dec 2017 19:06:47 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1514574395.a6ae8d1452396e5c06820e26565d1a1b5ccec6e3.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/freecad/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/freecad/freecad-9999.ebuild X-VCS-Directories: media-gfx/freecad/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: a6ae8d1452396e5c06820e26565d1a1b5ccec6e3 X-VCS-Branch: master Date: Fri, 29 Dec 2017 19:06:47 +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: 0170ce11-4092-4fdf-a7a3-ce94753be839 X-Archives-Hash: 6d0e3249abfa910fd4b81372c19774c3 commit: a6ae8d1452396e5c06820e26565d1a1b5ccec6e3 Author: Miroslav Šulc gentoo org> AuthorDate: Fri Dec 29 19:04:58 2017 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri Dec 29 19:06:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6ae8d14 media-gfx/freecad-9999: several fixes Package-Manager: Portage-2.3.19, Repoman-2.3.6 media-gfx/freecad/freecad-9999.ebuild | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/media-gfx/freecad/freecad-9999.ebuild b/media-gfx/freecad/freecad-9999.ebuild index d6e044a1e51..13355e49800 100644 --- a/media-gfx/freecad/freecad-9999.ebuild +++ b/media-gfx/freecad/freecad-9999.ebuild @@ -5,7 +5,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 ) -inherit cmake-utils eutils xdg-utils fortran-2 python-single-r1 +inherit cmake-utils eutils xdg-utils gnome2-utils fortran-2 python-single-r1 DESCRIPTION="Qt based Computer Aided Design application" HOMEPAGE="https://www.freecadweb.org/" @@ -80,9 +80,9 @@ src_configure() { local mycmakeargs=( -DOCC_INCLUDE_DIR="${CASROOT}"/inc -DOCC_LIBRARY_DIR="${CASROOT}"/$(get_libdir) - -DCMAKE_INSTALL_DATADIR=share/${P} - -DCMAKE_INSTALL_DOCDIR=share/doc/${PF} - -DCMAKE_INSTALL_INCLUDEDIR=include/${P} + -DCMAKE_INSTALL_DATADIR=/usr/share/${P} + -DCMAKE_INSTALL_DOCDIR=/usr/share/doc/${PF} + -DCMAKE_INSTALL_INCLUDEDIR=/usr/include/${P} -DFREECAD_USE_EXTERNAL_KDL="ON" ) @@ -121,8 +121,14 @@ src_install() { pkg_postinst() { xdg_mimeinfo_database_update + xdg_desktop_database_update + + gnome2_icon_cache_update } pkg_postrm() { xdg_mimeinfo_database_update + xdg_desktop_database_update + + gnome2_icon_cache_update }