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 4FA1C138334 for ; Mon, 13 May 2019 21:01:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4179EE082F; Mon, 13 May 2019 21:01:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 27027E082F for ; Mon, 13 May 2019 21:01:00 +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 93F7E344254 for ; Mon, 13 May 2019 21:00:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3BA95E7 for ; Mon, 13 May 2019 21:00:56 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1557780994.519cbf96d82d77776ada2a3b8dce2e781ac08d22.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/umix/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/umix/umix-1.0.2.ebuild X-VCS-Directories: media-sound/umix/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 519cbf96d82d77776ada2a3b8dce2e781ac08d22 X-VCS-Branch: master Date: Mon, 13 May 2019 21:00:56 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5891ee15-9f09-42fb-9703-c7439c9a1fa2 X-Archives-Hash: 46fbd16be2ac0f645163b619ab60c86c commit: 519cbf96d82d77776ada2a3b8dce2e781ac08d22 Author: Pacho Ramos gentoo org> AuthorDate: Mon May 13 20:56:34 2019 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Mon May 13 20:56:34 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519cbf96 media-sound/umix: Drop old Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Pacho Ramos gentoo.org> media-sound/umix/umix-1.0.2.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/media-sound/umix/umix-1.0.2.ebuild b/media-sound/umix/umix-1.0.2.ebuild deleted file mode 100644 index d283cbbf03d..00000000000 --- a/media-sound/umix/umix-1.0.2.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -IUSE="ncurses oss" - -DESCRIPTION="Program for adjusting soundcard volumes" -HOMEPAGE="http://umix.sf.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="alpha amd64 ppc sparc x86" - -DEPEND="ncurses? ( >=sys-libs/ncurses-5.2 )" - -src_compile() { - local myconf - use ncurses || myconf="--disable-ncurses" - use oss || myconf="${myconf} --disable-oss" - econf ${myconf} || die - emake || die -} - -src_install() { - make DESTDIR="${D}" install - dodoc AUTHORS ChangeLog NEWS README TODO -}