From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D288D13835A for ; Mon, 31 May 2021 17:43:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E3DEE0858; Mon, 31 May 2021 17:43:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 721E3E0858 for ; Mon, 31 May 2021 17:43:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 999B7340D6C for ; Mon, 31 May 2021 17:43:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8D5A37AD for ; Mon, 31 May 2021 17:43:23 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1622572692.6cf2ee0860db229af8537058c9aa7d88a229965a.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-mail/ezmlm-idx/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-mail/ezmlm-idx/ezmlm-idx-7.0.0-r3.ebuild X-VCS-Directories: net-mail/ezmlm-idx/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 6cf2ee0860db229af8537058c9aa7d88a229965a X-VCS-Branch: master Date: Mon, 31 May 2021 17:43:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 25ef984d-1fe3-4e71-97c8-ff6970dc26bc X-Archives-Hash: 56b50c8fb0f148796ac6e4becc76828c commit: 6cf2ee0860db229af8537058c9aa7d88a229965a Author: Rolf Eike Beer sf-mail de> AuthorDate: Mon May 31 16:04:54 2021 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Tue Jun 1 18:38:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cf2ee08 net-mail/ezmlm-idx: drop old Signed-off-by: Rolf Eike Beer sf-mail.de> Signed-off-by: Sergei Trofimovich gentoo.org> net-mail/ezmlm-idx/ezmlm-idx-7.0.0-r3.ebuild | 56 ---------------------------- 1 file changed, 56 deletions(-) diff --git a/net-mail/ezmlm-idx/ezmlm-idx-7.0.0-r3.ebuild b/net-mail/ezmlm-idx/ezmlm-idx-7.0.0-r3.ebuild deleted file mode 100644 index 7cac1d1df21..00000000000 --- a/net-mail/ezmlm-idx/ezmlm-idx-7.0.0-r3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit qmail toolchain-funcs - -DESCRIPTION="Simple yet powerful mailing list manager for qmail" -HOMEPAGE="http://www.ezmlm.org" -SRC_URI="http://www.ezmlm.org/archive/${PV}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~mips ppc sparc x86" -IUSE="mysql postgres" - -DEPEND="mysql? ( dev-db/mysql-connector-c:0= ) - postgres? ( dev-db/postgresql )" -RDEPEND="${DEPEND} - virtual/qmail" -REQUIRED_USE="?? ( mysql postgres )" - -src_prepare() { - default - echo /usr/bin > conf-bin || die - echo /usr/$(get_libdir)/ezmlm > conf-lib || die - echo /etc/ezmlm > conf-etc || die - echo /usr/share/man > conf-man || die - echo ${QMAIL_HOME} > conf-qmail || die - - echo $(tc-getCC) ${CFLAGS} -I/usr/include/{my,postgre}sql > conf-cc || die - echo $(tc-getCC) ${CFLAGS} -Wl,-E > conf-ld || die - - # fix DESTDIR and skip cat man-pages - sed -e "s:\(/install\) \(\"\`head\):\1 ${D}\2:" \ - -e "s:\(./install.*\) < MAN$:grep -v \:/cat MAN | \1:" \ - -e "s:\(\"\`head -n 1 conf-etc\`\"/default\):${D}\1:" \ - -i Makefile || die -} - -src_compile() { - emake it man - - if use mysql; then - emake mysql - elif use postgres; then - emake pgsql - fi -} - -src_install() { - dodir /usr/bin /usr/$(get_libdir)/ezmlm /etc/ezmlm /usr/share/man - dobin ezmlm-{cgi,checksub,import,rmtab} - - make DESTDIR="${D}" setup || die "make setup failed" -}