From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4DB5613829C for ; Thu, 2 Jun 2016 12:37:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AB34A21C051; Thu, 2 Jun 2016 12:37:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4932421C051 for ; Thu, 2 Jun 2016 12:37:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6FD66340B6A for ; Thu, 2 Jun 2016 12:37:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 29F71984 for ; Thu, 2 Jun 2016 12:37:24 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1464871040.f76b4784da63d97557f89ff62937833584c7996e.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tmux/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/tmux/tmux-9999.ebuild X-VCS-Directories: app-misc/tmux/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: f76b4784da63d97557f89ff62937833584c7996e X-VCS-Branch: master Date: Thu, 2 Jun 2016 12:37:24 +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-Archives-Salt: bbb4b912-84d0-4906-8acd-68880aa5f6bc X-Archives-Hash: 9d9dd60b53104b66998201eaac660ce4 commit: f76b4784da63d97557f89ff62937833584c7996e Author: Lars Wendler gentoo org> AuthorDate: Thu Jun 2 12:36:56 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Thu Jun 2 12:37:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f76b4784 app-misc/tmux: Bumped live ebuild to EAPI-6. Cleanup. Package-Manager: portage-2.2.28 Signed-off-by: Lars Wendler gentoo.org> app-misc/tmux/tmux-9999.ebuild | 37 ++++++++++++++++--------------------- 1 file changed, 16 insertions(+), 21 deletions(-) diff --git a/app-misc/tmux/tmux-9999.ebuild b/app-misc/tmux/tmux-9999.ebuild index 577675c..223d23a 100644 --- a/app-misc/tmux/tmux-9999.ebuild +++ b/app-misc/tmux/tmux-9999.ebuild @@ -2,11 +2,9 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -AUTOTOOLS_AUTORECONF=true - -inherit autotools-utils git-r3 bash-completion-r1 flag-o-matic versionator +inherit autotools git-r3 flag-o-matic versionator DESCRIPTION="Terminal multiplexer" HOMEPAGE="http://tmux.github.io/" @@ -17,12 +15,14 @@ EGIT_REPO_URI="https://github.com/tmux/tmux.git" LICENSE="ISC" SLOT="0" KEYWORDS="" -IUSE="debug selinux vim-syntax kernel_FreeBSD kernel_linux" +IUSE="debug selinux utempter vim-syntax kernel_FreeBSD kernel_linux" CDEPEND=" >=dev-libs/libevent-2.0.10 - kernel_linux? ( sys-libs/libutempter ) - kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-lib-9.0 sys-libs/libutempter ) ) + utempter? ( + kernel_linux? ( sys-libs/libutempter ) + kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-lib-9.0 sys-libs/libutempter ) ) + ) sys-libs/ncurses:0=" DEPEND="${CDEPEND} virtual/pkgconfig" @@ -48,29 +48,24 @@ src_prepare() { # 1.7 segfaults when entering copy mode if compiled with -Os replace-flags -Os -O2 - autotools-utils_src_prepare + default + + eautoreconf } src_configure() { - local myeconfargs=( - --sysconfdir="${EPREFIX}"/etc - $(use_enable debug) - ) - autotools-utils_src_configure + econf \ + --sysconfdir="${EPREFIX}"/etc \ + $(use_enable debug) \ + $(use_enable utempter) } src_install() { - autotools-utils_src_install - - newbashcomp "${DISTDIR}/tmux-bash-completion-678a27616b70c649c6701cae9cd8c92b58cc051b" ${PN} + default - docinto examples - dodoc example_tmux.conf + einstalldocs if use vim-syntax; then - insinto /usr/share/vim/vimfiles/syntax - newins "${DISTDIR}/tmux.vim-95f6126c187667cc7f9c573c45c3b356cf69f4ca" tmux.vim - insinto /usr/share/vim/vimfiles/ftdetect doins "${FILESDIR}"/tmux.vim fi