diff options
author | Mike Pagano <mpagano@gentoo.org> | 2021-02-14 15:46:34 -0500 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2021-02-14 15:46:34 -0500 |
commit | 09bf82be9edc9172a306a6b48e49726cb8d05a80 (patch) | |
tree | 495cf8c8e5a366557da9c75ffa5f79b8ccc74967 /dev-util/quilt | |
parent | app-laptop/thinkfan: Use cmake.eclass (diff) | |
download | gentoo-09bf82be9edc9172a306a6b48e49726cb8d05a80.tar.gz gentoo-09bf82be9edc9172a306a6b48e49726cb8d05a80.tar.bz2 gentoo-09bf82be9edc9172a306a6b48e49726cb8d05a80.zip |
dev-util/quilt: Bump to EAPI-7
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Diffstat (limited to 'dev-util/quilt')
-rw-r--r-- | dev-util/quilt/quilt-0.66-r1.ebuild | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/dev-util/quilt/quilt-0.66-r1.ebuild b/dev-util/quilt/quilt-0.66-r1.ebuild new file mode 100644 index 000000000000..4297340cae98 --- /dev/null +++ b/dev-util/quilt/quilt-0.66-r1.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit bash-completion-r1 eutils + +DESCRIPTION="quilt patch manager" +HOMEPAGE="https://savannah.nongnu.org/projects/quilt" +SRC_URI="https://savannah.nongnu.orgdownload/quilt/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris" +IUSE="emacs graphviz elibc_Darwin elibc_SunOS" +# unresolved test failures +RESTRICT="test" + +RDEPEND="sys-apps/ed + dev-util/diffstat + graphviz? ( media-gfx/graphviz ) + elibc_Darwin? ( app-misc/getopt ) + elibc_SunOS? ( app-misc/getopt ) + >=sys-apps/coreutils-8.32-r1" + +PDEPEND="emacs? ( app-emacs/quilt-el )" + +pkg_setup() { + use graphviz && return 0 + echo + elog "If you intend to use the folding functionality (graphical illustration of the" + elog "patch stack) then you'll need to remerge this package with USE=graphviz." + echo +} + +src_prepare() { + # Add support for USE=graphviz + use graphviz || PATCHES+=( "${FILESDIR}"/${PN}-0.66-no-graphviz.patch ) + default +} + +src_configure() { + [[ ${CHOST} == *-darwin* || ${CHOST} == *-solaris* ]] && \ + myconf="${myconf} --with-getopt=${EPREFIX}/usr/bin/getopt-long" + econf ${myconf} +} + +src_install() { + emake BUILD_ROOT="${D}" install + + rm -rf "${ED}"/usr/share/doc/${P} + dodoc AUTHORS TODO "doc/README" "doc/README.MAIL" "doc/quilt.pdf" + + rm -rf "${ED}"/etc/bash_completion.d + newbashcomp bash_completion ${PN} + + # Remove the compat symlinks + rm -rf "${ED}"/usr/share/quilt/compat + + # Remove Emacs mode; newer version is in app-emacs/quilt-el, bug 247500 + rm -rf "${ED}"/usr/share/emacs +} |