From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Ru1aA-000609-1V for garchives@archives.gentoo.org; Sun, 05 Feb 2012 12:52:38 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 71428E0478; Sun, 5 Feb 2012 12:52:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 37B70E0478 for ; Sun, 5 Feb 2012 12:52:30 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 68D571B400C for ; Sun, 5 Feb 2012 12:52:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id D5E0F80043 for ; Sun, 5 Feb 2012 12:52:28 +0000 (UTC) From: "Dongxu Li" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Dongxu Li" Message-ID: 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.1.ebuild X-VCS-Directories: media-gfx/librecad/ X-VCS-Committer: dongxuli X-VCS-Committer-Name: Dongxu Li X-VCS-Revision: ebe763f0b7670f02d1e654a68f8c5018a2407b53 Date: Sun, 5 Feb 2012 12:52:28 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 0e05abd0-0a10-42d0-b150-cd59b0818846 X-Archives-Hash: 65bb19ff5e2f39076a06140127e03b53 commit: ebe763f0b7670f02d1e654a68f8c5018a2407b53 Author: Dongxu Li gmail com> AuthorDate: Sun Feb 5 12:52:23 2012 +0000 Commit: Dongxu Li gmail com> CommitDate: Sun Feb 5 12:52:23 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3Debe763f0 media-gfx/librecad: version bumped to 1.0.1 --- media-gfx/librecad/ChangeLog | 3 ++ media-gfx/librecad/librecad-1.0.1.ebuild | 42 ++++++++++++++++++++++++= ++++++ 2 files changed, 45 insertions(+), 0 deletions(-) diff --git a/media-gfx/librecad/ChangeLog b/media-gfx/librecad/ChangeLog index 0605e38..ccf8132 100644 --- a/media-gfx/librecad/ChangeLog +++ b/media-gfx/librecad/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header$ =20 + 5 Feb 2012; Dongxu Li +librecad-1.0.1.ebuild + Version bumped to 1.0.1 + 14 Dec 2011; Dongxu Li +librecad-1.0.0.ebuild= -librecad-1.0.0_rc3.ebuild, -librecad-1.0.0_rc4.ebuild: Version bumped to 1.0.0 =20 diff --git a/media-gfx/librecad/librecad-1.0.1.ebuild b/media-gfx/libreca= d/librecad-1.0.1.ebuild new file mode 100644 index 0000000..81ae616 --- /dev/null +++ b/media-gfx/librecad/librecad-1.0.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D3 + +inherit qt4-r2 + +DESCRIPTION=3D"An generic 2D CAD program" +HOMEPAGE=3D"http://www.librecad.org/" +SRC_URI=3D"https://nodeload.github.com/LibreCAD/LibreCAD/tarball/v${PV} = -> ${P}.tar.gz" + +LICENSE=3D"GPL-2" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~x86" +IUSE=3D"debug doc" + +RDEPEND=3D" + x11-libs/qt-gui[qt3support] + x11-libs/qt-assistant:4 + x11-libs/qt-qt3support:4" +DEPEND=3D"${RDEPEND}" + +src_unpack() { + unpack ${A} + mv * ${P} +} + +src_prepare() { +sed -i -e "s:\\\$\+system(git describe --tags):1.0.0:" "${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 +}