From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A5F6E1382C5 for ; Thu, 29 Mar 2018 09:23:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2C40E087E; Thu, 29 Mar 2018 09:23:37 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 797F2E087E for ; Thu, 29 Mar 2018 09:23:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C6F1335CF9 for ; Thu, 29 Mar 2018 09:23:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6C784268 for ; Thu, 29 Mar 2018 09:23:34 +0000 (UTC) From: "Chí-Thanh Christopher Nguyễn" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Chí-Thanh Christopher Nguyễn" Message-ID: <1522315397.508a312dd41929cfac5cd243ac6d35aa3e540b3c.chithanh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/dvtm/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/dvtm/dvtm-0.15.ebuild X-VCS-Directories: app-misc/dvtm/ X-VCS-Committer: chithanh X-VCS-Committer-Name: Chí-Thanh Christopher Nguyễn X-VCS-Revision: 508a312dd41929cfac5cd243ac6d35aa3e540b3c X-VCS-Branch: master Date: Thu, 29 Mar 2018 09:23:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8d6505bd-49c9-4619-9adc-871823706525 X-Archives-Hash: 6e8947a877f481f434f62f140b63ce7a commit: 508a312dd41929cfac5cd243ac6d35aa3e540b3c Author: Chí-Thanh Christopher Nguyễn gentoo org> AuthorDate: Thu Mar 29 09:23:17 2018 +0000 Commit: Chí-Thanh Christopher Nguyễn gentoo org> CommitDate: Thu Mar 29 09:23:17 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=508a312d app-misc/dvtm: drop obsolete ebuild Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-misc/dvtm/dvtm-0.15.ebuild | 67 ------------------------------------------ 1 file changed, 67 deletions(-) diff --git a/app-misc/dvtm/dvtm-0.15.ebuild b/app-misc/dvtm/dvtm-0.15.ebuild deleted file mode 100644 index a579a42918d..00000000000 --- a/app-misc/dvtm/dvtm-0.15.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit savedconfig toolchain-funcs - -DESCRIPTION="Dynamic virtual terminal manager" -HOMEPAGE="http://www.brain-dump.org/projects/dvtm/" - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="git://repo.or.cz/dvtm.git" -else - SRC_URI="http://www.brain-dump.org/projects/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~x86" -fi - -LICENSE="MIT" -SLOT="0" -IUSE="unicode" - -DEPEND="sys-libs/ncurses:0=[unicode?]" -RDEPEND=${DEPEND} - -src_prepare() { - sed -i \ - -e 's|FLAGS =|FLAGS +=|' \ - -e 's|-I/usr/local/include||' \ - -e 's|-L/usr/local/lib||' \ - -e 's|-Os||' \ - config.mk || die "sed config.mk failed" - use unicode || { - sed -i \ - -e 's|-lncursesw|-lncurses|' \ - config.mk || die "sed config.mk failed" - } - sed -i \ - -e '/strip/d' \ - -e 's:@tic :@tic -o ${DESTDIR}${PREFIX}/share/terminfo :g' \ - Makefile || die "sed Makefile failed" - - restore_config config.h -} - -src_compile() { - local msg="" - use savedconfig && msg=", please check the configfile" - emake CC=$(tc-getCC) ${PN} || die "emake failed${msg}" -} - -src_install() { - emake DESTDIR="${D}" PREFIX="/usr" install - - insinto /usr/share/${PN} - newins config.h ${PF}.config.h - - dodoc README.md - - save_config config.h -} - -pkg_postinst() { - elog "This ebuild has support for user defined configs" - elog "Please read this ebuild for more details and re-emerge as needed" - elog "if you want to add or remove functionality for ${PN}" -}