diff options
Diffstat (limited to 'net-ftp/frox')
-rw-r--r-- | net-ftp/frox/Manifest | 1 | ||||
-rw-r--r-- | net-ftp/frox/frox-0.7.18-r8.ebuild | 89 |
2 files changed, 0 insertions, 90 deletions
diff --git a/net-ftp/frox/Manifest b/net-ftp/frox/Manifest index 49ce5f5a9639..d3fba74cd1dc 100644 --- a/net-ftp/frox/Manifest +++ b/net-ftp/frox/Manifest @@ -4,6 +4,5 @@ AUX frox-0.7.18-config.patch 1960 BLAKE2B a6ca1b8bd15f39a3dc5b3b10cb4a578447ce30 AUX frox-0.7.18-no-common.patch 1644 BLAKE2B a84e686a1bffa8d8adb92bbc030b1fa61df6dd978f84490f48e102e9fcc3efbd77b3cbf09071ca7c1dcf15bb20cd149c576680d7705beb4c8814bc15e8afbc44 SHA512 99c2157206f1cf14bb5bef5b2fef656c4322077363d531c2798091d871e1931a81df8dd5a21f9b57ecba22c5379ad72ddf36c10d78e9efcdfee7e1e29fbf6108 AUX frox.initd 873 BLAKE2B 1f4182a11bd42d091b9d6cbba4b2115327766787f329c6c113e43070f8fc6a8867017bdf009a2c97a94b16e958888384dc604dfc06ecf5df0cc711f212b11d76 SHA512 26bc18f28cf46184b0c387196958f9236ec0cd70fe43ac8b18de66e69c42d73087ed5063f3ecc1b1d5c0880b2047293403e4cfbb15f5a23ca5d6fc521021f364 DIST frox-0.7.18.tar.bz2 173355 BLAKE2B 70e51ef14fd16dfeb8c2b8c42acf32b4fc8456622f6258aca7faee49e59ccd4e3cb563620a50a4cb877401d9154311dd2f88e76a94c48974bf9b77ad558a6d9f SHA512 bdffe4b70c91b920378a422dcf386088c3bb34f26e10de8ff57f487ccef6356803c93057eee2b3801a79120a6b2e1618a51dde5bc8c42e13211abf4182c4ff8c -EBUILD frox-0.7.18-r8.ebuild 1899 BLAKE2B 69b44a1a481786424b4da09b3c31c450eaf24a7ab4a00c064d5a676606187494d5e5fffa27de48326ca25ad23401f35864df879ec4824715d9030dc8ea5d0551 SHA512 150792890883cefe7c5ee7c0e4a5bb3ab214b35b08cd728151697261da68c225250cbe27345cae160da47b6a42570998ea94398070f5ed71f4ac1f7eb3eb203e EBUILD frox-0.7.18-r9.ebuild 1959 BLAKE2B 7bb43ab4bac5a7b319317f6eb68a2e34c96d8806efb2b78081404c9571244303e7d544af76a28ffc892c8c99cb5d40d022d02f10088a2bcdf459bde5eb04c3e4 SHA512 d6df6e5eaa91b078d93271b890feb0a74617fdde0b7c09138fc8a75dd59a6bd6d60b312500392461a32211d1c7746592064573700901eccc137bc2cc637e95ea MISC metadata.xml 623 BLAKE2B ebe352b066faf827000496491e2570a28b62f5ae484f780c912fe18a8447b277fae392c19eaa97e7014bf01bd1500d8c4cc37968536c550c645953e821f0818b SHA512 27db1dfd65ecef394d8b5b9d289b0063b37b28a365380c34ba60188385e93ae8eb7387dfdc07df2a36666d08bcf8499a05d7c47b1f7208d6c3be478255b590bb diff --git a/net-ftp/frox/frox-0.7.18-r8.ebuild b/net-ftp/frox/frox-0.7.18-r8.ebuild deleted file mode 100644 index f6b1a1a13c43..000000000000 --- a/net-ftp/frox/frox-0.7.18-r8.ebuild +++ /dev/null @@ -1,89 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="A transparent ftp proxy" -SRC_URI="http://frox.sourceforge.net/download/${P}.tar.bz2" -HOMEPAGE="http://frox.sourceforge.net/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="clamav ssl transparent" - -DEPEND=" - acct-group/ftpproxy - acct-user/ftpproxy - clamav? ( >=app-antivirus/clamav-0.80 ) - kernel_linux? ( >=sys-kernel/linux-headers-2.6 ) - ssl? ( - dev-libs/openssl:0= - ) -" - -RDEPEND="${DEPEND}" - -# INSTALL has useful filewall rules -DOCS=( - BUGS README - doc/CREDITS doc/ChangeLog doc/FAQ doc/INSTALL - doc/INTERNALS doc/README.transdata doc/RELEASE - doc/SECURITY doc/TODO -) - -pkg_setup() { - use clamav && ewarn "Virus scanner potentialy broken in chroot - see bug #81035" -} - -src_prepare() { - HTML_DOCS=( doc/*.html doc/*.sgml ) - - default - - eapply "${FILESDIR}/${PV}-respect-CFLAGS.patch" - eapply "${FILESDIR}/${PV}-netfilter-includes.patch" - eapply "${FILESDIR}/${P}-config.patch" - eapply "${FILESDIR}/${P}-no-common.patch" - - if use clamav ; then - sed -e "s:^# VirusScanner.*:# VirusScanner '\"/usr/bin/clamscan\" \"%s\"':" \ - -i "src/${PN}.conf" || die - fi - - mv configure.in configure.ac || die - eautoreconf -} - -src_configure() { - local myeconfargs=( - --enable-http-cache --enable-local-cache - --enable-procname - --enable-configfile=/etc/frox.conf - $(use_enable !kernel_linux libiptc) - $(use_enable clamav virus-scan) - $(use_enable ssl) - $(use_enable transparent transparent-data) - $(use_enable !transparent ntp) - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - - keepdir /var/log/"${PN}" - - fowners ftpproxy:ftpproxy /var/log/frox - - newman "doc/${PN}.man" "${PN}.man.8" - newman "doc/${PN}.conf.man" "${PN}.conf.man.5" - - newinitd "${FILESDIR}/${PN}.initd" "${PN}" - - insinto /etc - newins "src/${PN}.conf" "${PN}.conf.example" -} |