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 89DD9138334 for ; Thu, 26 Jul 2018 19:30:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8DBD1E0924; Thu, 26 Jul 2018 19:30:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 57115E0924 for ; Thu, 26 Jul 2018 19:30:34 +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 539B3335CD0 for ; Thu, 26 Jul 2018 19:30:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94C2A389 for ; Thu, 26 Jul 2018 19:30:30 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1532633427.feac73e9b606720175885e4fc8e240cdf16f17dd.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/dvbackup/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/dvbackup/dvbackup-0.0.4-r1.ebuild X-VCS-Directories: media-video/dvbackup/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: feac73e9b606720175885e4fc8e240cdf16f17dd X-VCS-Branch: master Date: Thu, 26 Jul 2018 19:30:30 +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: bb20bbfc-40f6-4027-803b-e7cb58f2dead X-Archives-Hash: 81c96d7a93fa5ab4a6b405c28867d3a7 commit: feac73e9b606720175885e4fc8e240cdf16f17dd Author: Mikle Kolyada gentoo org> AuthorDate: Thu Jul 26 19:30:11 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Thu Jul 26 19:30:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feac73e9 media-video/dvbackup: Drop old Package-Manager: Portage-2.3.40, Repoman-2.3.9 media-video/dvbackup/dvbackup-0.0.4-r1.ebuild | 52 --------------------------- 1 file changed, 52 deletions(-) diff --git a/media-video/dvbackup/dvbackup-0.0.4-r1.ebuild b/media-video/dvbackup/dvbackup-0.0.4-r1.ebuild deleted file mode 100644 index dabe40404d6..00000000000 --- a/media-video/dvbackup/dvbackup-0.0.4-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit eutils - -DESCRIPTION="A small utility for creating backups on DV tapes" -HOMEPAGE="http://dvbackup.sourceforge.net/" -SRC_URI="mirror://sourceforge/dvbackup/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND="sys-libs/glibc - dev-libs/popt - sys-libs/zlib" - -RDEPEND="${DEPEND} - media-libs/libdv" - -src_prepare() { - local i - - epatch "${FILESDIR}/${P}-gcc4.diff" - - # fix Makefile to respect $LDFLAGS - sed -i -e 's:gcc \$(CFLAGS):\$(CC) \$(CFLAGS) \$(LDFLAGS):g' \ - -e 's:^\(CFLAGS=\):#\1:g' Makefile - - # convert LATIN1 docs to UTF-8 - for i in ChangeLog ReleaseNotes; do - if [ -f "${i}" ]; then - echo ">>> Converting ${i} to UTF-8" - iconv -f LATIN1 -t UTF8 -o "${i}~" "${i}" && mv -f "${i}~" "${i}" || rm -f "${i}~" - fi - done -} - -src_compile() { - emake dvbackup || die "emake failed" -} - -src_install() { - dobin dvbackup - insinto /usr/share/${PN} - doins underrun-ntsc.dv underrun-pal.dv - dodoc AUTHORS ChangeLog ReleaseNotes - dohtml dvbackup.html -}