diff options
author | 2008-04-08 19:47:49 +0000 | |
---|---|---|
committer | 2008-04-08 19:47:49 +0000 | |
commit | 8acf4e703d5a4518762b1d0a2b309f0eeebc0913 (patch) | |
tree | d78733e746f3cf77d8383036a5dff958fff0141e /dev-util/tig | |
parent | amd64 stable, bug #216576 (diff) | |
download | gentoo-2-8acf4e703d5a4518762b1d0a2b309f0eeebc0913.tar.gz gentoo-2-8acf4e703d5a4518762b1d0a2b309f0eeebc0913.tar.bz2 gentoo-2-8acf4e703d5a4518762b1d0a2b309f0eeebc0913.zip |
0.11 release
(Portage version: 2.1.5_rc1)
Diffstat (limited to 'dev-util/tig')
-rw-r--r-- | dev-util/tig/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/tig/tig-0.11.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/dev-util/tig/ChangeLog b/dev-util/tig/ChangeLog index 97c988cb93ac..de030cb35056 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.9 2008/03/21 18:00:22 gregkh Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/tig/ChangeLog,v 1.10 2008/04/08 19:47:49 gregkh Exp $ + +*tig-0.11 (08 Apr 2008) + + 08 Apr 2008; Greg Kroah-Hartman <gregkh@gentoo.org> +tig-0.11.ebuild: + 0.11 version bump *tig-0.10.1 (21 Mar 2008) diff --git a/dev-util/tig/tig-0.11.ebuild b/dev-util/tig/tig-0.11.ebuild new file mode 100644 index 000000000000..19c81237803e --- /dev/null +++ b/dev-util/tig/tig-0.11.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.11.ebuild,v 1.1 2008/04/08 19:47:49 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" + +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 tigrc + dohtml manual.html + dobashcompletion contrib/tig-completion.bash +} |