diff options
author | Jeroen Roovers <jer@gentoo.org> | 2016-03-01 04:04:11 +0100 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2016-03-01 04:21:21 +0100 |
commit | a565f561d078096dd6ab4d7907026d48b8795ca2 (patch) | |
tree | bed12579e53c2e7ee2aa08ca3cd64b1736339f69 /dev-util/dialog | |
parent | dev-vcs/blogc-git-receiver: version bump (diff) | |
download | gentoo-a565f561d078096dd6ab4d7907026d48b8795ca2.tar.gz gentoo-a565f561d078096dd6ab4d7907026d48b8795ca2.tar.bz2 gentoo-a565f561d078096dd6ab4d7907026d48b8795ca2.zip |
dev-util/dialog: Old.
Package-Manager: portage-2.2.27
Diffstat (limited to 'dev-util/dialog')
-rw-r--r-- | dev-util/dialog/Manifest | 1 | ||||
-rw-r--r-- | dev-util/dialog/dialog-1.2.20150528.ebuild | 51 |
2 files changed, 0 insertions, 52 deletions
diff --git a/dev-util/dialog/Manifest b/dev-util/dialog/Manifest index bfa198792294..374b5a2212b8 100644 --- a/dev-util/dialog/Manifest +++ b/dev-util/dialog/Manifest @@ -1,2 +1 @@ -DIST dialog-1.2-20150528.tgz 497650 SHA256 a8cd7a66bdb41e53a3145cbb0eb370c5ce7300fe0e9ad6d3e8d3b9e16ff16418 SHA512 fd044715ca83ea21d42daa979f7b7f91634ec28658da550b17e0b804eeb2393b4ff75aef967c994f276f1f341b428e13fba2258730ef1fbfb1d5e1675c68d80d WHIRLPOOL 543b716f5f749a03d78b40f762ed4f2ff23c07e0acab6f8e22be5518c1e05d9a65b9f372de083f43ee19cd7551043ecc8c19f3d4111369c4b500d357342c21fe DIST dialog-1.2-20150920.tgz 498181 SHA256 c4e61ec5768701683dd4b5b2ebd8a31e6289fa6a1f5801e4b481085650698c05 SHA512 9cc0005ef6a0d7dc0b8263a433b0955fd8331fec9bceb0676dfb17da566d73216a089eab85b804918017623b98653bdb6b4e809a99ecf638f5a529dcf6314e48 WHIRLPOOL 7387fe72b56b20850826506b844e3d4378e7287aa67fc04b3f72d5684b34229fa14351ec2b8542c72b8a303c7c9819b8ead699575ad8eb90707d5e10de077e07 diff --git a/dev-util/dialog/dialog-1.2.20150528.ebuild b/dev-util/dialog/dialog-1.2.20150528.ebuild deleted file mode 100644 index 21ec10439328..000000000000 --- a/dev-util/dialog/dialog-1.2.20150528.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -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 -} |