Skip to content
Permalink
3e764aeff1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 76 lines (56 sloc) 1.41 KB
#!/bin/env beesh
# 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
# EXCLUDE=""
mee_patch() {
bee_patch $@
cat >makefiles/Makefile.mariux <<"==EOF=="
# $Id: MarIuXFromScratchNEdit.txt,v 1.3 2008/01/10 09:19:27 MariusTolzmann Exp $
CC=cc
AR=ar
CFLAGS=-O -I/usr/local/openmotif-2.3/include -I/usr/X11R6/include -DUSE_DIRENT -DUSE_LPR_PRINT_CMD -DBUILD_UNTESTED_NEDIT
ARFLAGS=-urs
LIBS= \
-Wl,-rpath,/usr/local/openmotif-2.3/lib \
-L/usr/local/openmotif-2.3/lib \
-L/usr/X11R6/lib \
-L/usr/lib \
-Wl,--as-needed \
-Wl,-Bstatic \
-ljpeg \
-lXft \
-Wl,-Bdynamic \
-lXm \
-lpng \
-lfontconfig \
-lXrender \
-lXmu \
-lXp \
-lXpm \
-lXext \
-lXt \
-lSM \
-lICE \
-lX11 \
-lm \
-lz
include Makefile.common
verify_config: check_tif_rule
==EOF==
}
mee_configure() {
bee_configure
}
mee_build() {
echo "" | bee_build mariux
}
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
}