summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2012-10-31 19:01:53 +0000
committerJeroen Roovers <jer@gentoo.org>2012-10-31 19:01:53 +0000
commita6abe7e1eed86b9164b1beff837ecad653b15ccb (patch)
treeb84d2e224cc09d853f01f488c0069bc7c8cfa76a /dev-util
parentx86 stable, see bug 437814 (diff)
downloadgentoo-2-a6abe7e1eed86b9164b1beff837ecad653b15ccb.tar.gz
gentoo-2-a6abe7e1eed86b9164b1beff837ecad653b15ccb.tar.bz2
gentoo-2-a6abe7e1eed86b9164b1beff837ecad653b15ccb.zip
Old.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/dialog/ChangeLog6
-rw-r--r--dev-util/dialog/dialog-1.1.20110707-r1.ebuild65
-rw-r--r--dev-util/dialog/dialog-1.1.20111020-r1.ebuild69
3 files changed, 5 insertions, 135 deletions
diff --git a/dev-util/dialog/ChangeLog b/dev-util/dialog/ChangeLog
index f186656d58c8..0972f7d6e0af 100644
--- a/dev-util/dialog/ChangeLog
+++ b/dev-util/dialog/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/dialog
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.160 2012/07/18 17:25:40 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.161 2012/10/31 19:01:53 jer Exp $
+
+ 31 Oct 2012; Jeroen Roovers <jer@gentoo.org> -dialog-1.1.20110707-r1.ebuild,
+ -dialog-1.1.20111020-r1.ebuild:
+ Old.
*dialog-1.1.20120706 (18 Jul 2012)
diff --git a/dev-util/dialog/dialog-1.1.20110707-r1.ebuild b/dev-util/dialog/dialog-1.1.20110707-r1.ebuild
deleted file mode 100644
index fa80e8aff71c..000000000000
--- a/dev-util/dialog/dialog-1.1.20110707-r1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.1.20110707-r1.ebuild,v 1.13 2012/03/28 20:12:53 vapier Exp $
-
-EAPI="2"
-
-inherit multilib
-
-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 x86 ~sparc-fbsd ~x86-fbsd"
-IUSE="examples minimal nls static-libs unicode"
-
-RDEPEND="
- >=app-shells/bash-2.04-r3
- !unicode? ( >=sys-libs/ncurses-5.2-r5 )
- unicode? ( >=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 configure -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' || die
-}
-
-src_configure() {
- local ncursesw
- use unicode && ncursesw="w"
- econf \
- --disable-rpath-hack \
- $(use_enable nls) \
- $(use_with !minimal libtool) \
- --with-ncurses${ncursesw}
-}
-
-src_install() {
- if use minimal; then
- emake DESTDIR="${D}" install || die "install failed"
- else
- emake DESTDIR="${D}" install-full || die "install failed"
- fi
-
- dodoc CHANGES README VERSION
-
- if use examples; then
- docinto samples
- dodoc samples/*
- fi
-
- if ! use static-libs; then
- rm -f \
- "${D}"usr/$(get_libdir)/libdialog.a \
- "${D}"usr/$(get_libdir)/libdialog.la
- fi
-}
diff --git a/dev-util/dialog/dialog-1.1.20111020-r1.ebuild b/dev-util/dialog/dialog-1.1.20111020-r1.ebuild
deleted file mode 100644
index 1181dd445238..000000000000
--- a/dev-util/dialog/dialog-1.1.20111020-r1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.1.20111020-r1.ebuild,v 1.2 2012/03/28 20:12:53 vapier Exp $
-
-EAPI="4"
-
-inherit multilib
-
-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 ~x86 ~sparc-fbsd ~x86-fbsd"
-IUSE="examples minimal nls static-libs unicode"
-
-RDEPEND="
- >=app-shells/bash-2.04-r3
- !unicode? ( >=sys-libs/ncurses-5.2-r5 )
- unicode? ( >=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 configure -e '/LIB_CREATE=/s:${CC}:& ${LDFLAGS}:g' || die
-}
-
-src_configure() {
- local ncursesw
- use unicode && ncursesw="w"
- econf \
- --disable-rpath-hack \
- $(use_enable nls) \
- $(use_with !minimal libtool) \
- --with-ncurses${ncursesw}
-}
-
-src_install() {
- if use minimal; then
- emake DESTDIR="${D}" install
- else
- emake DESTDIR="${D}" install-full
- fi
-
- dodoc CHANGES README VERSION
-
- if use examples; then
- docinto samples
- dodoc $( find samples -maxdepth 1 -type f )
- docinto samples/copifuncs
- dodoc $( find samples/copifuncs -maxdepth 1 -type f )
- docinto samples/install
- dodoc $( find samples/install -type f )
- fi
-
- if ! use static-libs; then
- rm -f \
- "${D}"usr/$(get_libdir)/libdialog.a \
- "${D}"usr/$(get_libdir)/libdialog.la
- fi
-}