diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2016-04-25 14:40:11 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2016-04-25 14:40:33 +0200 |
commit | cc5e6ad050557142ea56b6e7115adbf260d93a81 (patch) | |
tree | b2afdb706f8fa6cb672abf172a5f23dc3f637bec /dev-util/dialog/dialog-1.3.20160424.ebuild | |
parent | x11-drivers/xf86-video-intel: restore latest ebuild which was dropped (diff) | |
download | gentoo-cc5e6ad050557142ea56b6e7115adbf260d93a81.tar.gz gentoo-cc5e6ad050557142ea56b6e7115adbf260d93a81.tar.bz2 gentoo-cc5e6ad050557142ea56b6e7115adbf260d93a81.zip |
dev-util/dialog: Bump to version 1.3.20160424
Package-Manager: portage-2.2.28
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'dev-util/dialog/dialog-1.3.20160424.ebuild')
-rw-r--r-- | dev-util/dialog/dialog-1.3.20160424.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/dev-util/dialog/dialog-1.3.20160424.ebuild b/dev-util/dialog/dialog-1.3.20160424.ebuild new file mode 100644 index 000000000000..1c49f0ccc7fd --- /dev/null +++ b/dev-util/dialog/dialog-1.3.20160424.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit eutils multilib versionator + +MY_P="${PN}-$(replace_version_separator 2 '-')" +S="${WORKDIR}/${MY_P}" +DESCRIPTION="tool to display dialog boxes from a shell" +HOMEPAGE="http://invisible-island.net/dialog/dialog.html" +SRC_URI="ftp://invisible-island.net/${PN}/${MY_P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +IUSE="examples minimal nls static-libs unicode" + +RDEPEND=" + >=sys-libs/ncurses-5.2-r5:=[unicode?] +" +DEPEND=" + ${RDEPEND} + nls? ( sys-devel/gettext ) + !minimal? ( sys-devel/libtool ) + !<=sys-freebsd/freebsd-contrib-8.9999 +" + +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() { + econf \ + --disable-rpath-hack \ + $(use_enable nls) \ + $(use_with !minimal libtool) \ + --with-libtool-opts=$(usex static-libs '' '-shared') \ + --with-ncurses$(usex unicode w '') +} + +src_install() { + use minimal && default || emake DESTDIR="${D}" install-full + + use examples && dodoc -r samples + + dodoc CHANGES README + + prune_libtool_files +} |