diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-09-29 15:38:18 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-09-29 15:38:18 +0000 |
commit | 75b4c0090355dd67872a62eb224e4d24eb58b76e (patch) | |
tree | 2983b3e1359db9118f35d7cdc3faff0f9eacad4e /dev-util | |
parent | Old. (diff) | |
download | gentoo-2-75b4c0090355dd67872a62eb224e4d24eb58b76e.tar.gz gentoo-2-75b4c0090355dd67872a62eb224e4d24eb58b76e.tar.bz2 gentoo-2-75b4c0090355dd67872a62eb224e4d24eb58b76e.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/dialog/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/dialog/dialog-1.2.20130928.ebuild | 57 |
2 files changed, 63 insertions, 1 deletions
diff --git a/dev-util/dialog/ChangeLog b/dev-util/dialog/ChangeLog index aae91c34372a..744c7fae1c12 100644 --- a/dev-util/dialog/ChangeLog +++ b/dev-util/dialog/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/dialog # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.185 2013/09/29 15:25:58 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.186 2013/09/29 15:38:18 jer Exp $ + +*dialog-1.2.20130928 (29 Sep 2013) + + 29 Sep 2013; Jeroen Roovers <jer@gentoo.org> +dialog-1.2.20130928.ebuild: + Version bump. 29 Sep 2013; Jeroen Roovers <jer@gentoo.org> -dialog-1.1.20120706.ebuild: Old. diff --git a/dev-util/dialog/dialog-1.2.20130928.ebuild b/dev-util/dialog/dialog-1.2.20130928.ebuild new file mode 100644 index 000000000000..a0ac2cb9899a --- /dev/null +++ b/dev-util/dialog/dialog-1.2.20130928.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20130928.ebuild,v 1.1 2013/09/29 15:38:18 jer Exp $ + +EAPI="4" + +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 ~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? ( sys-libs/ncurses[unicode] ) +" +DEPEND=" + ${RDEPEND} + nls? ( sys-devel/gettext ) + !minimal? ( sys-devel/libtool ) + !<=sys-freebsd/freebsd-contrib-8.9999 +" + +src_prepare() { + sed -i configure -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' || 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() { + if use minimal; then + default + else + emake DESTDIR="${D}" install-full + fi + + dodoc CHANGES README + + use examples && dodoc -r samples + + use static-libs || prune_libtool_files +} |