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 4FFCB139085 for ; Sat, 4 Feb 2017 01:32:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5D9221C121; Sat, 4 Feb 2017 01:32:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8D6F121C121 for ; Sat, 4 Feb 2017 01:31:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C9EE341265 for ; Sat, 4 Feb 2017 01:31:44 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E016C3DD1 for ; Sat, 4 Feb 2017 01:31:40 +0000 (UTC) From: "Alon Bar-Lev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alon Bar-Lev" Message-ID: <1486171853.e0f46b211ae3d3b453285b0b536505536e143526.alonbl@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/chntpw/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/chntpw/chntpw-140201.ebuild X-VCS-Directories: app-crypt/chntpw/ X-VCS-Committer: alonbl X-VCS-Committer-Name: Alon Bar-Lev X-VCS-Revision: e0f46b211ae3d3b453285b0b536505536e143526 X-VCS-Branch: master Date: Sat, 4 Feb 2017 01:31:40 +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: be2e0a56-4c4b-415b-9f2c-bde703303429 X-Archives-Hash: 30e6c3bbda87c3f69b92ba040d717b66 commit: e0f46b211ae3d3b453285b0b536505536e143526 Author: Alon Bar-Lev gentoo org> AuthorDate: Sat Feb 4 00:35:24 2017 +0000 Commit: Alon Bar-Lev gentoo org> CommitDate: Sat Feb 4 01:30:53 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f46b21 app-crypt/chntpw: eapi bump Package-Manager: portage-2.3.3 app-crypt/chntpw/chntpw-140201.ebuild | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/app-crypt/chntpw/chntpw-140201.ebuild b/app-crypt/chntpw/chntpw-140201.ebuild index ee1858d5..6ad9ecd 100644 --- a/app-crypt/chntpw/chntpw-140201.ebuild +++ b/app-crypt/chntpw/chntpw-140201.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit toolchain-funcs @@ -21,7 +21,12 @@ DEPEND="${RDEPEND} app-arch/unzip static? ( dev-libs/openssl:0[static-libs] )" +DOCS=( + HISTORY.txt README.txt regedit.txt WinReg.txt +) + src_prepare() { + default sed -i -e '/-o/s:$(CC):$(CC) $(LDFLAGS):' Makefile || die if ! use static ; then @@ -39,11 +44,10 @@ src_compile() { } src_install() { + einstalldocs dobin chntpw cpnt reged if use static; then dobin {chntpw,reged}.static fi - - dodoc {HISTORY,README,regedit,WinReg}.txt }