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 F3CC9138247 for ; Thu, 14 Nov 2013 17:06:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C57B6E0B40; Thu, 14 Nov 2013 17:06:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 593E6E0B40 for ; Thu, 14 Nov 2013 17:06:26 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2001833F211 for ; Thu, 14 Nov 2013 17:06:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9B4A3E530A for ; Thu, 14 Nov 2013 17:06:22 +0000 (UTC) From: "Nicolas Bock" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nicolas Bock" Message-ID: <1384442877.91aa17e863c68f98ae535f1dec0828f2335c0b49.nicolasbock@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-1.0.4.ebuild media-gfx/librecad/librecad-2.0.0_rc1.ebuild media-gfx/librecad/librecad-2.0.0_rc3.ebuild X-VCS-Directories: media-gfx/librecad/ X-VCS-Committer: nicolasbock X-VCS-Committer-Name: Nicolas Bock X-VCS-Revision: 91aa17e863c68f98ae535f1dec0828f2335c0b49 X-VCS-Branch: master Date: Thu, 14 Nov 2013 17:06:22 +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: 28081d7e-b2a1-474c-8044-b265272b2e53 X-Archives-Hash: 8020daf114f07c26823a6307ade44632 commit: 91aa17e863c68f98ae535f1dec0828f2335c0b49 Author: Dongxu Li gmail com> AuthorDate: Thu Nov 14 14:48:04 2013 +0000 Commit: Nicolas Bock gmail com> CommitDate: Thu Nov 14 15:27:57 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=91aa17e8 media-gfx/librecad: version bump 1.0.4 2.0.0rc3 --- media-gfx/librecad/ChangeLog | 3 ++ media-gfx/librecad/librecad-1.0.4.ebuild | 45 ++++++++++++++++++++++ ...-2.0.0_rc1.ebuild => librecad-2.0.0_rc3.ebuild} | 0 3 files changed, 48 insertions(+) diff --git a/media-gfx/librecad/ChangeLog b/media-gfx/librecad/ChangeLog index 3b1ab26..b4a8507 100644 --- a/media-gfx/librecad/ChangeLog +++ b/media-gfx/librecad/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header$ + 14 Nov 2013: Dongxu Li +librecad-1.0.4.ebuild +librecad-2.0.0_rc3.ebuild: + Version bump: 1.0.4, 2.0.0rc3 + 3 Sept 2013: Dongxu Li +librecad-2.0.0_rc2.ebuild: Version bump 2.0.0_rc2 diff --git a/media-gfx/librecad/librecad-1.0.4.ebuild b/media-gfx/librecad/librecad-1.0.4.ebuild new file mode 100644 index 0000000..3c93747 --- /dev/null +++ b/media-gfx/librecad/librecad-1.0.4.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3 + +inherit qt4-r2 eutils + +DESCRIPTION="An generic 2D CAD program" +HOMEPAGE="http://www.librecad.org/" +SRC_URI="https://github.com/LibreCAD/LibreCAD/archive/v1.0.3.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc" + +RDEPEND=" + dev-qt/qtgui[qt3support] + dev-qt/qthelp:4 + dev-qt/qt3support:4 + dev-cpp/muParser + " + +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + mv * ${P} +} + +src_prepare() { +sed -i -e "s:\\\$\+system(git describe --tags):1.0.3:" "${PN}.pro" +} + +src_install() { + dobin unix/librecad || die + insinto /usr/share/"${PN}" + doins -r unix/resources/* || die + if use doc ; then + dohtml -r support/doc/* + fi + doicon res/main/"${PN}".png + make_desktop_entry "${PN}" LibreCAD "${PN}.png" Graphics +} diff --git a/media-gfx/librecad/librecad-2.0.0_rc1.ebuild b/media-gfx/librecad/librecad-2.0.0_rc3.ebuild similarity index 100% rename from media-gfx/librecad/librecad-2.0.0_rc1.ebuild rename to media-gfx/librecad/librecad-2.0.0_rc3.ebuild