1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/www/webserver/Makefile
Dirk Meyer b987573bdc The WebServer class provides the framework for a GNUstep program to act
as an HTTP or HTTPS server for simple applications.
It does not attempt to be a general-purpose web server, but is rather
intended to permit a program to easily handle requests from automated
systems which are intended to control, monitor, or use the services
provided by the program in which the class is embedded.
The emphasis is on making it robust/reliable/simple, so you can rapidly
develop software using it. It is a single-threaded, single-process
system using asynchronous I/O, so you can easily run it under debug
in gdb to fix any bugs in your delegate object.
2006-10-31 06:13:48 +00:00

31 lines
655 B
Makefile

# New ports collection makefile for: webserver
# Date created: 29 Oct 2006
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
#
PORTNAME= webserver
PORTVERSION= 1.1.0
CATEGORIES= www
MASTER_SITES= ${MASTER_SITE_GNUSTEP}
MASTER_SITE_SUBDIR= libs
DISTNAME= WebServer-${PORTVERSION}
MAINTAINER= dinoex@FreeBSD.org
COMMENT= Framework for a GNUstep to act as HTTP or HTTPS server
USE_GMAKE= yes
USE_GNUSTEP= yes
USE_GNUSTEP_PREFIX= yes
USE_GNUSTEP_BASE= yes
USE_GNUSTEP_BUILD= yes
USE_GNUSTEP_INSTALL= yes
MAKEFILE= GNUmakefile
ALL_TARGET=
LDCONFIG_DIRS= ${LOCALLIBDIR}
INSTALLS_SHLIB= yes
NO_FILTER_SHLIBS= yes
.include <bsd.port.mk>