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 904541382C5 for ; Mon, 2 Apr 2018 15:32:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BBC6EE0DDF; Mon, 2 Apr 2018 15:32:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 82D4EE0DDF for ; Mon, 2 Apr 2018 15:32:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C0051335CD6 for ; Mon, 2 Apr 2018 15:32:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 844BD25A for ; Mon, 2 Apr 2018 15:32:21 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1522683133.42aa9b9388a2ca4bb05cc0c17c96ab902c945412.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild X-VCS-Directories: app-editors/jasspa-microemacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 42aa9b9388a2ca4bb05cc0c17c96ab902c945412 X-VCS-Branch: master Date: Mon, 2 Apr 2018 15:32:21 +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: e6efff84-238b-46f1-b719-9ad9157725b9 X-Archives-Hash: d0494c0a954a0d6607195869292fa70d commit: 42aa9b9388a2ca4bb05cc0c17c96ab902c945412 Author: Ulrich Müller gentoo org> AuthorDate: Mon Apr 2 15:23:46 2018 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Mon Apr 2 15:32:13 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42aa9b93 app-editors/jasspa-microemacs: Update desktop database. Modernise ebuild and bump to EAPI 6. Package-Manager: Portage-2.3.27, Repoman-2.3.9 .../jasspa-microemacs-20091011-r3.ebuild | 101 +++++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild new file mode 100644 index 00000000000..770b292dd3e --- /dev/null +++ b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild @@ -0,0 +1,101 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs xdg-utils + +MACROS_PV="20091017" +DESCRIPTION="Jasspa Microemacs" +HOMEPAGE="http://www.jasspa.com/" +SRC_URI="http://www.jasspa.com/release_20090909/jasspa-mesrc-${PV}.tar.gz + !nanoemacs? ( + http://www.jasspa.com/release_20090909/jasspa-memacros-${MACROS_PV}.tar.gz + http://www.jasspa.com/release_20090909/jasspa-mehtml-${PV}.tar.gz + http://www.jasspa.com/release_20060909/meicons-extra.tar.gz )" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" +IUSE="nanoemacs X xpm" + +RDEPEND="sys-libs/ncurses:0= + X? ( + x11-libs/libX11 + xpm? ( x11-libs/libXpm ) + ) + nanoemacs? ( !app-editors/ne )" + +DEPEND="${RDEPEND} + virtual/pkgconfig + X? ( + x11-base/xorg-proto + x11-libs/libXt + )" + +S="${WORKDIR}/me${PV:2}" +PATCHES=( + "${FILESDIR}"/${PV}-ncurses.patch + "${FILESDIR}"/${PV}-linux3.patch +) + +src_unpack() { + unpack jasspa-mesrc-${PV}.tar.gz + if ! use nanoemacs; then + mkdir "${WORKDIR}"/jasspa || die + cd "${WORKDIR}"/jasspa || die + # everything except jasspa-mesrc + unpack ${A/jasspa-mesrc-${PV}.tar.gz/} + fi +} + +src_prepare() { + default + # allow for some variables to be passed to make + sed -i -e \ + '/make/s/\$OPTIONS/& CC="$CC" COPTIMISE="$CFLAGS" LDFLAGS="$LDFLAGS" CONSOLE_LIBS="$CONSOLE_LIBS" STRIP=true/' \ + src/build || die "sed failed" +} + +src_compile() { + local pkgdatadir="${EPREFIX}/usr/share/jasspa" + local me="" type=c + use nanoemacs && me="-ne" + use X && type=cw + use xpm || export XPM_INCLUDE=. # prevent Xpm autodetection + + cd src || die + CC="$(tc-getCC)" \ + CONSOLE_LIBS="$("$(tc-getPKG_CONFIG)" --libs ncurses)" \ + ./build ${me} \ + -t ${type} \ + -p "~/.jasspa:${pkgdatadir}/site:${pkgdatadir}" \ + || die "build failed" +} + +src_install() { + local me=me type=c + use nanoemacs && me=ne + use X && type=cw + newbin src/${me}${type} ${me} + + if ! use nanoemacs; then + keepdir /usr/share/jasspa/site + insinto /usr/share + doins -r "${WORKDIR}"/jasspa + if use X; then + insinto /usr/share/applications + doins "${FILESDIR}"/${PN}.desktop + fi + fi + + dodoc faq.txt readme.txt change.log +} + +pkg_postinst() { + use X && xdg_desktop_database_update +} + +pkg_postrm() { + use X && xdg_desktop_database_update +}