From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1014440-garchives=archives.gentoo.org@lists.gentoo.org> 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 914061382C5 for <garchives@archives.gentoo.org>; Sun, 1 Apr 2018 23:59:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB1D8E0B1A; Sun, 1 Apr 2018 23:59:19 +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 95023E0B1A for <gentoo-commits@lists.gentoo.org>; Sun, 1 Apr 2018 23:59:19 +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 7A1EB33BE3A for <gentoo-commits@lists.gentoo.org>; Sun, 1 Apr 2018 23:59:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB74E26B for <gentoo-commits@lists.gentoo.org>; Sun, 1 Apr 2018 23:59:16 +0000 (UTC) From: "Matt Turner" <mattst88@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" <mattst88@gentoo.org> Message-ID: <1522627132.9aab7089a16272ae38c63a874be6d0cdf5871b04.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/pdv/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/pdv/pdv-1.5.1-r2.ebuild X-VCS-Directories: app-arch/pdv/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 9aab7089a16272ae38c63a874be6d0cdf5871b04 X-VCS-Branch: master Date: Sun, 1 Apr 2018 23:59:16 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 4844a50b-f972-4ced-8074-8c75d64b5d1f X-Archives-Hash: 6faa3c7aefc72c2e23229a4997e9b18b commit: 9aab7089a16272ae38c63a874be6d0cdf5871b04 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Sun Apr 1 23:58:52 2018 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Sun Apr 1 23:58:52 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9aab7089 app-arch/pdv: Drop old Closes: https://bugs.gentoo.org/649146 app-arch/pdv/pdv-1.5.1-r2.ebuild | 56 ---------------------------------------- 1 file changed, 56 deletions(-) diff --git a/app-arch/pdv/pdv-1.5.1-r2.ebuild b/app-arch/pdv/pdv-1.5.1-r2.ebuild deleted file mode 100644 index 509ae0fa82c..00000000000 --- a/app-arch/pdv/pdv-1.5.1-r2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -inherit eutils autotools toolchain-funcs - -DESCRIPTION="build a self-extracting and self-installing binary package" -HOMEPAGE="https://sourceforge.net/projects/pdv" -SRC_URI="mirror://sourceforge/pdv/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~hppa ppc x86 ~x86-linux ~ppc-macos" -IUSE="X" - -DEPEND="X? ( >=x11-libs/motif-2.3:0 - >=x11-libs/libX11-1.0.0 - >=x11-libs/libXt-1.0.0 - >=x11-libs/libXext-1.0.0 - >=x11-libs/libXp-1.0.0 )" -RDEPEND="${DEPEND}" - -src_prepare() { - # fix a size-of-variable bug - epatch "${FILESDIR}"/${P}-opt.patch - # fix a free-before-use bug - epatch "${FILESDIR}"/${P}-early-free.patch - # fix a configure script bug - epatch "${FILESDIR}"/${P}-x-config.patch - # fix default args bug from assuming 'char' is signed - epatch "${FILESDIR}"/${P}-default-args.patch - # prevent pre-stripped binaries - epatch "${FILESDIR}"/${P}-no-strip.patch - - # re-build configure script since patch was applied to configure.in - cd "${S}"/X11 - eautoreconf - tc-export CC -} - -src_configure() { - local myconf="" - use X || myconf="--without-x" # configure script is broken, cant use use_with - econf ${myconf} -} - -src_install() { - dobin pdv pdvmkpkg - doman pdv.1 pdvmkpkg.1 - if use X ; then - dobin X11/xmpdvmkpkg - doman xmpdvmkpkg.1 - fi - dodoc AUTHORS ChangeLog NEWS README pdv.lsm -}