From 45b17ed7c245691c4fb565036e3055a6469e25ec Mon Sep 17 00:00:00 2001 From: 1024x2 Date: Mon, 6 May 2024 15:17:26 +0100 Subject: Initial commit --- .../pacman-contrib/pacman-contrib-1.10.5.ebuild | 41 ++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 app-misc/pacman-contrib/pacman-contrib-1.10.5.ebuild (limited to 'app-misc/pacman-contrib/pacman-contrib-1.10.5.ebuild') diff --git a/app-misc/pacman-contrib/pacman-contrib-1.10.5.ebuild b/app-misc/pacman-contrib/pacman-contrib-1.10.5.ebuild new file mode 100644 index 0000000..2f6b97a --- /dev/null +++ b/app-misc/pacman-contrib/pacman-contrib-1.10.5.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit autotools + +DESCRIPTION="Contributed scripts for sys-apps/pacman" +HOMEPAGE="https://archlinux.org/pacman/" + +if [[ ${PV} == 9999 ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://gitlab.archlinux.org/pacman/pacman-contrib.git" +else + SRC_URI="https://gitlab.archlinux.org/pacman/pacman-contrib/-/archive/v${PV}/pacman-contrib-v${PV}.tar.bz2" + KEYWORDS="~amd64" +fi + +LICENSE="GPL-2" +SLOT="0" + +IUSE="debug" + +RDEPEND="sys-apps/pacman" +DEPEND=" + ${RDEPEND} + app-text/asciidoc +" + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + econf \ + --localstatedir=/var \ + --enable-doc \ + $(use_enable debug) +} -- cgit v1.2.3