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 3F8851381F3 for ; Thu, 18 Jul 2013 16:25:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0C551E0AF2; Thu, 18 Jul 2013 16:25:06 +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 7D6E5E0AF2 for ; Thu, 18 Jul 2013 16:25:05 +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 10BE033DAC0 for ; Thu, 18 Jul 2013 16:25:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 9349BE468F for ; Thu, 18 Jul 2013 16:25:01 +0000 (UTC) From: "Nikoli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Nikoli" Message-ID: <1374164553.3940176ff9004e105222d1ba63f2d527d1c4a800.nikoli@gentoo> Subject: [gentoo-commits] proj/gamerlay:master commit in: games-util/gmqcc/ X-VCS-Repository: proj/gamerlay X-VCS-Files: games-util/gmqcc/gmqcc-0.2.2.ebuild games-util/gmqcc/gmqcc-0.2.9.ebuild games-util/gmqcc/gmqcc-9999.ebuild games-util/gmqcc/metadata.xml X-VCS-Directories: games-util/gmqcc/ X-VCS-Committer: nikoli X-VCS-Committer-Name: Nikoli X-VCS-Revision: 3940176ff9004e105222d1ba63f2d527d1c4a800 X-VCS-Branch: master Date: Thu, 18 Jul 2013 16:25:01 +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: 8bc0e336-95b4-4e49-a271-780943cc9a4f X-Archives-Hash: c8077b0e317b2eea39690f97d9e44201 commit: 3940176ff9004e105222d1ba63f2d527d1c4a800 Author: Nikoli lavabit com> AuthorDate: Thu Jul 18 16:22:33 2013 +0000 Commit: Nikoli lavabit com> CommitDate: Thu Jul 18 16:22:33 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gamerlay.git;a=commit;h=3940176f gmqcc: respect CC, do not force git branch, cosmetics, version bump Package-Manager: portage-2.1.12.2 --- .../{gmqcc-0.2.2.ebuild => gmqcc-0.2.9.ebuild} | 20 +++++++++++++++----- games-util/gmqcc/gmqcc-9999.ebuild | 22 ++++++++++++---------- games-util/gmqcc/metadata.xml | 15 ++++++++------- 3 files changed, 35 insertions(+), 22 deletions(-) diff --git a/games-util/gmqcc/gmqcc-0.2.2.ebuild b/games-util/gmqcc/gmqcc-0.2.9.ebuild similarity index 56% rename from games-util/gmqcc/gmqcc-0.2.2.ebuild rename to games-util/gmqcc/gmqcc-0.2.9.ebuild index 84affc5..773259c 100644 --- a/games-util/gmqcc/gmqcc-0.2.2.ebuild +++ b/games-util/gmqcc/gmqcc-0.2.9.ebuild @@ -1,24 +1,34 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: Exp $ +# $Header: $ EAPI=5 +EGIT_REPO_URI="git://github.com/graphitemaster/gmqcc.git" + +inherit toolchain-funcs +[[ ${PV} == *9999* ]] && inherit git-2 DESCRIPTION="An Improved Quake C Compiler" HOMEPAGE="http://graphitemaster.github.com/gmqcc/" +[[ ${PV} == *9999* ]] || \ SRC_URI="https://github.com/graphitemaster/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" - SLOT="0" -IUSE="" +[[ ${PV} == *9999* ]] || \ KEYWORDS="~amd64 ~x86" +IUSE="" src_prepare() { + # fixed in git master sed -i -e "s:-Werror ::" Makefile || die } +src_configure() { + tc-export CC +} + src_install() { - emake install PREFIX="${D}/usr" - dodoc README + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + dodoc README AUTHORS TODO CHANGES } diff --git a/games-util/gmqcc/gmqcc-9999.ebuild b/games-util/gmqcc/gmqcc-9999.ebuild index 555ea5d..5e76605 100644 --- a/games-util/gmqcc/gmqcc-9999.ebuild +++ b/games-util/gmqcc/gmqcc-9999.ebuild @@ -1,27 +1,29 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: Exp $ +# $Header: $ EAPI=5 - EGIT_REPO_URI="git://github.com/graphitemaster/gmqcc.git" -EGIT_BRANCH="master" -inherit git-2 +inherit toolchain-funcs +[[ ${PV} == *9999* ]] && inherit git-2 DESCRIPTION="An Improved Quake C Compiler" HOMEPAGE="http://graphitemaster.github.com/gmqcc/" -LICENSE="MIT" +[[ ${PV} == *9999* ]] || \ +SRC_URI="https://github.com/graphitemaster/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +LICENSE="MIT" SLOT="0" +[[ ${PV} == *9999* ]] || \ +KEYWORDS="~amd64 ~x86" IUSE="" -KEYWORDS="" -src_prepare() { - sed -i -e "s:-Werror ::" Makefile || die +src_configure() { + tc-export CC } src_install() { - emake install PREFIX="${D}/usr" - dodoc README + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + dodoc README AUTHORS TODO CHANGES } diff --git a/games-util/gmqcc/metadata.xml b/games-util/gmqcc/metadata.xml index fd1ecfd..3631108 100644 --- a/games-util/gmqcc/metadata.xml +++ b/games-util/gmqcc/metadata.xml @@ -1,11 +1,12 @@ - -azamat.hackimov@gmail.com -Azamat H. Hackimov - - -An Improved Quake C Compiler - + + nikoli@lavabit.com + Nikoli + + + azamat.hackimov@gmail.com + Azamat H. Hackimov +