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 EE28D139694 for ; Fri, 24 Feb 2017 11:33:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 587F721C03E; Fri, 24 Feb 2017 11:33:58 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 373E621C03E for ; Fri, 24 Feb 2017 11:33:58 +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 76981341026 for ; Fri, 24 Feb 2017 11:33:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FF9352E6 for ; Fri, 24 Feb 2017 11:33:56 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1487935962.46115d1b28a4dc17a2442c36333ddbb8ebd0a368.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/navi2ch/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/navi2ch/navi2ch-1.8.4.ebuild X-VCS-Directories: app-emacs/navi2ch/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 46115d1b28a4dc17a2442c36333ddbb8ebd0a368 X-VCS-Branch: master Date: Fri, 24 Feb 2017 11:33:56 +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: 594039d5-6214-43a2-9891-3f9b47ff914f X-Archives-Hash: 7c74937aec7dbc31a7f795a8e579966d commit: 46115d1b28a4dc17a2442c36333ddbb8ebd0a368 Author: Manuel Rüger gentoo org> AuthorDate: Fri Feb 24 11:32:21 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Fri Feb 24 11:32:42 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46115d1b app-emacs/navi2ch: Remove old Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-emacs/navi2ch/navi2ch-1.8.4.ebuild | 51 ---------------------------------- 1 file changed, 51 deletions(-) diff --git a/app-emacs/navi2ch/navi2ch-1.8.4.ebuild b/app-emacs/navi2ch/navi2ch-1.8.4.ebuild deleted file mode 100644 index 5961018b72..0000000000 --- a/app-emacs/navi2ch/navi2ch-1.8.4.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=3 - -inherit elisp - -DESCRIPTION="A navigator for the Japanese textboard 2ch" -HOMEPAGE="http://navi2ch.sourceforge.net/" -SRC_URI="mirror://sourceforge/navi2ch/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="" - -SITEFILE="50${PN}-gentoo.el" - -src_configure() { - econf \ - --with-lispdir="${EPREFIX}${SITELISP}/${PN}" \ - --with-icondir="${EPREFIX}${SITEETC}/${PN}" -} - -# This is NOT redundant, elisp.eclass redefines src_compile -src_compile() { - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - elisp-install ${PN} contrib/*.el || die - elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die - dodoc ChangeLog* NEWS README TODO || die - newdoc contrib/README README.contrib || die -} - -pkg_postinst() { - elisp-site-regen - elog - elog "Please add to your ~/.emacs" - elog "If you use mona-font," - elog "\t(setq navi2ch-mona-enable t)" - elog "If you use izonmoji-mode," - elog "\t(require 'izonmoji-mode)" - elog "\t(add-hook 'navi2ch-bm-mode-hook 'izonmoji-mode-on)" - elog "\t(add-hook 'navi2ch-article-mode-hook 'izonmoji-mode-on)" - elog "\t(add-hook 'navi2ch-popup-article-mode-hook 'izonmoji-mode-on)" - elog -}