Ebuild
July 17, 2010, 16:26
A different patch queue manager
| alpha | amd64 | arm | hppa | ia64 | m68k | mips | ppc | ppc64 | s390 | sh | sparc | x86 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0.8 | – | + | – | – | – | – | – | – | – | – | – | – | + |
DESCRIPTION DU PAQUET:
A different patch queue manager
Catégories:
JOURNAL DES MODIFICATIONS
# ChangeLog for dev-vcs/topgit # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/topgit/ChangeLog,v 1.3 2010/07/17 16:26:17 hwoarang Exp $ 17 Jul 2010; Markos Chandras (hwoarang) topgit-0.8.ebuild: Stable on amd64 wrt bug #328479 17 Jul 2010; Christian Faulhammer (fauli) topgit-0.8.ebuild: stable x86, bug 328479 *topgit-0.8 (05 Jun 2010) 05 Jun 2010; Christian Ruppert (idl0r) +topgit-0.8.ebuild, +metadata.xml: Initial commit, bug 250516, thanks to Alexander Potashev <aspotashev@gmail.com> and Benjamin Bannier <bbannier+gentoo_bugs@gmail.com>.
BUGS
Aucuns bug trouvé
PARAMÈTRES USE
| bash-completion | Enable bash-completion support |
DÉPENDANCES À LA CONSTRUCTION
| sys-apps/gawk | GNU awk pattern-matching language |
| sys-apps/sed | Super-useful stream editor |
DÉPENDANCES À L'EXÉCUTION
| app-admin/eselect | Gentoo's multi-purpose configuration and management tool |
| dev-vcs/git | GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team |
CODE SOURCE
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/topgit/topgit-0.8.ebuild,v 1.3
2010/07/17 16:26:17 hwoarang Exp $
inherit bash-completion
DESCRIPTION="A different patch queue manager"
HOMEPAGE="http://repo.or.cz/w/topgit.git"
SRC_URI="mirror://gentoo/${P}.tar.bz2
http://dev.gentooexperimental.org/~idl0r/distfiles/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="bash-completion"
DEPEND="sys-apps/sed
sys-apps/gawk"
RDEPEND="dev-vcs/git"
src_compile() {
# Needed because of "hardcoded" paths
emake prefix="/usr" sharedir="/usr/share/doc/${PF}" || die
}
src_install() {
emake prefix="${D}/usr" sharedir="${D}/usr/share/doc/${PF}" install || die
if use bash-completion; then
dobashcompletion contrib/tg-completion.bash ${PN}
fi
dodoc README || die
}