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 8EC671382C5 for ; Sun, 29 Nov 2020 09:56:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7E1BE0891; Sun, 29 Nov 2020 09:56:13 +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 9F01EE0891 for ; Sun, 29 Nov 2020 09:56:13 +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 38CA4340E7E for ; Sun, 29 Nov 2020 09:56:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BF4B47B for ; Sun, 29 Nov 2020 09:56:09 +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: <1606643742.e923b7647aba26628d41c30818b037b7f4e23af8.soap@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-r1.ebuild X-VCS-Directories: net-ftp/gproftpd/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: e923b7647aba26628d41c30818b037b7f4e23af8 X-VCS-Branch: master Date: Sun, 29 Nov 2020 09:56:09 +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: 103324dc-a2c5-435f-b436-1fd9f233dd4e X-Archives-Hash: 5db48655ee201d584b34e5edd4642329 commit: e923b7647aba26628d41c30818b037b7f4e23af8 Author: David Seifert gentoo org> AuthorDate: Sun Nov 29 09:55:42 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Nov 29 09:55:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e923b764 net-ftp/gproftpd: Remove old Package-Manager: Portage-3.0.10, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> net-ftp/gproftpd/gproftpd-8.3.2-r1.ebuild | 63 ------------------------------- 1 file changed, 63 deletions(-) diff --git a/net-ftp/gproftpd/gproftpd-8.3.2-r1.ebuild b/net-ftp/gproftpd/gproftpd-8.3.2-r1.ebuild deleted file mode 100644 index a67b5076d1b..00000000000 --- a/net-ftp/gproftpd/gproftpd-8.3.2-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="GTK frontend to proftpd" -HOMEPAGE="http://mange.dynup.net/linux.html" -SRC_URI="http://mange.dynup.net/linux/gproftpd/${P}.tar.gz" -LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc sparc x86" -SLOT="0" - -IUSE="gnome ssl" - -# Requiring ProFTPD 1.2.9 due to security fixes -RDEPEND="x11-libs/gtk+:2 - dev-libs/glib:2 - >=x11-libs/pango-1.0 - >=dev-libs/atk-1.0 - >=media-libs/freetype-2.0 - ssl? ( >=dev-libs/openssl-0.9.6f ) - >=net-ftp/proftpd-1.2.9" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_configure() { - local modules includes myconf - - #location of proftpd.conf - myconf="/etc/proftpd" - - if use ssl; then - # enable mod_tls - modules="${modules}:mod_tls" - includes="${include}:/usr/kerberos/include" - fi - - econf --sysconfdir=${myconf} \ - --localstatedir=/var \ - --with-modules=${modules} \ - --with-includes=${includes} -} - -src_install() { - emake DESTDIR="${D}" install - -# Add the Gnome menu entry - if use gnome; then - insinto /usr/share/gnome/apps/Internet/ - doins "${S}"/desktop/net-gproftpd.desktop - fi - - dodoc AUTHORS ChangeLog README - - rm -r "${D}/usr/share/doc/gproftpd" || die -} - -pkg_postinst() { - elog "gproftpd looks for your proftpd.conf file in /etc/proftpd" - elog "run gproftpd with the option -c to specify an alternate location" - elog "ex: gproftpd -c /etc/proftpd.conf" - elog "Do NOT edit /etc/conf.d/proftpd with this program" -}