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 002C013877A for ; Mon, 11 Aug 2014 20:27:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B17AE0BA6; Mon, 11 Aug 2014 20:22:12 +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 0BA5AE0A61 for ; Mon, 11 Aug 2014 20:20:30 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 76A893403E6 for ; Sun, 10 Aug 2014 08:05:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id CB7C91881C for ; Sun, 10 Aug 2014 08:05:05 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1407085040.9a9346310003f71fafcd0e7cd059b1942d2eaf33.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: media-gfx/librecad/ X-VCS-Repository: proj/sci X-VCS-Files: media-gfx/librecad/ChangeLog media-gfx/librecad/librecad-2.0.4.ebuild X-VCS-Directories: media-gfx/librecad/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 9a9346310003f71fafcd0e7cd059b1942d2eaf33 X-VCS-Branch: master Date: Sun, 10 Aug 2014 08:05:05 +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: 46573b8e-1a80-4d4c-bc5d-ab60492b4f96 X-Archives-Hash: c39249441a38776e70de3dc4bf655ede commit: 9a9346310003f71fafcd0e7cd059b1942d2eaf33 Author: Dongxu Li tamaggo com> AuthorDate: Mon Jun 2 16:10:29 2014 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Aug 3 16:57:20 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9a934631 media-gfx/librecad: version bump 2.0.4 --- media-gfx/librecad/ChangeLog | 3 +++ media-gfx/librecad/librecad-2.0.4.ebuild | 45 ++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) diff --git a/media-gfx/librecad/ChangeLog b/media-gfx/librecad/ChangeLog index 59eae43..d2d052f 100644 --- a/media-gfx/librecad/ChangeLog +++ b/media-gfx/librecad/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header$ + 2 Jun 2014; Dongxu Li +librecad-2.0.4.ebuild: + Version bump: 2.0.4 + 23 Mar 2014; Dongxu Li +librecad-2.0.3.ebuild: Version bump: 2.0.3 diff --git a/media-gfx/librecad/librecad-2.0.4.ebuild b/media-gfx/librecad/librecad-2.0.4.ebuild new file mode 100644 index 0000000..565c341 --- /dev/null +++ b/media-gfx/librecad/librecad-2.0.4.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit qt4-r2 eutils flag-o-matic + +DESCRIPTION="Generic 2D CAD program" +HOMEPAGE="http://www.librecad.org/" +SRC_URI="https://github.com/LibreCAD/LibreCAD/archive/${PV/_/}.zip -> ${P}.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="debug doc 3d" + +DEPEND=" + dev-qt/qtgui:4 + dev-qt/qthelp:4 + dev-qt/qtsvg:4 + dev-libs/boost + dev-cpp/muParser + media-libs/freetype + " +RDEPEND="${DEPEND}" + +src_unpack() { + unpack ${A} + mv * ${P} +} + +src_prepare() { + # currently RS_VECTOR3D causes an internal compiler error on GCC-4.8 + use 3d || sed -i -e '/RS_VECTOR2D/ s/^#//' librecad/src/src.pro +} + +src_install() { + dobin unix/librecad + insinto /usr/share/${PN} + doins -r unix/resources/* + use doc && dohtml -r support/doc/* + doicon librecad/res/main/${PN}.png + make_desktop_entry ${PN} LibreCAD ${PN} Graphics +}