diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-09-06 05:27:30 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-09-06 05:27:30 +0000 |
commit | f3c9eb4a8f019e39fe8cee01d36c7a5826217d26 (patch) | |
tree | c0d7b7487a8130968eb321b740cca5015c51ccf9 /app-misc/gnuit | |
parent | amd64 stable, bug 281836. only breifly runtime tested, appears to work just fine (diff) | |
download | gentoo-2-f3c9eb4a8f019e39fe8cee01d36c7a5826217d26.tar.gz gentoo-2-f3c9eb4a8f019e39fe8cee01d36c7a5826217d26.tar.bz2 gentoo-2-f3c9eb4a8f019e39fe8cee01d36c7a5826217d26.zip |
Initial ebuild of app-misc/gnuit which is an upstream rename of app-misc/git, ebuild by James Rowe. bug 281853
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/gnuit')
-rw-r--r-- | app-misc/gnuit/ChangeLog | 11 | ||||
-rw-r--r-- | app-misc/gnuit/gnuit-4.9.5.ebuild | 38 | ||||
-rw-r--r-- | app-misc/gnuit/metadata.xml | 5 |
3 files changed, 54 insertions, 0 deletions
diff --git a/app-misc/gnuit/ChangeLog b/app-misc/gnuit/ChangeLog new file mode 100644 index 000000000000..e4242e024805 --- /dev/null +++ b/app-misc/gnuit/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-misc/gnuit +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnuit/ChangeLog,v 1.1 2009/09/06 05:27:30 darkside Exp $ + +*gnuit-4.9.5 (06 Sep 2009) + + 06 Sep 2009; Jeremy Olexa <darkside@gentoo.org> +gnuit-4.9.5.ebuild, + +metadata.xml: + Initial ebuild of app-misc/gnuit which is an upstream rename of + app-misc/git, ebuild by James Rowe. bug 281853 + diff --git a/app-misc/gnuit/gnuit-4.9.5.ebuild b/app-misc/gnuit/gnuit-4.9.5.ebuild new file mode 100644 index 000000000000..5b2b210ca6f4 --- /dev/null +++ b/app-misc/gnuit/gnuit-4.9.5.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/gnuit/gnuit-4.9.5.ebuild,v 1.1 2009/09/06 05:27:30 darkside Exp $ + +EAPI="2" + +DESCRIPTION="GNU Interactive Tools - increase speed and efficiency of most daily tasks" +HOMEPAGE="http://www.gnu.org/software/gnuit/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3 FDL-1.3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +# app-text/texi2html is only needed if any documentation patches are added +# dev-util/git[gtk] installs the gitview tool which collides with this +# package. +DEPEND="!dev-util/git[gtk]" +RDEPEND="${DEPEND}" + +src_configure() { + # The transition option controls whether a "git" wrapper is installed, it is + # disabled explicitly so we don't need to block on dev-util/git. + econf --disable-transition +} + +src_install() { + emake DESTDIR="${D}" htmldir="/usr/share/doc/${PF}/html" install \ + || die "emake install failed" + dodoc AUTHORS NEWS PROBLEMS README +} + +pkg_postinst() { + elog "The 'git' tool this package previously installed is now called 'gitfm'" + elog "If you want the 'gitaction' tool to use your preferred desktop" + elog "application settings install the 'x11-misc/xdg-utils' package." +} diff --git a/app-misc/gnuit/metadata.xml b/app-misc/gnuit/metadata.xml new file mode 100644 index 000000000000..40149c995561 --- /dev/null +++ b/app-misc/gnuit/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>shell-tools</herd> +</pkgmetadata> |