diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-06-21 20:32:24 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-06-21 20:32:24 +0300 |
commit | 720c9555a5f09af5a266a957ab69e8d1c1f470fb (patch) | |
tree | 66619d4173f42b6a4f158992b0599bb73d8380e7 /net-mail | |
parent | profiles: last-rite last EAPI=6 dev-php/* (diff) | |
download | gentoo-720c9555a5f09af5a266a957ab69e8d1c1f470fb.tar.gz gentoo-720c9555a5f09af5a266a957ab69e8d1c1f470fb.tar.bz2 gentoo-720c9555a5f09af5a266a957ab69e8d1c1f470fb.zip |
net-mail/safecat: drop 1.13
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/safecat/safecat-1.13.ebuild | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/net-mail/safecat/safecat-1.13.ebuild b/net-mail/safecat/safecat-1.13.ebuild deleted file mode 100644 index f8fa413f269e..000000000000 --- a/net-mail/safecat/safecat-1.13.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs - -DESCRIPTION="Safecat implements qmail's maildir algorithm, safely copying standard input" -HOMEPAGE="http://www.jeenyus.net/linux/software/safecat.html" -SRC_URI="http://www.jeenyus.net/linux/software/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~hppa ~mips ppc ~sparc x86" -RESTRICT="test" - -DEPEND="sys-apps/groff" - -PATCHES=( - # applying maildir-patch - "${FILESDIR}"/safecat-1.11-gentoo.patch - # Fix parallel make errors - "${FILESDIR}"/${P}-makefile.patch - # Fix POSIX head/tail syntax - "${FILESDIR}"/${P}-head-tail-POSIX.patch -) - -src_prepare() { - default - - sed -ni '/man\|doc/!p' hier.c || die - - # Fix implicit decleration - sed '/include <signal.h>/ a #include <stdlib.h>' -i safecat.c || die -} - -src_configure() { - echo "/usr" > conf-root || die - echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die -} - -src_install() { - echo "${D}/usr" > conf-root || die - emake setup check - einstalldocs - doman maildir.1 safecat.1 -} |