summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2017-07-14 13:11:14 +0200
committerPacho Ramos <pacho@gentoo.org>2017-07-14 13:11:14 +0200
commit18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5 (patch)
tree8e471f785bcc3b4f8397761c5d0fe49f25a6e719 /net-mail
parentRemove hardmasked packages (diff)
downloadgentoo-18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5.tar.gz
gentoo-18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5.tar.bz2
gentoo-18dc6a2a1f1bef9bd29500c5ac672cc34c464dc5.zip
Remove hardmasked packages
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/cyrus-imap-admin/Manifest2
-rw-r--r--net-mail/cyrus-imap-admin/cyrus-imap-admin-2.4.17-r1.ebuild72
-rw-r--r--net-mail/cyrus-imap-admin/cyrus-imap-admin-2.4.18.ebuild74
-rw-r--r--net-mail/cyrus-imap-admin/files/cyrus-imap-admin-2.4.10-ldflags.patch56
-rw-r--r--net-mail/cyrus-imap-admin/metadata.xml8
5 files changed, 0 insertions, 212 deletions
diff --git a/net-mail/cyrus-imap-admin/Manifest b/net-mail/cyrus-imap-admin/Manifest
deleted file mode 100644
index a9dbe57bc583..000000000000
--- a/net-mail/cyrus-imap-admin/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST cyrus-imapd-2.4.17.tar.gz 2486355 SHA256 b3e30052c764ee7163947ffde27bdd58bd4dd2e5697ad144491941e46300a583 SHA512 86ffe1664ca3c3df164ed8fca21cc08ddae12380e1485deccec7da4ec263d8b953a806e05f0b10f6fb7717a0d40fc05669792b77cc66d7c5067061c8506e59ee WHIRLPOOL 22566578217a5901793b886ff020aa1deecbb81bf85f54a524b58de129029e51b0aa358db902a2139584d05f668404cb98ca2ff3fa33803ce986e07b95c69c45
-DIST cyrus-imapd-2.4.18.tar.gz 2495098 SHA256 166a0a1efbf01f71d9d8449569152b3cda4949cd689f299a5e77a38d7026012c SHA512 3b234c1773fe5d57cae35743985930bc7fed2eedaa0919598da8fb19588f95b3beb8ad166d3b4f0c96faf006ff56ed5027ec516fab6007edbe46c4f45572a1ef WHIRLPOOL 1a243a9b3875105dfc414e1092f328691b6bef7c0d04f8bd91824ca0d01c715ebc2449c37bbca2ab86193e4d2dc426b33cfd31a0cdfdea0bacc081fd9010b1df
diff --git a/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.4.17-r1.ebuild b/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.4.17-r1.ebuild
deleted file mode 100644
index d91bfe890a4b..000000000000
--- a/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.4.17-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools db-use eutils perl-app toolchain-funcs
-
-MY_PV=${PV/_/}
-
-DESCRIPTION="Utilities and Perl modules to administer a Cyrus IMAP server"
-HOMEPAGE="http://www.cyrusimap.org/"
-SRC_URI="ftp://ftp.cyrusimap.org/cyrus-imapd/cyrus-imapd-${MY_PV}.tar.gz"
-
-LICENSE="BSD-with-attribution"
-SLOT="0"
-KEYWORDS="amd64 ~arm hppa ppc ppc64 sparc x86"
-IUSE="berkdb kerberos ssl"
-
-RDEPEND=">=dev-lang/perl-5.6.1
- >=dev-libs/cyrus-sasl-2.1.13
- dev-perl/Term-ReadLine-Perl
- dev-perl/TermReadKey
- berkdb? ( >=sys-libs/db-3.2 )
- ssl? ( >=dev-libs/openssl-0.9.6 )
- kerberos? ( virtual/krb5 )"
-
-DEPEND="$RDEPEND"
-
-S="${WORKDIR}/cyrus-imapd-${MY_PV}"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-2.4.10-ldflags.patch"
- sed -i -e "s/ar cr/$(tc-getAR) cr/" \
- perl/sieve/lib/Makefile.in \
- imap/Makefile.in \
- lib/Makefile.in \
- installsieve/Makefile.in \
- com_err/et/Makefile.in \
- sieve/Makefile.in \
- syslog/Makefile.in
- AT_M4DIR="cmulocal" eautoreconf
-}
-
-src_configure() {
- local myconf
- if use berkdb ; then
- myconf="--with-bdb-incdir=$(db_includedir)"
- fi
- econf \
- --disable-server \
- --enable-murder \
- --enable-netscapehack \
- --with-cyrus-group=mail \
- --with-com_err=yes \
- --with-perl=/usr/bin/perl \
- --without-krb \
- --without-krbdes \
- $(use_with berkdb bdb) \
- $(use_enable kerberos gssapi) \
- $(use_with ssl openssl) \
- ${myconf}
-}
-
-src_compile() {
- emake -C "${S}/lib" all
- emake -C "${S}/perl" all
-}
-
-src_install () {
- emake -C "${S}/perl" DESTDIR="${D}" INSTALLDIRS=vendor install
- perl_delete_localpod # bug #98122
-}
diff --git a/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.4.18.ebuild b/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.4.18.ebuild
deleted file mode 100644
index 81c15a3a95ea..000000000000
--- a/net-mail/cyrus-imap-admin/cyrus-imap-admin-2.4.18.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit autotools db-use eutils perl-app toolchain-funcs
-
-MY_PV=${PV/_/}
-
-DESCRIPTION="Utilities and Perl modules to administer a Cyrus IMAP server"
-HOMEPAGE="http://www.cyrusimap.org/"
-SRC_URI="ftp://ftp.cyrusimap.org/cyrus-imapd/cyrus-imapd-${MY_PV}.tar.gz"
-
-LICENSE="BSD-with-attribution"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="berkdb kerberos libressl ssl"
-
-RDEPEND=">=dev-lang/perl-5.6.1
- >=dev-libs/cyrus-sasl-2.1.13
- dev-perl/Term-ReadLine-Perl
- dev-perl/TermReadKey
- berkdb? ( >=sys-libs/db-3.2:* )
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
- kerberos? ( virtual/krb5 )"
-
-DEPEND="$RDEPEND"
-
-S="${WORKDIR}/cyrus-imapd-${MY_PV}"
-
-src_prepare() {
- epatch "${FILESDIR}/${PN}-2.4.10-ldflags.patch"
- sed -i -e "s/ar cr/$(tc-getAR) cr/" \
- perl/sieve/lib/Makefile.in \
- imap/Makefile.in \
- lib/Makefile.in \
- installsieve/Makefile.in \
- com_err/et/Makefile.in \
- sieve/Makefile.in \
- syslog/Makefile.in
- AT_M4DIR="cmulocal" eautoreconf
-}
-
-src_configure() {
- local myconf
- if use berkdb ; then
- myconf="--with-bdb-incdir=$(db_includedir)"
- fi
- econf \
- --disable-server \
- --enable-murder \
- --enable-netscapehack \
- --with-cyrus-group=mail \
- --with-com_err=yes \
- --with-perl=/usr/bin/perl \
- --without-krb \
- --without-krbdes \
- $(use_with berkdb bdb) \
- $(use_enable kerberos gssapi) \
- $(use_with ssl openssl) \
- ${myconf}
-}
-
-src_compile() {
- emake -C "${S}/lib" all
- emake -C "${S}/perl" all
-}
-
-src_install () {
- emake -C "${S}/perl" DESTDIR="${D}" INSTALLDIRS=vendor install
- perl_delete_localpod # bug #98122
-}
diff --git a/net-mail/cyrus-imap-admin/files/cyrus-imap-admin-2.4.10-ldflags.patch b/net-mail/cyrus-imap-admin/files/cyrus-imap-admin-2.4.10-ldflags.patch
deleted file mode 100644
index a05941408250..000000000000
--- a/net-mail/cyrus-imap-admin/files/cyrus-imap-admin-2.4.10-ldflags.patch
+++ /dev/null
@@ -1,56 +0,0 @@
---- perl/Makefile.in 2011-06-21 22:50:39.000000000 +0300
-+++ perl/Makefile.in 2011-06-22 12:42:04.000000000 +0300
-@@ -74,6 +74,7 @@
- cyrus_prefix = @cyrus_prefix@
-
- CC = @CC@
-+LDFLAGS = @LDFLAGS@
- PLMAKE = imap/Makefile
-
- all::
-@@ -83,6 +84,7 @@
- if [ -f Makefile.PL -a ! -f Makefile ]; then \
- LIB_RT="$(LIB_RT)" \
- ZLIB="$(ZLIB)" \
-+ LDDLFLAGS="-shared $(LDFLAGS)" \
- BDB_LIB="$(BDB_LIB)" BDB_INC="$(BDB_INC)" \
- OPENSSL_LIB="$(OPENSSL_LIB)" OPENSSL_INC="$(OPENSSL_INC)" \
- SASL_LIB="$(SASL_LIB)" SASL_INC="$(SASL_INC)" CC="$(CC)" \
---- perl/imap/Makefile.PL 2011-06-21 22:50:39.000000000 +0300
-+++ perl/imap/Makefile.PL 2011-06-22 12:42:22.000000000 +0300
-@@ -53,6 +53,8 @@
- my $LIB_RT = $ENV{LIB_RT};
- my $ZLIB = $ENV{ZLIB};
-
-+my $LDDLFLAGS = $ENV{LDDLFLAGS};
-+
- # See lib/ExtUtils/MakeMaker.pm for details of how to influence
- # the contents of the Makefile that is written.
- $libs = "-lcyrus";
-@@ -75,6 +77,7 @@
- 'OBJECT' => 'IMAP.o',
- 'MYEXTLIB' => '../../lib/libcyrus.a ../../lib/libcyrus_min.a',
- 'LIBS' => ["$BDB_LIB $SASL_LIB $OPENSSL_LIB $LIB_RT $ZLIB -lssl -lcrypto"],
-+ 'LDDLFLAGS' => "$LDDLFLAGS",
- 'DEFINE' => '-DPERL_POLLUTE', # e.g., '-DHAVE_SOMETHING'
- 'INC' => "-I../../lib -I../.. -I../../com_err/et $SASL_INC $OPENSSL_INC",
- 'EXE_FILES' => [cyradm],
---- perl/sieve/managesieve/Makefile.PL 2011-06-21 22:50:39.000000000 +0300
-+++ perl/sieve/managesieve/Makefile.PL 2011-06-22 13:13:04.000000000 +0300
-@@ -53,6 +53,8 @@
- my $LIB_RT = $ENV{LIB_RT};
- my $ZLIB = $ENV{ZLIB};
-
-+my $LDDLFLAGS = $ENV{LDFLAGS};
-+
- $libs = "-lcyrus";
-
- # See lib/ExtUtils/MakeMaker.pm for details of how to influence
-@@ -63,6 +65,7 @@
- 'VERSION_FROM' => 'managesieve.pm', # finds $VERSION
- 'MYEXTLIB' => '../lib/isieve.o ../lib/lex.o ../lib/mystring.o ../lib/request.o ../../../lib/libcyrus.a ../../../lib/libcyrus_min.a',
- 'LIBS' => ["$BDB_LIB $SASL_LIB $OPENSSL_LIB $LIB_RT $ZLIB -lssl -lcrypto"],
-+ 'LDDLFLAGS' => "-shared $LDDLFLAGS",
- 'DEFINE' => '-DPERL_POLLUTE', # e.g., '-DHAVE_SOMETHING'
- 'INC' => "-I../lib/ -I../../../lib/ $SASL_INC $OPENSSL_INC",
- );
diff --git a/net-mail/cyrus-imap-admin/metadata.xml b/net-mail/cyrus-imap-admin/metadata.xml
deleted file mode 100644
index 9a6d80e5da48..000000000000
--- a/net-mail/cyrus-imap-admin/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
- <email>net-mail@gentoo.org</email>
- <name>Net-Mail</name>
-</maintainer>
-</pkgmetadata>