summaryrefslogtreecommitdiff
path: root/net-mail/tpop3d
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-09-16 09:32:48 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-09-16 09:32:48 +0100
commit9ee6d97c2883d42f204a533a8bc1f4562df778fb (patch)
treeb690ddc0ca30f1472887edbb0b8313629bfcbbb2 /net-mail/tpop3d
parentb17a3ef12038de50228bade1f05502c74e135321 (diff)
gentoo resync : 16.09.2020
Diffstat (limited to 'net-mail/tpop3d')
-rw-r--r--net-mail/tpop3d/Manifest1
-rw-r--r--net-mail/tpop3d/tpop3d-1.5.5.ebuild92
2 files changed, 0 insertions, 93 deletions
diff --git a/net-mail/tpop3d/Manifest b/net-mail/tpop3d/Manifest
index 607646b2b34d..740e2418d71e 100644
--- a/net-mail/tpop3d/Manifest
+++ b/net-mail/tpop3d/Manifest
@@ -2,5 +2,4 @@ AUX tpop3d-1.5.4-gold.patch 730 BLAKE2B e3f30e0aae7ca80c3834dbe63216bff73de20981
AUX tpop3d-1.5.4.init 607 BLAKE2B 8cc947bb35566f09236a5a6c06f6b1b8938d51f9dfe0ef3230507a5a6885bdee8eac11a3e90cdee52b24219cade824c45b15e5777a154a28b78167eaef6decce SHA512 004d2e5ca802ad7681c3f6392728602f54c13c6072d38b147be469e5f9ef09916f7c6c57af944c845e4b504f46fe4893323d5a125b7dc4bdfc2d479a5ee696e9
DIST tpop3d-1.5.5.tar.gz 285027 BLAKE2B e8cc76040757a5c8931ee34b27a57c52889f3533b71a53c7a2fe589823129ce5972f2ddfa9ecdb46d7a04ac77e8d735c02b07cf7e8192135e4ebea6c392b38ab SHA512 918a057c62d7518613daa6335d8fd5a2553d278dc4d6adbcf5ba3caa3ba561587f1d9e18f564690383e91f3ee2e5120af919d2799b69e93bfe3a3b8ea4f5d7e6
EBUILD tpop3d-1.5.5-r1.ebuild 2903 BLAKE2B cbbaca6d70dfaa5901a5816b3b1df861e0351aae6d4162936c3ddede25f5c846e50685c2f4e806851ed3c2d8ec3623898d70e6a224ee462a49063b80ae9acbe0 SHA512 3d7eae7439692f4b8f39aa335787bd6fd078e4e898a5053a86edf018e6286fd532fbd2c75358a4776dd1b2d7217fcba5e74e212f62a02b86d859a4c38df67f46
-EBUILD tpop3d-1.5.5.ebuild 2853 BLAKE2B 32a4478cf782de6f24548c56bdb089f7ea5db555b94042223d88b7b10d169022118b7b262f75fa23950782d721c4ce57f4c695ede9812e97b573e88e1fc03e20 SHA512 1424ce654a8b0b3bf8fc38857bcb8488be370473260d64d5ac0a224cab153be7d033b8c55c8525af02600a322e6fb13504101127a8a93fd1cc267e88ef05a6a2
MISC metadata.xml 560 BLAKE2B f0fabe58e865bfe72fc237eca7cba05badd40682b5a03e420a00c96460106743c10d700082522f379828be1000fd1302863ad7f975ace5786c8f312fb5c6053c SHA512 892cc588c2be8dce623ed1844a7680339ce36fdee74e16b99436925b2defec116b164926f3a000db186ca25a079f90352d73795561a6c361e0c65c8c22c92eaf
diff --git a/net-mail/tpop3d/tpop3d-1.5.5.ebuild b/net-mail/tpop3d/tpop3d-1.5.5.ebuild
deleted file mode 100644
index 5f58acad3914..000000000000
--- a/net-mail/tpop3d/tpop3d-1.5.5.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils flag-o-matic autotools
-
-DESCRIPTION="An extensible POP3 server with vmail-sql/MySQL support"
-HOMEPAGE="https://savannah.nongnu.org/projects/tpop3d/"
-SRC_URI="mirror://nongnu/tpop3d/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 x86"
-IUSE="authexternal debug flatfile gdbm ldap maildir mbox mysql offensive
- pam passwd perl postgres +sha1 shadow ssl tcpd"
-
-RDEPEND="sha1? ( >=dev-libs/openssl-0.9.6 )
- ssl? ( >=dev-libs/openssl-0.9.6 )
- ldap? ( >=net-nds/openldap-2.0.7 )
- mysql? ( virtual/mysql )
- postgres? ( dev-db/postgresql[server] )
- perl? ( >=dev-lang/perl-5.6.1 )
- pam? ( sys-libs/pam
- >=net-mail/mailbase-0.00-r8 )
- tcpd? ( >=sys-apps/tcp-wrappers-7.6 )"
-
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-1.5.4-gold.patch"
- eautoreconf
-}
-
-src_configure() {
- local myconf=""
- local noauth=0
-
- # Various authentication methods
- use authexternal && myconf="${myconf} --enable-auth-other"
- use flatfile && myconf="${myconf} --enable-auth-flatfile"
- use gdbm && myconf="${myconf} --enable-auth-gdbm"
- use ldap && myconf="${myconf} --enable-auth-ldap"
- use mysql && myconf="${myconf} --enable-auth-mysql"
- use pam || myconf="${myconf} --disable-auth-pam"
- use passwd && myconf="${myconf} --enable-auth-passwd"
- use perl && myconf="${myconf} --enable-auth-perl"
- use postgres && myconf="${myconf} --enable-auth-pgsql"
- use shadow && myconf="${myconf} --enable-auth-passwd --enable-shadow-passwords"
-
- use authexternal || use flatfile || use gdbm || use ldap || use mysql ||
- use pam || use passwd || use perl || use postgres || use shadow ||
- noauth=1
-
- if [[ ${noauth} -eq 1 ]]; then
- ewarn "None of tpop3d's authentication mechanism USE flags are set."
- ewarn "As a result tpop3d will be built with /etc/passwd authentication only."
- myconf="${myconf} --enable-auth-passwd"
- fi
-
- # Other optional features
- use debug && myconf="${myconf} --enable-backtrace"
- use maildir && myconf="${myconf} --enable-mbox-maildir"
- use mbox || myconf="${myconf} --disable-mbox-bsd"
- use offensive || myconf="${myconf} --disable-snide-comments"
- use sha1 || myconf="${myconf} --disable-sha1-passwords"
- use ssl && myconf="${myconf} --enable-tls"
- use tcpd && myconf="${myconf} --enable-tcp-wrappers"
-
- econf ${myconf}
-
- # Causes crash with "stack smashing attack" on connect, because of bug in
- # SSP (bug #115285)
- filter-flags -fstack-protector
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodir /etc/tpop3d
-
- if use pam ; then
- dodir /etc/pam.d
- dosym /etc/pam.d/pop3 /etc/pam.d/tpop3d
- fi
-
- newinitd "${FILESDIR}/${PN}-1.5.4.init" tpop3d
-}
-
-pkg_postinst() {
- elog "Read the tpop3d.conf manpage"
- elog "Please create /etc/tpop3d/tpop3d.conf to fit your configuration"
-}