Ebuild
March 17, 2010, 16:31
A series of bash scripts which add a quilt-like interface to git
| alpha | amd64 | arm | hppa | ia64 | m68k | mips | ppc | ppc64 | s390 | sh | sparc | x86 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0.32 | – | + | – | – | ~ | – | – | + | – | – | – | ~ | + |
DESCRIPTION DU PAQUET:
A series of bash scripts which add a quilt-like interface to git
Catégories:
JOURNAL DES MODIFICATIONS
# ChangeLog for dev-vcs/guilt # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/guilt/ChangeLog,v 1.4 2012/05/10 16:13:47 ago Exp $ 10 May 2012; Agostino Sarubbo (ago) -guilt-0.32.1.ebuild, -guilt-0.32.2.ebuild: Remove old *guilt-0.34 (20 Sep 2010) 20 Sep 2010; Michael Weber (xmw) +guilt-0.34.ebuild: Version bump (bug #337985) 17 Mar 2010; Sebastian Pipping (sping) guilt-0.32.ebuild, guilt-0.32.1.ebuild, guilt-0.32.2.ebuild: Propagate move of dev-util/git to dev-vcs/git *guilt-0.32.2 (06 Mar 2010) 06 Mar 2010; Ulrich Mueller (ulm) +guilt-0.32.ebuild, +guilt-0.32.1.ebuild, +guilt-0.32.2.ebuild, +metadata.xml: Move package from dev-util to dev-vcs, bug 56967. Version bump, remove old. 09 Aug 2009; nixnut (nixnut) guilt-0.32.ebuild: ppc stable #276090 31 Jul 2009; (chainsaw) guilt-0.32.ebuild: Marked stable on AMD64 as requested by Mike "SpanKY" Friesinger (vapier) in bug #276090. Compile-tested on a dual hex-core Opteron with USE="-doc". 01 Jul 2009; Christian Faulhammer (fauli) guilt-0.32.ebuild: stable x86, bug 276090 *guilt-0.32.1 (01 Jul 2009) 01 Jul 2009; Mike Frysinger (vapier) +guilt-0.32.1.ebuild: Version bump. *guilt-0.32 (08 May 2009) 08 May 2009; Mike Frysinger (vapier) +guilt-0.32.ebuild: Version bump. 08 May 2009; Mike Frysinger (vapier) guilt-0.30.ebuild: Mark amd64/x86 stable. 16 Aug 2008; Torsten Veller (tove) metadata.xml: Remove ingmar from metadata.xml (#202413) 11 Jun 2008; Stephanie Lockwood-Childs (wormo) guilt-0.30.ebuild: mark ~ppc (bug #218049) 28 Apr 2008; Raúl Porcel (armin76) guilt-0.30.ebuild: Add ~ia64/~sparc wrt #218049 *guilt-0.30 (16 Apr 2008) 16 Apr 2008; Ingmar Vanhassel (ingmar) +metadata.xml, +guilt-0.30.ebuild: Import from sunrise, thanks to Denis 'raeLLL' Cheng <crquan@gmail.com> for the ebuild. Fixes bug 205931.
BUGS
Aucuns bug trouvé
PARAMÈTRES USE
| doc | Adds extra documentation (API, Javadoc, etc). It is recommended to enable per package instead of globally |
DÉPENDANCES À LA CONSTRUCTION
| app-text/asciidoc | A text document format for writing short documents, articles, books and UNIX man pages |
| app-text/xmlto | script for converting XML and DocBook formatted documents to a variety of output formats |
| dev-vcs/git | GIT - the stupid content tracker, the revision control system heavily used by the Linux kernel team |
DÉPENDANCES À L'EXÉCUTION
| 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/guilt/guilt-0.32.ebuild,v 1.2
2010/03/17 16:31:41 sping Exp $
DESCRIPTION="A series of bash scripts which add a quilt-like interface to git"
HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/"
SRC_URI="mirror://kernel/linux/kernel/people/jsipek/${PN}/${P}.tar.bz2
mirror://gentoo/${PN}-manpages-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ia64 ppc ~sparc x86"
IUSE="doc"
RDEPEND="dev-vcs/git"
DEPEND="${RDEPEND}
doc? ( app-text/asciidoc app-text/xmlto )"
RESTRICT="test"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i \
-e '/^PREFIX/s:=.*:=/usr:' \
-e "/^htmldir/s:=.*:=/usr/share/doc/${PF}/html:" \
-e "/^VERSION/s:=.*:=${PV}:" \
Makefile */Makefile || die
}
src_compile() {
if use doc ; then
emake -C Documentation html || die
fi
}
src_install() {
emake install DESTDIR="${D}" || die
dodoc Documentation/{Contributing,Features,HOWTO,Requirements}
doman Documentation/*.[0-9] || die
if use doc ; then
dodir "/usr/share/doc/${PF}/html"
emake -C Documentation install-html DESTDIR="${D}" || die
fi
}