dev-util/dialog: add 1.3.20211107

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2021-11-09 07:09:44 +00:00
parent 77fb3c9301
commit 247cc0bf3d
2 changed files with 54 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST dialog-1.3-20210621.tgz 563430 BLAKE2B 8ffb630ed67f303facd79ca72aaca89d32c55a2b504293105a72c596409828fffd3e5e5f603fb5bec7f8748358a03ddadc7f1cd6fb989d1b31af1fd8f1078d97 SHA512 bde13aaf215127d143aa0d37989e0bacb6bc23f007681aeff27683efa01a483106710ff756358e396c23e4c1f0355cd8a2b3bb362ae1c3a1a997e00835d53c2b
DIST dialog-1.3-20211107.tgz 566509 BLAKE2B f2c045f60185c34eec18b878219fae10a5acca2dc8bec5d379de069c939a0079e1a95925f860944108c97c8ef4e32041966c423d8b294b2102311c9aa085301e SHA512 a6626092692ca61209f67caa7c5dec91f637e3ff002488a0e117ec80ce8fdf0ef50d3b11f67d84d8abb06145347a100de76223fb4b1f971a755c28de1be860ac

View File

@@ -0,0 +1,53 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P=${PN}-$(ver_rs 2 -)
DESCRIPTION="Tool to display dialog boxes from a shell"
HOMEPAGE="https://invisible-island.net/dialog/"
SRC_URI="https://invisible-mirror.net/archives/dialog/${MY_P}.tgz"
S="${WORKDIR}"/${MY_P}
LICENSE="GPL-2"
SLOT="0/15"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="examples minimal nls unicode"
RDEPEND=">=sys-libs/ncurses-5.2-r5:=[unicode(+)?]"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
BDEPEND="!minimal? ( sys-devel/libtool )
virtual/pkgconfig"
src_prepare() {
default
sed -i -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' configure || die
sed -i '/$(LIBTOOL_COMPILE)/s:$: $(LIBTOOL_OPTS):' makefile.in || die
}
src_configure() {
if [[ ${CHOST} == *-darwin* ]] ; then
export ac_cv_prog_LIBTOOL=glibtool
fi
econf \
--disable-rpath-hack \
--with-pkg-config \
$(use_enable nls) \
$(use_with !minimal libtool) \
--with-libtool-opts='-shared' \
--with-ncurses$(usex unicode w '')
}
src_install() {
use minimal && default || emake DESTDIR="${D}" install-full
use examples && dodoc -r samples
dodoc CHANGES README
find "${ED}" -name '*.la' -delete || die
}