diff options
author | Jeroen Roovers <jer@gentoo.org> | 2014-10-11 07:09:31 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2014-10-11 07:09:31 +0000 |
commit | 5fd58e6d1becc146cd084a25a29bfa74b0753e18 (patch) | |
tree | dfdb1875300d9b0f32439faf10927f0160bc6b9d /dev-util/dialog | |
parent | Version bump. EAPI 5. Add ruby20, ruby21. (diff) | |
download | gentoo-2-5fd58e6d1becc146cd084a25a29bfa74b0753e18.tar.gz gentoo-2-5fd58e6d1becc146cd084a25a29bfa74b0753e18.tar.bz2 gentoo-2-5fd58e6d1becc146cd084a25a29bfa74b0753e18.zip |
Version bump.
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-util/dialog')
-rw-r--r-- | dev-util/dialog/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/dialog/dialog-1.2.20140219.ebuild | 5 | ||||
-rw-r--r-- | dev-util/dialog/dialog-1.2.20140911.ebuild | 51 |
3 files changed, 60 insertions, 4 deletions
diff --git a/dev-util/dialog/ChangeLog b/dev-util/dialog/ChangeLog index a58e1013515f..4227f37a4072 100644 --- a/dev-util/dialog/ChangeLog +++ b/dev-util/dialog/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/dialog # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.212 2014/08/01 02:28:46 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.213 2014/10/11 07:09:31 jer Exp $ + +*dialog-1.2.20140911 (11 Oct 2014) + + 11 Oct 2014; Jeroen Roovers <jer@gentoo.org> dialog-1.2.20140219.ebuild, + +dialog-1.2.20140911.ebuild: + Version bump. 01 Aug 2014; <tgall@gentoo.org> dialog-1.2.20140219.ebuild: Initial arm64 support diff --git a/dev-util/dialog/dialog-1.2.20140219.ebuild b/dev-util/dialog/dialog-1.2.20140219.ebuild index 86216ad830e5..033788a21270 100644 --- a/dev-util/dialog/dialog-1.2.20140219.ebuild +++ b/dev-util/dialog/dialog-1.2.20140219.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20140219.ebuild,v 1.11 2014/07/31 19:26:35 tgall Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20140219.ebuild,v 1.12 2014/10/11 07:09:31 jer Exp $ EAPI=5 inherit eutils multilib versionator @@ -17,8 +17,7 @@ KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc IUSE="examples minimal nls static-libs unicode" RDEPEND=" - >=sys-libs/ncurses-5.2-r5 - unicode? ( sys-libs/ncurses[unicode] ) + >=sys-libs/ncurses-5.2-r5[unicode?] " DEPEND=" ${RDEPEND} diff --git a/dev-util/dialog/dialog-1.2.20140911.ebuild b/dev-util/dialog/dialog-1.2.20140911.ebuild new file mode 100644 index 000000000000..9458a0e30b5b --- /dev/null +++ b/dev-util/dialog/dialog-1.2.20140911.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20140911.ebuild,v 1.1 2014/10/11 07:09:31 jer Exp $ + +EAPI=5 +inherit eutils multilib versionator + +MY_PV="$(get_version_component_range 1-2)-$(get_version_component_range 3)" +S=${WORKDIR}/${PN}-${MY_PV} +DESCRIPTION="tool to display dialog boxes from a shell" +HOMEPAGE="http://invisible-island.net/dialog/dialog.html" +SRC_URI="ftp://invisible-island.net/${PN}/${PN}-${MY_PV}.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() { + 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 +} |