From 1da857569e11769f72eb9ca10afaffa7f44694c1 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Mon, 2 Sep 2019 16:20:27 +0200 Subject: [PATCH 1/2] nedit: be0ify --- nedit-5.6-0.bee => nedit.be0 | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) rename nedit-5.6-0.bee => nedit.be0 (96%) diff --git a/nedit-5.6-0.bee b/nedit.be0 similarity index 96% rename from nedit-5.6-0.bee rename to nedit.be0 index e6a0cafc6..358fb4ec1 100755 --- a/nedit-5.6-0.bee +++ b/nedit.be0 @@ -1,13 +1,12 @@ #!/bin/env beesh +# BEE_VERSION nedit-5.6.0-1 + # SRCURL[0]="/src/mariux/x86_64/nedit/nedit-5.5-src.tar.gz" SRCURL[0]="ftp://ftp.nluug.nl/pub/editors/NEdit/snapshot/nedit-latest-sources-HEAD.tar.gz" PATCHURL[0]="https://bugzilla.redhat.com/attachment.cgi?id=135197 nedit-default-visual.patch" -PGRP=( uncategorized ) - - B=${S} BEE_CONFIGURE=none @@ -56,7 +55,7 @@ verify_config: check_tif_rule } mee_configure() { - bee_configure + bee_configure } mee_build() { @@ -68,9 +67,9 @@ mee_install() { mkdir -pv ${D}{${BINDIR},${MANDIR}/man1} install -m 755 -o root -g system source/nedit source/nc ${D}${BINDIR} - + install -m 644 -o root -g system doc/nc.man ${D}${MANDIR}/man1/nc.1 install -m 644 -o root -g system doc/nedit.man ${D}${MANDIR}/man1/nedit.1 - + } From 817ff7c9d625b695449044510399222b2e20d837 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Mon, 2 Sep 2019 16:24:26 +0200 Subject: [PATCH 2/2] nedit: fix install user/group - removed root:system --- nedit.be0 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nedit.be0 b/nedit.be0 index 358fb4ec1..669afe7a3 100755 --- a/nedit.be0 +++ b/nedit.be0 @@ -66,10 +66,10 @@ mee_install() { mkdir -pv ${D}{${BINDIR},${MANDIR}/man1} - install -m 755 -o root -g system source/nedit source/nc ${D}${BINDIR} + install -m 755 source/nedit source/nc ${D}${BINDIR} - install -m 644 -o root -g system doc/nc.man ${D}${MANDIR}/man1/nc.1 - install -m 644 -o root -g system doc/nedit.man ${D}${MANDIR}/man1/nedit.1 + install -m 644 doc/nc.man ${D}${MANDIR}/man1/nc.1 + install -m 644 doc/nedit.man ${D}${MANDIR}/man1/nedit.1 }