app-editors/mined: Add new package

This adds a package for the MinEd text editor.
The test suite is RESTRICT-ed because it will throw a QA message if
used, due to an upstream make jobserver issue. If removed, it will
still complete, but a QA error will show.
The make process uses the -j1 option for the same reason.

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alex Holcomb <alex@alexsdigital.rodeo>
This commit is contained in:
Alexander Holcomb
2022-01-15 15:58:48 -06:00
parent 61d0e3d7c8
commit 843a3c0bca
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1 @@
DIST mined-2015.25.tar.gz 6919430 BLAKE2B 5176cbafff1c427ea773546b43951e4d58a8b007448b42ee2fe478ed0b66230f48d6bc12d7a88fdec5d0c12c599d02527f4989d3ccf77e80ddcb81d5b285e9d0 SHA512 24c9313c26ffb00daab7754e42666bb9cf095c3246255b2b44cdb8eb8e325306ef40db03a828a8dad85d3bf406b874d17920365cfbf8c507f909eb97cfe480ea

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>alex@alexsdigital.rodeo</email>
<name>Alex Holcomb</name>
</maintainer>
<upstream>
<bugs-to>http://towo.net/mined/</bugs-to>
</upstream>
<longdescription>
Mined is a flexible terminal-based text editor, designed to be easy to use while still being lightweight.
</longdescription>
</pkgmetadata>

View File

@@ -0,0 +1,26 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="A powerful text editor with extensive Unicode and CJK support"
HOMEPAGE="http://towo.net/mined/"
SRC_URI="https://downloads.sourceforge.net/project/mined/mined/mined%202015.25/mined-2015.25.tar.gz?ts=gAAAAABhfF-EKWvxGfwH7tpfR0NI8LV87Muimvh4jUigxZZZAD1fN8xgcbBPJc1TQ3f8djMFDbHXXz6rQZI4_qwwEsqakvBpqg%3D%3D&r=https%3A%2F%2Fsourceforge.net%2Fprojects%2Fmined%2Ffiles%2Fmined%2Fmined%25202015.25%2Fmined-2015.25.tar.gz%2Fdownload -> mined-2015.25.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RESTRICT="test"
IUSE=""
RDEPEND=""
DEPEND="${RDEPEND}"
BDEPEND=""
#src_configure() {
# econf
#}
src_compile() {
emake -j1
}
src_install() {
dobin bin/Linux.x86_64/mined
doman man/mined.1
}