diff options
-rw-r--r-- | mail-client/etpan-ng/etpan-ng-0.7.1-r1.ebuild | 15 | ||||
-rw-r--r-- | mail-client/etpan-ng/files/etpan-ng-0.7.1-tinfo.patch | 10 |
2 files changed, 19 insertions, 6 deletions
diff --git a/mail-client/etpan-ng/etpan-ng-0.7.1-r1.ebuild b/mail-client/etpan-ng/etpan-ng-0.7.1-r1.ebuild index 5dfd3fa457d6..f4fc23d24341 100644 --- a/mail-client/etpan-ng/etpan-ng-0.7.1-r1.ebuild +++ b/mail-client/etpan-ng/etpan-ng-0.7.1-r1.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -inherit eutils autotools +EAPI=6 +inherit autotools DESCRIPTION="etPan is a console mail client that is based on libEtPan" HOMEPAGE="http://www.etpan.org/other.html" @@ -16,11 +17,13 @@ RDEPEND=">=net-libs/libetpan-0.35 ldap? ( net-nds/openldap )" DEPEND="${RDEPEND} virtual/yacc" +PATCHES=( + "${FILESDIR}"/${P}-as-needed.patch + "${FILESDIR}"/${P}-tinfo.patch +) -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}/${P}-as-needed.patch" +src_prepare() { + default eautoreconf } diff --git a/mail-client/etpan-ng/files/etpan-ng-0.7.1-tinfo.patch b/mail-client/etpan-ng/files/etpan-ng-0.7.1-tinfo.patch new file mode 100644 index 000000000000..2f62659b906a --- /dev/null +++ b/mail-client/etpan-ng/files/etpan-ng-0.7.1-tinfo.patch @@ -0,0 +1,10 @@ +--- a/configure.in ++++ b/configure.in +@@ -125,6 +125,7 @@ + AC_CHECK_HEADER(ncurses.h, [ncurses=yes]) + test "x$ncurses" = "xyes" && AC_CHECK_LIB(ncurses, initscr, [LIBS="$LIBS -lncurses"; ncurses=yes], [ncurses=no]) + test "x$ncurses" = "xno" && AC_MSG_ERROR([ncurses support required]) ++AC_SEARCH_LIBS(curs_set, ncurses tinfo) + + dnl Libetpan + libetpan=no |