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 74C391381F3 for ; Tue, 11 Jun 2013 16:42:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29CCAE087F; Tue, 11 Jun 2013 16:42:22 +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 B2377E087F for ; Tue, 11 Jun 2013 16:42:21 +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 9A54B33BE70 for ; Tue, 11 Jun 2013 16:42:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 2F074E468F for ; Tue, 11 Jun 2013 16:42:19 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1370968923.f36d952558de1568968e8cbb100c25d4109f2f18.bicatali@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-9999.ebuild X-VCS-Directories: media-gfx/librecad/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: f36d952558de1568968e8cbb100c25d4109f2f18 X-VCS-Branch: master Date: Tue, 11 Jun 2013 16:42:19 +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: aca6739b-fa6b-49c9-b6e2-2b1c1f3e7cca X-Archives-Hash: 3fb803cfaef59c395c6a89abf774fbd4 commit: f36d952558de1568968e8cbb100c25d4109f2f18 Author: Sébastien Fabbro gentoo org> AuthorDate: Tue Jun 11 16:42:03 2013 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Tue Jun 11 16:42:03 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f36d9525 media-gfx/librecad: Fixed bug #472472 and ebuild cleaning Package-Manager: portage-2.2.01.21938-prefix RepoMan-Options: --force --- media-gfx/librecad/ChangeLog | 3 +++ media-gfx/librecad/librecad-9999.ebuild | 21 +++++++++------------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/media-gfx/librecad/ChangeLog b/media-gfx/librecad/ChangeLog index c157115..f180d50 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$ + 11 Jun 2013; Sébastien Fabbro librecad-9999.ebuild: + media-gfx/librecad: Fixed bug #472472 and ebuild cleaning + 8 Jun 2013; Dongxu Li +librecad-2.0.0_rc1.ebuild: Versions bumped to 2.0.0_rc1 diff --git a/media-gfx/librecad/librecad-9999.ebuild b/media-gfx/librecad/librecad-9999.ebuild index d3db6f7..ab66f24 100644 --- a/media-gfx/librecad/librecad-9999.ebuild +++ b/media-gfx/librecad/librecad-9999.ebuild @@ -2,10 +2,10 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -EAPI="4" -inherit qt4-r2 eutils git-2 flag-o-matic +EAPI=5 +inherit qt4-r2 eutils git-2 -DESCRIPTION="An generic 2D CAD program" +DESCRIPTION="Generic 2D CAD program" HOMEPAGE="http://www.librecad.org/" LICENSE="GPL-2" SLOT="0" @@ -26,17 +26,14 @@ DEPEND="${RDEPEND} src_prepare() { #sed -i -e "s:\\\$\+system(git describe --tags):9999:" src/src.pro #enable C++11 by default - sed -i -e '/RS_VECTOR2D/ s/^#//' librecad/src/src.pro + sed -i -e '/RS_VECTOR2D/ s/^#//' librecad/src/src.pro || die } -src_install() -{ +src_install() { dobin unix/librecad - insinto /usr/share/"${PN}" + insinto /usr/share/${PN} doins -r unix/resources/* - if use doc ; then - dohtml -r support/doc/* - fi - doicon librecad/res/main/"${PN}".png - make_desktop_entry "${PN}" LibreCAD "${PN}" Graphics + use doc && dohtml -r librecad/support/doc/* + doicon librecad/res/main/${PN}.png + make_desktop_entry ${PN} LibreCAD ${PN} Graphics }