- add HOMEPAGE

- make -> ${MAKE}
This commit is contained in:
brad 2000-06-25 20:38:30 +00:00
parent 22a4a3253c
commit 1e5213144d
2 changed files with 24 additions and 21 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.19 2000/06/13 02:07:48 kevlo Exp $
# $OpenBSD: Makefile,v 1.20 2000/06/25 20:38:30 brad Exp $
DISTNAME= slang-1.4.1
PKGNAME= libslang-1.4.1
@ -7,6 +7,8 @@ NEED_VERSION= 1.301
MASTER_SITES= ftp://space.mit.edu/pub/davis/slang/v1.4/ \
http://gd.tuwien.ac.at/editors/davis/slang/v1.4/
HOMEPAGE= http://www.s-lang.org/
MAINTAINER= todd@openbsd.org
PERMIT_PACKAGE_CDROM= Yes
@ -14,16 +16,16 @@ PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_STYLE= gnu
do-install:
@cd ${WRKDIST}/src && make prefix=${PREFIX} ${INSTALL_TARGET}
@cd ${WRKDIST}/src && ${MAKE} prefix="${PREFIX}" ${INSTALL_TARGET}
@if [ ${INSTALL_TARGET} == "install-elf" ]; then \
cd ${WRKDIST}/src && make prefix=${PREFIX} install-links; \
cd ${WRKDIST}/src && ${MAKE} prefix="${PREFIX}" install-links; \
fi
test: build
@cd ${WRKSRC} && make runtests
@cd ${WRKSRC} && ${MAKE} runtests
.include <bsd.port.mk>

View File

@ -1,17 +1,18 @@
S-Lang is a C programmer's library that includes routines for the rapid
development of sophisticated, user friendly, multi-platform applications.
The S-Lang library includes the following:
S-Lang is a C programmer's library that includes routines for the rapid
development of sophisticated, user friendly, multi-platform applications.
The S-Lang library includes the following:
Low level tty input routines for reading single characters at a time.
Keymap routines for defining keys and manipulating multiple keymaps.
High level screen management routines for manipulating both
monochrome and color terminals. These routines are very
efficient.
Low level terminal-independent routines for manipulating the display
of a terminal.
Routines for reading single line input with line editing and recall
capabilities.
Searching functions: both ordinary searches and regular expression
searches.
An embedded stack-based language interpreter with a C-like syntax.
A malloc debugging package
- Low level tty input routines for reading single characters at a time.
- Keymap routines for defining keys and manipulating multiple keymaps.
- High level screen management routines for manipulating both
monochrome and color terminals. These routines are very efficient.
- Low level terminal-independent routines for manipulating the display
of a terminal.
- Routines for reading single line input with line editing and recall
capabilities.
- Searching functions: both ordinary searches and regular expression
searches.
- An embedded stack-based language interpreter with a C-like syntax.
- A malloc debugging package.
WWW: ${HOMEPAGE}