diff options
author | Pacho Ramos <pacho@gentoo.org> | 2019-02-20 22:34:47 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2019-02-20 22:34:47 +0100 |
commit | 00f64248e622990228f6028261e1a6175732af6a (patch) | |
tree | b1755f511cd298058988c806508bd6476d591bfe /dev-vcs/guilt | |
parent | media-libs/webrtc-audio-processing: Drop old (diff) | |
download | gentoo-00f64248e622990228f6028261e1a6175732af6a.tar.gz gentoo-00f64248e622990228f6028261e1a6175732af6a.tar.bz2 gentoo-00f64248e622990228f6028261e1a6175732af6a.zip |
dev-vcs/guilt: Drop old
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'dev-vcs/guilt')
-rw-r--r-- | dev-vcs/guilt/guilt-0.36.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/dev-vcs/guilt/guilt-0.36.ebuild b/dev-vcs/guilt/guilt-0.36.ebuild deleted file mode 100644 index 1069fa84b2dc..000000000000 --- a/dev-vcs/guilt/guilt-0.36.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="A series of bash scripts which add a quilt-like interface to git" -HOMEPAGE="http://repo.or.cz/w/guilt.git" -SRC_URI="${HOMEPAGE}/snapshot/22d785dd24329170f66e7696da38b3e90e033d61.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ia64 ppc ~sparc x86" -IUSE="" - -# Since we need to build the man pages anyway, I don't think it makes -# much sense to hide the HTML docs behind USE=doc. -RDEPEND="dev-vcs/git" -DEPEND="${RDEPEND} - app-text/asciidoc - app-text/xmlto - dev-lang/perl" - -RESTRICT="test" - -S="${WORKDIR}/${PN}-22d785d" - -src_prepare() { - default - - # The doc makefile tries to shell out to `git` for the version. - sed -i Documentation/Makefile \ - -e "s/VERSION=.*/VERSION=${PV}/" \ - || die 'failed to set VERSION in Documentation/Makefile' -} - -src_compile() { - emake -C Documentation all -} - -src_install() { - emake DESTDIR="${D}" PREFIX=/usr install - - dodoc Documentation/{Contributing,Features,HOWTO,Requirements} - emake -C Documentation \ - DESTDIR="${D}" \ - PREFIX=/usr \ - mandir=/usr/share/man \ - htmldir="/usr/share/doc/${PF}/html" \ - install install-html -} |