summaryrefslogtreecommitdiff
path: root/net-ftp/ftpbase
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2019-11-10 13:21:36 +0000
committerV3n3RiX <venerix@redcorelinux.org>2019-11-10 13:21:36 +0000
commit77398e424e45d9e98c1cef3c43bdadb9d56e81ef (patch)
tree5aeffd3fc7b92fc615bd2c222fa8831aeda1925b /net-ftp/ftpbase
parentbd4aeefe33e63f613512604e47bfca7b2187697d (diff)
gentoo resync : 10.11.2019
Diffstat (limited to 'net-ftp/ftpbase')
-rw-r--r--net-ftp/ftpbase/Manifest1
-rw-r--r--net-ftp/ftpbase/ftpbase-0.01-r2.ebuild55
2 files changed, 0 insertions, 56 deletions
diff --git a/net-ftp/ftpbase/Manifest b/net-ftp/ftpbase/Manifest
index ac25704a0732..08a05646b655 100644
--- a/net-ftp/ftpbase/Manifest
+++ b/net-ftp/ftpbase/Manifest
@@ -1,6 +1,5 @@
AUX ftp-pamd 700 BLAKE2B c867c659cac367c51021504dd4da0a9dc90609564613f580a0a01a94d2a87d0df903f22486561f23722901df4df06a33d7d7b643ffa4562cf426f2058391d887 SHA512 61aceee28610cb7a6989fca0ee82702df1118dd2e964bb26fe5cfcb508250599e9e1cdb9aa5dfb61df9c5fef25af4334a87d5f1f4065f693193912dfe172bb68
AUX ftp-pamd-include 632 BLAKE2B 28aa913499698f136e784e8ed420748fe1415d0ddeb64761b8ed71b869e4b9afb6b86df4b8a8a748ec3a740d99c000fcc4789ee45c3a302f81ffbaab07c7e106 SHA512 adc59c544b815bd88b7e91a43cb5620008d1f83d15a08620f56242d74991ba413e56b31bcca8e5fcfe71f05362bbad89b02d5289260f08649d38965c8951ec76
AUX ftpusers 300 BLAKE2B 02489b8eed29bfd4cea148b1b4214ac5ba798faa44da1be68cea06c18680e44f0054c952107810e4a199398b6ba382c649a481cf9d7388cd5caa10ace50e06d3 SHA512 29a8bdca1a6bb516c5189e6c69969cba3c220ea878e352e78bb6ea5cb2ac7476306736240155dc6d3f7512aac48164354db68721ea952d1010639e8ae14635e0
-EBUILD ftpbase-0.01-r2.ebuild 1446 BLAKE2B a0110890fbe381b7facd47dbef24eecc9d20077e8a162a57aa431f29fe8dde8ea77b9f3259f88b0188af541eb371f239d7b097303dbf14797738f3630af0cd84 SHA512 ce63497757547f916e94e6c42e7e174d30b1a6865011330fb77296d32917707bb3ac406de9e66bcb65186c3040b125db39239d2a1b7a1eb42263db191bc31044
EBUILD ftpbase-0.01-r3.ebuild 916 BLAKE2B ff3044d2c9411ab76df784d83081bb502ec4556e3b3649b4918ede39975744448db18d1dcf912b45b3f507d8509c7c7354ffdbefd3b30f451061236a513150c4 SHA512 8053ee744deb339d1bc4b93b6fe4ef19c0baf76a4a5edbf8393f7a379dac71481bf2119f64300b335818eaf49ae42c62df5ed623fc3b6db01f8a3d4129e78fad
MISC metadata.xml 235 BLAKE2B da947ee7650abf01b4eee1667349a14d2d8d496ec234acd60db66c1059d42d6e9a1d30403068b7977a397f4e0a2934fe4e7c2c04d356b2c23a5e8a87ac7266a1 SHA512 fa78af8197737bd5d9b44305bac24dacac9034fd96284af1e3c89428fc418e17a4bea91fa53f07dce02e6ab8afe6455343db364d031ab342225a26d0364c23da
diff --git a/net-ftp/ftpbase/ftpbase-0.01-r2.ebuild b/net-ftp/ftpbase/ftpbase-0.01-r2.ebuild
deleted file mode 100644
index 370bb9c1a29a..000000000000
--- a/net-ftp/ftpbase/ftpbase-0.01-r2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils pam user
-
-DESCRIPTION="FTP layout package"
-HOMEPAGE="https://www.gentoo.org/"
-SRC_URI=""
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86"
-IUSE="pam"
-
-DEPEND="pam? ( sys-libs/pam )
- !<net-ftp/proftpd-1.2.10-r6
- !<net-ftp/pure-ftpd-1.0.20-r2
- !<net-ftp/vsftpd-2.0.3-r1"
-
-S=${WORKDIR}
-
-pkg_setup() {
- # Check if home exists
- local exists=false
- [[ -d "${ROOT}home/ftp" ]] && exists=true
-
- # Add our default ftp user
- enewgroup ftp 21
- enewuser ftp 21 -1 /home/ftp ftp
-
- # If home did not exist and does now then we created it in the enewuser
- # command. Now we have to change it's permissions to something sane.
- if [[ ${exists} == "false" && -d "${ROOT}home/ftp" ]] ; then
- chown root:ftp "${ROOT}"home/ftp
- fi
-}
-
-src_install() {
- # The ftpusers file is a list of people who are NOT allowed
- # to use the ftp service.
- insinto /etc
- doins "${FILESDIR}/ftpusers" || die
-
- # Ideally we would create the home directory here with a dodir.
- # But we cannot until bug #9849 is solved - so we kludge in pkg_postinst()
-
- cp "${FILESDIR}/ftp-pamd-include" "${T}" || die
- if use elibc_FreeBSD; then
- sed -i -e "/pam_listfile.so/s/^.*$/account required pam_ftpusers.so no_warn disallow/" \
- "${T}"/ftp-pamd-include || die
- fi
- newpamd "${T}"/ftp-pamd-include ftp
-}