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 7E7A5139694 for ; Mon, 15 May 2017 08:44:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBBDEE0CB6; Mon, 15 May 2017 08:44:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 97294E0CB6 for ; Mon, 15 May 2017 08:44:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 21DE13416A1 for ; Mon, 15 May 2017 08:44:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E7AA7447 for ; Mon, 15 May 2017 08:44:21 +0000 (UTC) From: "Michael Weber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Weber" Message-ID: <1494837846.a910dddc689ee97092a4fed5008ad453d7d77fd2.xmw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/openscad/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/openscad/openscad-9999.ebuild X-VCS-Directories: media-gfx/openscad/ X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber X-VCS-Revision: a910dddc689ee97092a4fed5008ad453d7d77fd2 X-VCS-Branch: master Date: Mon, 15 May 2017 08:44:21 +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: 4b13850f-b944-474c-8d73-f93f4b115ac0 X-Archives-Hash: c4269e85d96187bf731db1c0807dc302 commit: a910dddc689ee97092a4fed5008ad453d7d77fd2 Author: Michael Weber gentoo org> AuthorDate: Mon May 15 08:43:50 2017 +0000 Commit: Michael Weber gentoo org> CommitDate: Mon May 15 08:44:06 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a910dddc media-gfx/openscad: Add live ebuild. Package-Manager: Portage-2.3.5, Repoman-2.3.2 media-gfx/openscad/openscad-9999.ebuild | 64 +++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/media-gfx/openscad/openscad-9999.ebuild b/media-gfx/openscad/openscad-9999.ebuild new file mode 100644 index 00000000000..95b2d243082 --- /dev/null +++ b/media-gfx/openscad/openscad-9999.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit elisp-common eutils git-r3 qmake-utils + +SITEFILE="50${PN}-gentoo.el" + +DESCRIPTION="The Programmers Solid 3D CAD Modeller" +HOMEPAGE="http://www.openscad.org/" +EGIT_REPO_URI="https://github.com/openscad/openscad.git" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" +IUSE="emacs" + +DEPEND="media-gfx/opencsg + sci-mathematics/cgal + dev-qt/qtcore:4 + dev-qt/qtgui:4[-egl] + dev-qt/qtopengl:4[-egl] + dev-cpp/eigen:3 + dev-libs/glib:2 + dev-libs/gmp:0= + dev-libs/mpfr:0= + dev-libs/boost:= + media-libs/fontconfig:1.0 + media-libs/freetype:2 + media-libs/glew:* + media-libs/harfbuzz + x11-libs/qscintilla:=[qt4(-)] + emacs? ( virtual/emacs )" +RDEPEND="${DEPEND}" + +src_prepare() { + sed -i "s/\/usr\/local/\/usr/g" ${PN}.pro || die + + default +} + +src_configure() { + eqmake4 "${PN}.pro" +} + +src_compile() { + default + + if use emacs ; then + elisp-compile contrib/*.el + fi +} + +src_install() { + emake install INSTALL_ROOT="${D}" + + if use emacs; then + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + elisp-install ${PN} contrib/*.el contrib/*.elc + fi + + einstalldocs +}