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 57A62139696 for ; Sun, 19 Feb 2017 23:46:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C549E21C054; Sun, 19 Feb 2017 23:46: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 A5F6D21C054 for ; Sun, 19 Feb 2017 23:46:04 +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 83DF5340AC7 for ; Sun, 19 Feb 2017 23:46:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 015474DC4 for ; Sun, 19 Feb 2017 23:46:01 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1487547815.3b52c8f3ced755d884bc3a6fa358d67ab81276b8.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/fpm2/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-misc/fpm2/fpm2-0.79-r1.ebuild X-VCS-Directories: x11-misc/fpm2/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 3b52c8f3ced755d884bc3a6fa358d67ab81276b8 X-VCS-Branch: master Date: Sun, 19 Feb 2017 23:46:01 +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: ba8365e5-ad22-433f-9e14-67d785a13ae6 X-Archives-Hash: 65da1a72e55d251d25ca53b5d35771b7 commit: 3b52c8f3ced755d884bc3a6fa358d67ab81276b8 Author: Harri Nieminen gmail com> AuthorDate: Sun Feb 19 08:22:03 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Feb 19 23:43:35 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b52c8f3 x11-misc/fpm2: EAPI bump 4 -> 6 Package-Manager: Portage-2.3.3, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/4029 x11-misc/fpm2/fpm2-0.79-r1.ebuild | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/x11-misc/fpm2/fpm2-0.79-r1.ebuild b/x11-misc/fpm2/fpm2-0.79-r1.ebuild new file mode 100644 index 0000000000..5d437aa3dd --- /dev/null +++ b/x11-misc/fpm2/fpm2-0.79-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +DESCRIPTION="A GUI password manager utility with password generator" +HOMEPAGE="http://als.regnet.cz/fpm2/" +SRC_URI="http://als.regnet.cz/${PN}/download/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=x11-libs/gtk+-2.10.14:2 + dev-libs/libxml2 + >=dev-libs/glib-2.16 + x11-libs/libX11" + +DEPEND="${RDEPEND} + virtual/pkgconfig + dev-util/intltool" + +src_prepare() { + default + # fix tests + local x + for x in ${PN}.glade data/${PN}.desktop.in; do + echo "${x}" >> "${S}"/po/POTFILES.in || die + done +}