se, delete old bep file, bump version (#1287)

This commit is contained in:
Schrijvers Luc
2017-04-22 22:20:18 +02:00
committed by waddlesplash
parent d2ef6b597b
commit 39861c4667
2 changed files with 48 additions and 31 deletions

View File

@@ -0,0 +1,48 @@
SUMMARY="Screen oriented version of ed"
DESCRIPTION="se (Screen Editor) is a screen oriented version of the classic \
UNIX text editor ed. Its similar to vi as both are modal editors with curses \
interfaces. However, it differs from vi in that it has the same command \
syntax as ed."
HOMEPAGE="http://se-editor.org/"
COPYRIGHT="2013 Thomas Cort"
LICENSE="Public Domain"
REVISION="1"
SOURCE_URI="http://se-editor.org/dist/se-$portVersion.tar.gz"
CHECKSUM_SHA256="e20d1c4d73dee45d319a086ccb54157f1bd94029af9d60c785f651246e209486"
ARCHITECTURES="x86_gcc2 x86 x86_64"
PROVIDES="
se
cmd:se
cmd:scriptse
"
REQUIRES="
haiku
lib:libncurses
"
BUILD_REQUIRES="
haiku_devel
devel:libncurses
"
BUILD_PREREQUIRES="
cmd:aclocal
cmd:autoconf
cmd:awk
cmd:gcc
cmd:make
cmd:pkg_config
"
BUILD()
{
autoreconf -vfi
runConfigure ./configure
make $jobArgs
}
INSTALL()
{
make install
}

View File

@@ -1,31 +0,0 @@
SUMMARY="Screen oriented version of ed"
DESCRIPTION="
se (Screen Editor) is a screen oriented version of the classic \
UNIX text editor ed. Its similar to vi as both are modal editors with curses \
interfaces. However, it differs from vi in that it has the same command syntax as ed.
"
HOMEPAGE="http://se-editor.org/"
SOURCE_URI="http://se-editor.org/dist/se-3.0.tar.gz"
CHECKSUM_MD5="b080a5377b95d989e14ad01b0d25e33a"
REVISION="1"
STATUS_HAIKU="stable"
DEPEND="sys-libs/ncurses >= 5.6"
BUILD()
{
cd se-3.0
COMMON_DOCS=`finddir B_COMMON_DOCUMENTATION_DIRECTORY`
./configure --prefix=`finddir B_COMMON_DIRECTORY` \
--datadir=`finddir B_COMMON_DATA_DIRECTORY` \
--infodir=$COMMON_DOCS/info \
--mandir=$COMMON_DOCS/man
make
}
INSTALL()
{
cd se-3.0
make install
}
LICENSE="Public Domain"