* [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/
@ 2018-04-02 14:03 Ulrich Müller
0 siblings, 0 replies; 9+ messages in thread
From: Ulrich Müller @ 2018-04-02 14:03 UTC (permalink / raw
To: gentoo-commits
commit: 3f34086e4fd6309d430daf485c11fac0da680ccd
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 2 13:53:18 2018 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Mon Apr 2 14:03:40 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f34086e
app-editors/jasspa-microemacs: Update dependency on X headers.
Package-Manager: Portage-2.3.27, Repoman-2.3.9
app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r2.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r2.ebuild
index 55e0722235c..eb138ec6f5b 100644
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r2.ebuild
+++ b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
@@ -27,7 +27,7 @@ RDEPEND="sys-libs/ncurses
DEPEND="${RDEPEND}
virtual/pkgconfig
X? ( x11-libs/libXt
- x11-proto/xproto )"
+ x11-base/xorg-proto )"
S="${WORKDIR}/me${PV:2}/src"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/
@ 2018-04-02 15:32 Ulrich Müller
0 siblings, 0 replies; 9+ messages in thread
From: Ulrich Müller @ 2018-04-02 15:32 UTC (permalink / raw
To: gentoo-commits
commit: 42aa9b9388a2ca4bb05cc0c17c96ab902c945412
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 2 15:23:46 2018 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> 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
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/
@ 2018-05-27 1:57 Thomas Deutschmann
0 siblings, 0 replies; 9+ messages in thread
From: Thomas Deutschmann @ 2018-05-27 1:57 UTC (permalink / raw
To: gentoo-commits
commit: beaf7243fd71554c0340e16d8aa7604f5cdad461
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun May 27 01:57:20 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun May 27 01:57:37 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beaf7243
app-editors/jasspa-microemacs: x86 stable (bug #656566)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
index 770b292dd3e..28f6d091d5f 100644
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
+++ b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://www.jasspa.com/release_20090909/jasspa-mesrc-${PV}.tar.gz
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
IUSE="nanoemacs X xpm"
RDEPEND="sys-libs/ncurses:0=
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/
@ 2018-05-27 20:10 Mikle Kolyada
0 siblings, 0 replies; 9+ messages in thread
From: Mikle Kolyada @ 2018-05-27 20:10 UTC (permalink / raw
To: gentoo-commits
commit: bc72da8f7d4d52c780520958101f56e0d8d5bbaa
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun May 27 20:10:41 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun May 27 20:10:41 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc72da8f
app-editors/jasspa-microemacs: amd64 stable wrt bug #656566
Package-Manager: Portage-2.3.24, Repoman-2.3.6
app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
index 28f6d091d5f..5161fae3250 100644
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
+++ b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://www.jasspa.com/release_20090909/jasspa-mesrc-${PV}.tar.gz
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
IUSE="nanoemacs X xpm"
RDEPEND="sys-libs/ncurses:0=
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/
@ 2019-02-09 19:56 Aaron Bauman
0 siblings, 0 replies; 9+ messages in thread
From: Aaron Bauman @ 2019-02-09 19:56 UTC (permalink / raw
To: gentoo-commits
commit: 1189b934e9411ff3b95f02f301c8aa80f16ea586
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Feb 5 08:25:30 2019 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sat Feb 9 19:54:59 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1189b934
app-editors/jasspa-microemacs: remove old (EAPI4)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/10983
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
.../jasspa-microemacs-20091011-r2.ebuild | 83 ----------------------
1 file changed, 83 deletions(-)
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r2.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r2.ebuild
deleted file mode 100644
index eb138ec6f5b..00000000000
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r2.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-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
- X? ( x11-libs/libX11
- xpm? ( x11-libs/libXpm ) )
- nanoemacs? ( !app-editors/ne )"
-
-DEPEND="${RDEPEND}
- virtual/pkgconfig
- X? ( x11-libs/libXt
- x11-base/xorg-proto )"
-
-S="${WORKDIR}/me${PV:2}/src"
-
-src_unpack() {
- unpack jasspa-mesrc-${PV}.tar.gz
- if ! use nanoemacs; then
- mkdir "${WORKDIR}/jasspa"
- cd "${WORKDIR}/jasspa"
- # everything except jasspa-mesrc
- unpack ${A/jasspa-mesrc-${PV}.tar.gz/}
- fi
-}
-
-src_prepare() {
- epatch "${FILESDIR}/${PV}-ncurses.patch"
- epatch "${FILESDIR}/${PV}-linux3.patch"
-
- # 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/' \
- 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
-
- 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 ${me}${type} ${me}
-
- if ! use nanoemacs; then
- keepdir /usr/share/jasspa/site
- insinto /usr/share
- doins -r "${WORKDIR}/jasspa"
- use X && domenu "${FILESDIR}/${PN}.desktop"
- fi
-
- dodoc ../faq.txt ../readme.txt ../change.log
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/
@ 2019-08-28 10:10 David Seifert
0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2019-08-28 10:10 UTC (permalink / raw
To: gentoo-commits
commit: c6b648a94b5268989f953c6828f0b8a54a5da9e1
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 28 10:10:00 2019 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Aug 28 10:10:00 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6b648a9
app-editors/jasspa-microemacs: [QA] Use desktop.eclass
Package-Manager: Portage-2.3.72, Repoman-2.3.17
Signed-off-by: David Seifert <soap <AT> gentoo.org>
.../jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild | 9 +++------
1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
index c431c2cfdd6..27f5e8a4303 100644
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
+++ b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
-inherit toolchain-funcs xdg-utils
+inherit desktop toolchain-funcs xdg-utils
MACROS_PV="20091017"
DESCRIPTION="Jasspa Microemacs"
@@ -83,10 +83,7 @@ src_install() {
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
+ use X && domenu "${FILESDIR}"/${PN}.desktop
fi
dodoc faq.txt readme.txt change.log
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/
@ 2020-08-29 11:44 Ulrich Müller
0 siblings, 0 replies; 9+ messages in thread
From: Ulrich Müller @ 2020-08-29 11:44 UTC (permalink / raw
To: gentoo-commits
commit: 47c92843ec20f1d9a5ae011c47770d49b0c3d7dd
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 12 16:31:39 2020 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat Aug 29 11:43:39 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47c92843
app-editors/jasspa-microemacs: Migrate from X to gui USE flag.
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
.../jasspa-microemacs-20091011-r3.ebuild | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
index e41568ee365..c04a8195963 100644
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
+++ b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
@@ -17,10 +17,10 @@ SRC_URI="http://www.jasspa.com/release_20090909/jasspa-mesrc-${PV}.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"
+IUSE="gui nanoemacs xpm"
RDEPEND="sys-libs/ncurses:0=
- X? (
+ gui? (
x11-libs/libX11
xpm? ( x11-libs/libXpm )
)
@@ -28,7 +28,7 @@ RDEPEND="sys-libs/ncurses:0=
DEPEND="${RDEPEND}
virtual/pkgconfig
- X? (
+ gui? (
x11-base/xorg-proto
x11-libs/libXt
)"
@@ -62,7 +62,7 @@ src_compile() {
local pkgdatadir="${EPREFIX}/usr/share/jasspa"
local me="" type=c
use nanoemacs && me="-ne"
- use X && type=cw
+ use gui && type=cw
use xpm || export XPM_INCLUDE=. # prevent Xpm autodetection
cd src || die
@@ -77,23 +77,23 @@ src_compile() {
src_install() {
local me=me type=c
use nanoemacs && me=ne
- use X && type=cw
+ use gui && type=cw
newbin src/${me}${type} ${me}
if ! use nanoemacs; then
keepdir /usr/share/jasspa/site
insinto /usr/share
doins -r "${WORKDIR}"/jasspa
- use X && domenu "${FILESDIR}"/${PN}.desktop
+ use gui && domenu "${FILESDIR}"/${PN}.desktop
fi
dodoc faq.txt readme.txt change.log
}
pkg_postinst() {
- use X && xdg_desktop_database_update
+ use gui && xdg_desktop_database_update
}
pkg_postrm() {
- use X && xdg_desktop_database_update
+ use gui && xdg_desktop_database_update
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/
@ 2021-05-15 19:35 Ulrich Müller
0 siblings, 0 replies; 9+ messages in thread
From: Ulrich Müller @ 2021-05-15 19:35 UTC (permalink / raw
To: gentoo-commits
commit: 9b644be1b19b013584deff825d7b211ac1e135bc
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sat May 15 19:34:45 2021 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sat May 15 19:35:06 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b644be1
app-editors/jasspa-microemacs: EAPI 7 bump
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
...s-20091011-r3.ebuild => jasspa-microemacs-20091011-r4.ebuild} | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r4.ebuild
similarity index 96%
rename from app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
rename to app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r4.ebuild
index a2277979f14..b6d09c14ac2 100644
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r3.ebuild
+++ b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r4.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit desktop toolchain-funcs xdg-utils
@@ -13,6 +13,7 @@ SRC_URI="http://www.jasspa.com/release_20090909/jasspa-mesrc-${PV}.tar.gz
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 )"
+S="${WORKDIR}/me${PV:2}"
LICENSE="GPL-2+"
SLOT="0"
@@ -27,13 +28,13 @@ RDEPEND="sys-libs/ncurses:0=
nanoemacs? ( !app-editors/ne )"
DEPEND="${RDEPEND}
- virtual/pkgconfig
gui? (
x11-base/xorg-proto
x11-libs/libXt
)"
-S="${WORKDIR}/me${PV:2}"
+BDEPEND="virtual/pkgconfig"
+
PATCHES=(
"${FILESDIR}"/${PV}-ncurses.patch
"${FILESDIR}"/${PV}-linux3.patch
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/
@ 2021-10-29 13:31 Yixun Lan
0 siblings, 0 replies; 9+ messages in thread
From: Yixun Lan @ 2021-10-29 13:31 UTC (permalink / raw
To: gentoo-commits
commit: 98eb8323f7156430e85b7acc08a940329e1b0515
Author: Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Wed Oct 27 18:09:57 2021 +0000
Commit: Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Oct 29 13:29:11 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98eb8323
app-editors/jasspa-microemacs: keyword ~riscv
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>
app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r4.ebuild b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r4.ebuild
index b6d09c14ac2..d883a6eaea4 100644
--- a/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r4.ebuild
+++ b/app-editors/jasspa-microemacs/jasspa-microemacs-20091011-r4.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/me${PV:2}"
LICENSE="GPL-2+"
SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 ppc ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
IUSE="gui nanoemacs xpm"
RDEPEND="sys-libs/ncurses:0=
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2021-10-29 13:31 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-29 11:44 [gentoo-commits] repo/gentoo:master commit in: app-editors/jasspa-microemacs/ Ulrich Müller
-- strict thread matches above, loose matches on Subject: below --
2021-10-29 13:31 Yixun Lan
2021-05-15 19:35 Ulrich Müller
2019-08-28 10:10 David Seifert
2019-02-09 19:56 Aaron Bauman
2018-05-27 20:10 Mikle Kolyada
2018-05-27 1:57 Thomas Deutschmann
2018-04-02 15:32 Ulrich Müller
2018-04-02 14:03 Ulrich Müller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox