diff options
author | Harald van Dijk <truedfx@gentoo.org> | 2008-09-09 16:37:02 +0000 |
---|---|---|
committer | Harald van Dijk <truedfx@gentoo.org> | 2008-09-09 16:37:02 +0000 |
commit | 6d089efe27c2428582fe3e2ee5c455effcc27368 (patch) | |
tree | 72b14fee580327d2b9ab7f06d4a87f263f6a6d81 /dev-util | |
parent | Bump to 2008 (diff) | |
download | gentoo-2-6d089efe27c2428582fe3e2ee5c455effcc27368.tar.gz gentoo-2-6d089efe27c2428582fe3e2ee5c455effcc27368.tar.bz2 gentoo-2-6d089efe27c2428582fe3e2ee5c455effcc27368.zip |
Version bump (#237149)
(Portage version: 2.2_rc8/cvs/Linux 2.6.26-gentoo-r1 x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/dialog/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/dialog/dialog-1.1.20080819.ebuild | 48 |
2 files changed, 55 insertions, 1 deletions
diff --git a/dev-util/dialog/ChangeLog b/dev-util/dialog/ChangeLog index ae9f2292031d..1ea88ee153ba 100644 --- a/dev-util/dialog/ChangeLog +++ b/dev-util/dialog/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/dialog # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.113 2008/08/18 21:03:52 truedfx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.114 2008/09/09 16:37:02 truedfx Exp $ + +*dialog-1.1.20080819 (09 Sep 2008) + + 09 Sep 2008; Harald van Dijk <truedfx@gentoo.org> + +dialog-1.1.20080819.ebuild: + Version bump (#237149) *dialog-1.1.20080727 (18 Aug 2008) diff --git a/dev-util/dialog/dialog-1.1.20080819.ebuild b/dev-util/dialog/dialog-1.1.20080819.ebuild new file mode 100644 index 000000000000..c4db8d31705e --- /dev/null +++ b/dev-util/dialog/dialog-1.1.20080819.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.1.20080819.ebuild,v 1.1 2008/09/09 16:37:02 truedfx Exp $ + +inherit eutils + +MY_PV="${PV/1.1./1.1-}" +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 ~sparc-fbsd ~x86 ~x86-fbsd" +IUSE="examples nls unicode" + +RDEPEND=">=app-shells/bash-2.04-r3 + >=sys-libs/ncurses-5.2-r5" +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +pkg_setup() { + if use unicode && ! built_with_use sys-libs/ncurses unicode; then + eerror "Installing dialog with the unicode flag requires ncurses be" + eerror "built with it as well. Please make sure your /etc/make.conf" + eerror "or /etc/portage/package.use enables it, and re-install" + eerror "ncurses with \`emerge --oneshot sys-libs/ncurses\`." + die "Re-emerge ncurses with the unicode flag" + fi +} + +src_compile() { + use unicode && ncursesw="w" + econf $(use_enable nls) \ + "--with-ncurses${ncursesw}" || die "configure failed" + emake || die "build failed" +} + +src_install() { + emake install DESTDIR="${D}" || die + dodoc CHANGES README VERSION + + if use examples; then + docinto samples + dodoc samples/* + fi +} |