Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-ftp/gproftpd/
Date: Sun, 29 Nov 2020 09:56:36
Message-Id: 1606643742.e923b7647aba26628d41c30818b037b7f4e23af8.soap@gentoo
1 commit: e923b7647aba26628d41c30818b037b7f4e23af8
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 29 09:55:42 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 29 09:55:42 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e923b764
7
8 net-ftp/gproftpd: Remove old
9
10 Package-Manager: Portage-3.0.10, Repoman-3.0.2
11 Signed-off-by: David Seifert <soap <AT> gentoo.org>
12
13 net-ftp/gproftpd/gproftpd-8.3.2-r1.ebuild | 63 -------------------------------
14 1 file changed, 63 deletions(-)
15
16 diff --git a/net-ftp/gproftpd/gproftpd-8.3.2-r1.ebuild b/net-ftp/gproftpd/gproftpd-8.3.2-r1.ebuild
17 deleted file mode 100644
18 index a67b5076d1b..00000000000
19 --- a/net-ftp/gproftpd/gproftpd-8.3.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,63 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -DESCRIPTION="GTK frontend to proftpd"
28 -HOMEPAGE="http://mange.dynup.net/linux.html"
29 -SRC_URI="http://mange.dynup.net/linux/gproftpd/${P}.tar.gz"
30 -LICENSE="GPL-2"
31 -KEYWORDS="amd64 ~ppc sparc x86"
32 -SLOT="0"
33 -
34 -IUSE="gnome ssl"
35 -
36 -# Requiring ProFTPD 1.2.9 due to security fixes
37 -RDEPEND="x11-libs/gtk+:2
38 - dev-libs/glib:2
39 - >=x11-libs/pango-1.0
40 - >=dev-libs/atk-1.0
41 - >=media-libs/freetype-2.0
42 - ssl? ( >=dev-libs/openssl-0.9.6f )
43 - >=net-ftp/proftpd-1.2.9"
44 -DEPEND="${RDEPEND}
45 - virtual/pkgconfig"
46 -
47 -src_configure() {
48 - local modules includes myconf
49 -
50 - #location of proftpd.conf
51 - myconf="/etc/proftpd"
52 -
53 - if use ssl; then
54 - # enable mod_tls
55 - modules="${modules}:mod_tls"
56 - includes="${include}:/usr/kerberos/include"
57 - fi
58 -
59 - econf --sysconfdir=${myconf} \
60 - --localstatedir=/var \
61 - --with-modules=${modules} \
62 - --with-includes=${includes}
63 -}
64 -
65 -src_install() {
66 - emake DESTDIR="${D}" install
67 -
68 -# Add the Gnome menu entry
69 - if use gnome; then
70 - insinto /usr/share/gnome/apps/Internet/
71 - doins "${S}"/desktop/net-gproftpd.desktop
72 - fi
73 -
74 - dodoc AUTHORS ChangeLog README
75 -
76 - rm -r "${D}/usr/share/doc/gproftpd" || die
77 -}
78 -
79 -pkg_postinst() {
80 - elog "gproftpd looks for your proftpd.conf file in /etc/proftpd"
81 - elog "run gproftpd with the option -c to specify an alternate location"
82 - elog "ex: gproftpd -c /etc/proftpd.conf"
83 - elog "Do NOT edit /etc/conf.d/proftpd with this program"
84 -}