39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="GNU Interactive Tools - increase speed and efficiency of most daily tasks"
|
|
HOMEPAGE="https://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=""
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-format-security.patch
|
|
}
|
|
|
|
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-vcs/git.
|
|
econf --disable-transition
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
#emake DESTDIR="${D}" htmldir="/usr/share/doc/${PF}/html" install
|
|
mv "${D}/usr/bin/gitview" "${D}/usr/bin/gnuitview" || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "The 'git' tool this package previously installed is now called 'gitfm'"
|
|
elog "The 'gitview' tool this package previously installed is now called 'gnuitview'"
|
|
elog "If you want the 'gitaction' tool to use your preferred desktop"
|
|
elog "application settings install the 'x11-misc/xdg-utils' package."
|
|
}
|