diff options
author | Aaron Bauman <bman@gentoo.org> | 2018-06-02 20:14:06 -0400 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2018-06-02 22:58:43 -0400 |
commit | 894d3a2861a27543b402fbafb78f3bd16d9984b2 (patch) | |
tree | 2caa146c2622cc3faa917db04dc172618f158ae0 /net-mail/ezmlm-idx | |
parent | net-misc/jwhois: drop old EAPI (diff) | |
download | gentoo-894d3a2861a27543b402fbafb78f3bd16d9984b2.tar.gz gentoo-894d3a2861a27543b402fbafb78f3bd16d9984b2.tar.bz2 gentoo-894d3a2861a27543b402fbafb78f3bd16d9984b2.zip |
net-mail/ezmlm-idx: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'net-mail/ezmlm-idx')
-rw-r--r-- | net-mail/ezmlm-idx/ezmlm-idx-7.0.0-r1.ebuild | 63 | ||||
-rw-r--r-- | net-mail/ezmlm-idx/ezmlm-idx-7.0.0.ebuild | 63 |
2 files changed, 0 insertions, 126 deletions
diff --git a/net-mail/ezmlm-idx/ezmlm-idx-7.0.0-r1.ebuild b/net-mail/ezmlm-idx/ezmlm-idx-7.0.0-r1.ebuild deleted file mode 100644 index 3c6166ea4f29..000000000000 --- a/net-mail/ezmlm-idx/ezmlm-idx-7.0.0-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit qmail multilib - -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? ( virtual/mysql ) - postgres? ( dev-db/postgresql )" -RDEPEND="${DEPEND} - virtual/qmail" - -pkg_setup() { - if use mysql && use postgres; then - die "cannot build mysql and pgsql support at the same time" - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" || die - - echo /usr/bin > conf-bin - echo /usr/$(get_libdir)/ezmlm > conf-lib - echo /etc/ezmlm > conf-etc - echo /usr/share/man > conf-man - echo ${QMAIL_HOME} > conf-qmail - - echo $(tc-getCC) ${CFLAGS} -I/usr/include/{my,postgre}sql > conf-cc - echo $(tc-getCC) ${CFLAGS} -Wl,-E > conf-ld - - # 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 -} - -src_compile() { - emake it man || die "make failed" - - if use mysql; then - emake mysql || die "make mysql failed" - elif use postgres; then - emake pgsql || die "make pgsql failed" - fi -} - -src_install () { - dodir /usr/bin /usr/$(get_libdir)/ezmlm /etc/ezmlm /usr/share/man - dobin ezmlm-{cgi,checksub} - - make DESTDIR="${D}" setup || die "make setup failed" -} diff --git a/net-mail/ezmlm-idx/ezmlm-idx-7.0.0.ebuild b/net-mail/ezmlm-idx/ezmlm-idx-7.0.0.ebuild deleted file mode 100644 index 2f1e6ec24b60..000000000000 --- a/net-mail/ezmlm-idx/ezmlm-idx-7.0.0.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit qmail - -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? ( virtual/mysql ) - postgres? ( dev-db/postgresql )" -RDEPEND="${DEPEND} - virtual/qmail" - -pkg_setup() { - if use mysql && use postgres; then - die "cannot build mysql and pgsql support at the same time" - fi -} - -src_unpack() { - unpack ${A} - cd "${S}" || die - - echo /usr/bin > conf-bin - echo /usr/lib/ezmlm > conf-lib - echo /etc/ezmlm > conf-etc - echo /usr/share/man > conf-man - echo ${QMAIL_HOME} > conf-qmail - - echo $(tc-getCC) ${CFLAGS} -I/usr/include/{my,postgre}sql > conf-cc - echo $(tc-getCC) ${CFLAGS} -Wl,-E > conf-ld - - # 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 -} - -src_compile() { - emake it man || die "make failed" - - if use mysql; then - emake mysql || die "make mysql failed" - elif use postgres; then - emake pgsql || die "make pgsql failed" - fi -} - -src_install () { - dodir /usr/bin /usr/lib/ezmlm /etc/ezmlm /usr/share/man - dobin ezmlm-{cgi,checksub} - - make DESTDIR="${D}" setup || die "make setup failed" -} |