diff options
author | Greg Kroah-Hartman <gregkh@gentoo.org> | 2008-10-17 05:13:28 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@gentoo.org> | 2008-10-17 05:13:28 +0000 |
commit | 0023845239ab7ca40722ac92fae0c942e8bf6018 (patch) | |
tree | 355bddd83087a56337703c285d15f6a6098ca6ea /dev-util/tig | |
parent | mark 0.12 stable on x86 and amd64 (diff) | |
download | gentoo-2-0023845239ab7ca40722ac92fae0c942e8bf6018.tar.gz gentoo-2-0023845239ab7ca40722ac92fae0c942e8bf6018.tar.bz2 gentoo-2-0023845239ab7ca40722ac92fae0c942e8bf6018.zip |
0.12.1 bump
(Portage version: 2.2_rc12/cvs/Linux 2.6.27-rc6-gkh i686)
Diffstat (limited to 'dev-util/tig')
-rw-r--r-- | dev-util/tig/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/tig/tig-0.12.1.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/dev-util/tig/ChangeLog b/dev-util/tig/ChangeLog index b27fb7bfd0a6..66ea374a2921 100644 --- a/dev-util/tig/ChangeLog +++ b/dev-util/tig/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/tig # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/tig/ChangeLog,v 1.13 2008/10/17 04:57:00 gregkh Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/tig/ChangeLog,v 1.14 2008/10/17 05:13:28 gregkh Exp $ + +*tig-0.12.1 (17 Oct 2008) + + 17 Oct 2008; Greg Kroah-Hartman <gregkh@gentoo.org> +tig-0.12.1.ebuild: + 0.12.1 release 17 Oct 2008; Greg Kroah-Hartman <gregkh@gentoo.org> tig-0.12.ebuild: mark 0.12 stable on x86 and amd64 diff --git a/dev-util/tig/tig-0.12.1.ebuild b/dev-util/tig/tig-0.12.1.ebuild new file mode 100644 index 000000000000..c0e893620b04 --- /dev/null +++ b/dev-util/tig/tig-0.12.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/tig/tig-0.12.1.ebuild,v 1.1 2008/10/17 05:13:28 gregkh Exp $ + +inherit bash-completion + +DESCRIPTION="Tig: text mode interface for git" +HOMEPAGE="http://jonas.nitro.dk/tig/" +SRC_URI="http://jonas.nitro.dk/tig/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" + +DEPEND="sys-libs/ncurses" +RDEPEND="${DEPEND} + >=dev-util/git-1.5.4" + +src_compile() { + econf CFLAGS="${CFLAGS}" || die "econf failed" + emake CFLAGS="${CFLAGS}" || die "emake failed" +} + +src_install() { + einstall || die "einstall failed" + doman tig.1 tigrc.5 + dodoc manual.txt + dohtml manual.html + dobashcompletion contrib/tig-completion.bash +} |