forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: https://bugs.gentoo.org/900142 Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
76fd064
commit fd2291e
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
# Copyright 1999-2023 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
MY_P=${PN}-$(ver_rs 2 -) | ||
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/thomasdickey.asc | ||
inherit verify-sig | ||
|
||
DESCRIPTION="Tool to display dialog boxes from a shell" | ||
HOMEPAGE="https://invisible-island.net/dialog/" | ||
SRC_URI="https://invisible-island.net/archives/dialog/${MY_P}.tgz" | ||
SRC_URI+=" verify-sig? ( https://invisible-island.net/archives/dialog/${MY_P}.tgz.asc )" | ||
S="${WORKDIR}"/${MY_P} | ||
|
||
LICENSE="LGPL-2.1" | ||
SLOT="0/15" | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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=" | ||
virtual/pkgconfig | ||
!minimal? ( sys-devel/libtool ) | ||
verify-sig? ( sec-keys/openpgp-keys-thomasdickey ) | ||
" | ||
|
||
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 \ | ||
--enable-pc-files \ | ||
$(use_enable nls) \ | ||
$(use_with !minimal libtool) \ | ||
--with-libtool-opts='-shared' \ | ||
--with-ncurses$(usev 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 | ||
} |