summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2021-07-17 13:25:13 +0200
committerDavid Seifert <soap@gentoo.org>2021-07-17 13:25:13 +0200
commitb4a092ae93c77cbc3aaa6071a326092abdab9a0e (patch)
tree93a0624eb881d9738d8d44f0577e97e5d4a15b02 /app-editors/ng/ng-1.5_beta1-r2.ebuild
parentx11-terms/mlterm: Remove app-i18n/canna (diff)
downloadgentoo-b4a092ae93c77cbc3aaa6071a326092abdab9a0e.tar.gz
gentoo-b4a092ae93c77cbc3aaa6071a326092abdab9a0e.tar.bz2
gentoo-b4a092ae93c77cbc3aaa6071a326092abdab9a0e.zip
app-editors/ng: Remove app-i18n/canna
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-editors/ng/ng-1.5_beta1-r2.ebuild')
-rw-r--r--app-editors/ng/ng-1.5_beta1-r2.ebuild70
1 files changed, 0 insertions, 70 deletions
diff --git a/app-editors/ng/ng-1.5_beta1-r2.ebuild b/app-editors/ng/ng-1.5_beta1-r2.ebuild
deleted file mode 100644
index f7b2c66ceb44..000000000000
--- a/app-editors/ng/ng-1.5_beta1-r2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools toolchain-funcs
-
-MY_P="${P/_beta/beta}"
-
-DESCRIPTION="Emacs like micro editor Ng -- based on mg2a"
-HOMEPAGE="http://tt.sakura.ne.jp/~amura/ng/"
-SRC_URI="http://tt.sakura.ne.jp/~amura/archives/ng/${MY_P}.tar.gz"
-
-LICENSE="Emacs"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="canna"
-
-RDEPEND="
- sys-libs/ncurses:0=
- !dev-java/nailgun
- canna? ( app-i18n/canna )"
-
-DEPEND="
- ${RDEPEND}
- sys-apps/sed"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}/${MY_P}-ncurses.patch"
- "${FILESDIR}/${MY_P}-configure.patch"
-)
-
-src_prepare() {
- default
-
- sed -i -e "/NO_BACKUP/s/undef/define/" config.h || die "sed failed"
- pushd sys/unix > /dev/null || die
- eautoconf
- popd > /dev/null || die
- cp sys/unix/configure . || die
-}
-
-src_configure() {
- econf $(use_enable canna)
-}
-
-src_compile() {
- emake CC="$(tc-getCC)"
-}
-
-src_install() {
- dobin ng
- dodoc docs/* MANIFEST dot.ng
-
- insinto /usr/share/ng
- doins bin/*
-
- insinto /etc/skel
- newins dot.ng .ng
-}
-
-pkg_postinst() {
- elog
- elog "If you want to use user Config"
- elog "cp /etc/skel/.ng ~/.ng"
- elog "and edit your .ng configuration file."
- elog
-}