diff options
author | 2012-08-16 11:44:55 +0000 | |
---|---|---|
committer | 2012-08-16 11:44:55 +0000 | |
commit | eb182f42755be5361dcb39ab6f9d0a1aabb574dc (patch) | |
tree | 672ff5842fbdaedcd95ae3ae72f5af8c7f9e67d1 /dev-vcs/gti | |
parent | Version bump (diff) | |
download | gentoo-2-eb182f42755be5361dcb39ab6f9d0a1aabb574dc.tar.gz gentoo-2-eb182f42755be5361dcb39ab6f9d0a1aabb574dc.tar.bz2 gentoo-2-eb182f42755be5361dcb39ab6f9d0a1aabb574dc.zip |
Intial commit, too pretty not to have.
(Portage version: 2.2.0_alpha121/cvs/Linux x86_64)
Diffstat (limited to 'dev-vcs/gti')
-rw-r--r-- | dev-vcs/gti/ChangeLog | 9 | ||||
-rw-r--r-- | dev-vcs/gti/gti-9999.ebuild | 34 | ||||
-rw-r--r-- | dev-vcs/gti/metadata.xml | 8 |
3 files changed, 51 insertions, 0 deletions
diff --git a/dev-vcs/gti/ChangeLog b/dev-vcs/gti/ChangeLog new file mode 100644 index 000000000000..dc821fbcd422 --- /dev/null +++ b/dev-vcs/gti/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-vcs/gti +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gti/ChangeLog,v 1.1 2012/08/16 11:44:55 scarabeus Exp $ + +*gti-9999 (16 Aug 2012) + + 16 Aug 2012; Tomáš Chvátal <scarabeus@gentoo.org> +gti-9999.ebuild, + +metadata.xml: + Intial commit, too pretty not to have. diff --git a/dev-vcs/gti/gti-9999.ebuild b/dev-vcs/gti/gti-9999.ebuild new file mode 100644 index 000000000000..9d6f67bf3c3c --- /dev/null +++ b/dev-vcs/gti/gti-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/gti/gti-9999.ebuild,v 1.1 2012/08/16 11:44:55 scarabeus Exp $ + +EAPI=4 + +EGIT_REPO_URI="git://github.com/rwos/${PN}.git" +inherit git-2 + +DESCRIPTION="A silly git launcher, basically. Inspired by sl" +HOMEPAGE="http://r-wos.org/hacks/gti" +SRC_URI="" + +LICENSE="MIT" +SLOT="0" +[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="dev-vcs/git" +RDEPEND="${DEPEND}" + +src_prepare() { + # fix the makefile + sed -i \ + -e "s:CC=:CC?=:g" \ + -e "s:CFLAGS=:CFLAGS?=:g" \ + -e "/-strip/d" \ + -e 's:$(CC):$(CC) $(LDFLAGS):' \ + Makefile +} + +src_install() { + dobin gti +} diff --git a/dev-vcs/gti/metadata.xml b/dev-vcs/gti/metadata.xml new file mode 100644 index 000000000000..ee9a60770d9e --- /dev/null +++ b/dev-vcs/gti/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>scarabeus@gentoo.org</email> + <name>Tomáš Chvátal</name> + </maintainer> +</pkgmetadata> |