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 DAFA013933E for ; Wed, 30 Jun 2021 18:40:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 27EECE084A; Wed, 30 Jun 2021 18:40:49 +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 0B3B5E084A for ; Wed, 30 Jun 2021 18:40:49 +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 B0D9433DF47 for ; Wed, 30 Jun 2021 18:40:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CCBFE7CB for ; Wed, 30 Jun 2021 18:40:44 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1625078387.e889ba852241d0e05e677a3ec69228c84abc1e92.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/gproftpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-ftp/gproftpd/gproftpd-8.3.2-r2.ebuild net-ftp/gproftpd/gproftpd-8.3.2-r3.ebuild X-VCS-Directories: net-ftp/gproftpd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e889ba852241d0e05e677a3ec69228c84abc1e92 X-VCS-Branch: master Date: Wed, 30 Jun 2021 18:40:44 +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: f73bcde5-6e6d-4ca9-862e-ffa8e91b9def X-Archives-Hash: 30fd8fd13c6a96990c65d2b34d5b3870 commit: e889ba852241d0e05e677a3ec69228c84abc1e92 Author: Sam James gentoo org> AuthorDate: Wed Jun 30 18:39:47 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Jun 30 18:39:47 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e889ba85 net-ftp/gproftpd: add missing libcrypt dependency Signed-off-by: Sam James gentoo.org> .../{gproftpd-8.3.2-r2.ebuild => gproftpd-8.3.2-r3.ebuild} | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/net-ftp/gproftpd/gproftpd-8.3.2-r2.ebuild b/net-ftp/gproftpd/gproftpd-8.3.2-r3.ebuild similarity index 91% rename from net-ftp/gproftpd/gproftpd-8.3.2-r2.ebuild rename to net-ftp/gproftpd/gproftpd-8.3.2-r3.ebuild index ad2fc0d7dc3..5c4a7511682 100644 --- a/net-ftp/gproftpd/gproftpd-8.3.2-r2.ebuild +++ b/net-ftp/gproftpd/gproftpd-8.3.2-r3.ebuild @@ -1,21 +1,24 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 + inherit autotools DESCRIPTION="GTK frontend to proftpd" HOMEPAGE="https://mange.dynalias.org/linux/gproftpd" SRC_URI="http://mange.dynup.net/linux/gproftpd/${P}.tar.gz" + LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc sparc x86" SLOT="0" +KEYWORDS="amd64 ~ppc sparc x86" RDEPEND=" >=dev-libs/atk-1.0 >=media-libs/freetype-2.0 >=x11-libs/pango-1.0 dev-libs/glib:2 + virtual/libcrypt:= virtual/libiconv x11-libs/gtk+:2 " @@ -35,6 +38,9 @@ DOCS="AUTHORS ChangeLog README" src_prepare() { default + + mv configure.{in,ac} || die + eautoreconf }