LiON (Lund's Input Output Library) is a C library to quickly develop
programs that are event-driven, networked, non-blocking and portable. It includes a simple API to do any networking, file I/O and pipes. It is multiplatform and runs on POSIX-like systems and Windows. WWW: http://www.lundman.net/wiki/index.php/LiON PR: ports/99589 Submitted by: Marco Molteni <molterSPAM@gufiSPAM.org>
This commit is contained in:
parent
f000ab5044
commit
08dcbfe97f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=166580
5 changed files with 68 additions and 0 deletions
|
@ -584,6 +584,7 @@
|
||||||
SUBDIR += linux_devtools
|
SUBDIR += linux_devtools
|
||||||
SUBDIR += linux_kdump
|
SUBDIR += linux_kdump
|
||||||
SUBDIR += linuxthreads
|
SUBDIR += linuxthreads
|
||||||
|
SUBDIR += lion
|
||||||
SUBDIR += llvm
|
SUBDIR += llvm
|
||||||
SUBDIR += log4c
|
SUBDIR += log4c
|
||||||
SUBDIR += log4cplus
|
SUBDIR += log4cplus
|
||||||
|
|
40
devel/lion/Makefile
Normal file
40
devel/lion/Makefile
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
# New ports collection makefile for: LiON
|
||||||
|
# Date created: June 2006
|
||||||
|
# Whom: Marco Molteni <molterSPAM@gufiSPAM.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= lion
|
||||||
|
DISTVERSION= 20060301
|
||||||
|
CATEGORIES= devel net
|
||||||
|
MASTER_SITES= http://www.lundman.net/ftp/
|
||||||
|
EXTRACT_SUFX= .tgz
|
||||||
|
|
||||||
|
MAINTAINER= molterSPAM@gufiSPAM.org
|
||||||
|
COMMENT= Multi-platform, event-driven, simple networking library
|
||||||
|
|
||||||
|
# TODO
|
||||||
|
# add support for SSL/TLS/OpenSSL
|
||||||
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||||
|
USE_GMAKE= yes
|
||||||
|
ALL_TARGET= default
|
||||||
|
|
||||||
|
INCLUDES= base64.h connections.h io.h lfnmatch.h lgroup.h lion.h \
|
||||||
|
lion_rcsid.h lion_types.h misc.h pipe.h sockets.h \
|
||||||
|
timers.h tls.h udp.h zlib.h
|
||||||
|
|
||||||
|
post-patch:
|
||||||
|
@${REINPLACE_CMD} -e 's,<time.h>,<sys/time.h>,' \
|
||||||
|
${WRKSRC}/timers.h
|
||||||
|
@${REINPLACE_CMD} -E 's,^(CC|LDFLAGS) *=,\1 ?=,' \
|
||||||
|
${WRKSRC}/Makefile
|
||||||
|
|
||||||
|
do-install:
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/liblion.a ${PREFIX}/lib
|
||||||
|
@${MKDIR} ${PREFIX}/include/lion
|
||||||
|
.for i in ${INCLUDES}
|
||||||
|
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/include/lion
|
||||||
|
.endfor
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
3
devel/lion/distinfo
Normal file
3
devel/lion/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
MD5 (lion-20060301.tgz) = 56935033716c358ccadea476536d5e61
|
||||||
|
SHA256 (lion-20060301.tgz) = f86a47124064633f9976e14a402cb937470f518a604a798f929b04a219002032
|
||||||
|
SIZE (lion-20060301.tgz) = 210284
|
7
devel/lion/pkg-descr
Normal file
7
devel/lion/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
LiON (Lund's Input Output Library) is a C library to quickly develop
|
||||||
|
programs that are event-driven, networked, non-blocking and portable.
|
||||||
|
It includes a simple API to do any networking, file I/O and pipes.
|
||||||
|
|
||||||
|
It is multiplatform and runs on POSIX-like systems and Windows.
|
||||||
|
|
||||||
|
WWW: http://www.lundman.net/wiki/index.php/LiON
|
17
devel/lion/pkg-plist
Normal file
17
devel/lion/pkg-plist
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
include/lion/base64.h
|
||||||
|
include/lion/connections.h
|
||||||
|
include/lion/io.h
|
||||||
|
include/lion/lfnmatch.h
|
||||||
|
include/lion/lgroup.h
|
||||||
|
include/lion/lion.h
|
||||||
|
include/lion/lion_rcsid.h
|
||||||
|
include/lion/lion_types.h
|
||||||
|
include/lion/misc.h
|
||||||
|
include/lion/pipe.h
|
||||||
|
include/lion/sockets.h
|
||||||
|
include/lion/timers.h
|
||||||
|
include/lion/tls.h
|
||||||
|
include/lion/udp.h
|
||||||
|
include/lion/zlib.h
|
||||||
|
@dirrm include/lion
|
||||||
|
lib/liblion.a
|
Loading…
Reference in a new issue