diff options
author | Matthew Smith <matthew@gentoo.org> | 2022-02-13 10:58:56 +0000 |
---|---|---|
committer | Matthew Smith <matthew@gentoo.org> | 2022-02-13 16:09:34 +0000 |
commit | cecb1781402a4e04056be656cc574c8d7de21217 (patch) | |
tree | dcb18ad4c12a343e5f5f9b00fff76cdcc0a7e942 /app-editors/ne | |
parent | app-editors/ne: update EAPI 7 -> 8 (diff) | |
download | gentoo-cecb1781402a4e04056be656cc574c8d7de21217.tar.gz gentoo-cecb1781402a4e04056be656cc574c8d7de21217.tar.bz2 gentoo-cecb1781402a4e04056be656cc574c8d7de21217.zip |
app-editors/ne: drop 3.3.0
Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to 'app-editors/ne')
-rw-r--r-- | app-editors/ne/Manifest | 1 | ||||
-rw-r--r-- | app-editors/ne/ne-3.3.0.ebuild | 52 |
2 files changed, 0 insertions, 53 deletions
diff --git a/app-editors/ne/Manifest b/app-editors/ne/Manifest index f8c4a374195d..6b735d790750 100644 --- a/app-editors/ne/Manifest +++ b/app-editors/ne/Manifest @@ -1,2 +1 @@ -DIST ne-3.3.0.tar.gz 1173159 BLAKE2B a4be3fd37a0a79b440290846184bc50551cfb9b73dc50c0376110f3603233879b396f67a87e2f9defe9c0cbc42c963e66bc43ab5396f8ccb27e5b6182c429006 SHA512 73a1bbc5a9f62354834288e25b8f4bf2b0d2ff6faf3408108b217305e2c9d8fed768b5a3c3fd21df7b3bf75a3f9c71ea899a8b3f528b560a8e5e66accd442919 DIST ne-3.3.1.tar.gz 1138072 BLAKE2B 8494ff955b456bbac2e82823ee155980f8fab5a1071d0bfd6a987f1ed0724129ab2ecb70737547836b592369b45daf5e499d50d7230b04c5eabfd1536a56271f SHA512 d8c1d8cd9bbafcc7c8c485ca4454d6979be3d33ae918139865ce5f76e428f165043707c95c2e440bd9bccd00c67ce81a41f87f94b85cae3518c4749233718123 diff --git a/app-editors/ne/ne-3.3.0.ebuild b/app-editors/ne/ne-3.3.0.ebuild deleted file mode 100644 index 87aaff065bf8..000000000000 --- a/app-editors/ne/ne-3.3.0.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools flag-o-matic toolchain-funcs - -DESCRIPTION="The nice editor, easy to use for the beginner and powerful for the wizard" -HOMEPAGE="https://ne.di.unimi.it/" -SRC_URI="https://ne.di.unimi.it/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris" - -BDEPEND="virtual/pkgconfig" -DEPEND="sys-libs/ncurses:=" -RDEPEND=" - ${DEPEND} - dev-lang/perl -" - -HTML_DOCS=( doc/html/. ) - -src_prepare() { - default - - sed -i -e 's/-O3//' src/makefile || die -} - -src_configure() { - # bug #776799 - sed -i -e "s/-lcurses/$($(tc-getPKG_CONFIG) --libs ncurses)/" src/makefile || die -} - -src_compile() { - append-cflags -std=c11 - emake -C src CC="$(tc-getCC)" \ - NE_GLOBAL_DIR="/usr/share/${PN}" \ - OPTS="${CFLAGS}" \ - "${PN}" -} - -src_install() { - dobin "src/${PN}" - - insinto "/usr/share/${PN}/syntax" - doins syntax/*.jsf - - doman "doc/${PN}.1" - dodoc CHANGES README.md NEWS doc/*.{txt,pdf,texinfo} doc/default.* -} |