add librfc822 1.0
A complete parser for RFC822 addresses
This commit is contained in:
parent
86b20d20ac
commit
fc85d1f60a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57862
6 changed files with 51 additions and 0 deletions
|
@ -81,6 +81,7 @@
|
|||
SUBDIR += liamail
|
||||
SUBDIR += libesmtp
|
||||
SUBDIR += liboe
|
||||
SUBDIR += librfc822
|
||||
SUBDIR += listar
|
||||
SUBDIR += listmanager
|
||||
SUBDIR += lmtp2nntp
|
||||
|
|
24
mail/librfc822/Makefile
Normal file
24
mail/librfc822/Makefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
# ex:ts=8
|
||||
# Ports collection makefile for: librfc822
|
||||
# Date created: Apr 19, 2002
|
||||
# Whom: ijliao
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= librfc822
|
||||
PORTVERSION= 1.0
|
||||
CATEGORIES= mail
|
||||
MASTER_SITES= http://cryp.to/librfc822/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
|
||||
do-install:
|
||||
${INSTALL_DATA} ${WRKSRC}/rfc822.hh ${PREFIX}/include
|
||||
${INSTALL_DATA} ${WRKSRC}/librfc822.a ${PREFIX}/lib
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
${CP} ${WRKSRC}/documentation/* ${DOCSDIR}
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
mail/librfc822/distinfo
Normal file
1
mail/librfc822/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (librfc822-1.0.tar.gz) = 4dca8e2b6fe3ffaabc5f3b9c493e57c6
|
1
mail/librfc822/pkg-comment
Normal file
1
mail/librfc822/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A complete parser for RFC822 addresses
|
10
mail/librfc822/pkg-descr
Normal file
10
mail/librfc822/pkg-descr
Normal file
|
@ -0,0 +1,10 @@
|
|||
librfc822 provides application developers with a complete parser for RFC822
|
||||
addresses. Not only can you use the library to verify that RFC822 addresses
|
||||
are syntactically correct, you can also have an address split up into its
|
||||
semantic parts, what is needed when deciding where to route an address to, etc.
|
||||
|
||||
What is quite unique is that librfc822 does indeed parse all address types
|
||||
allowed by the standard. That includes such weird things as "address groups"
|
||||
or addresses with whitespace and comments throw in.
|
||||
|
||||
WWW: http://cryp.to/librfc822/
|
14
mail/librfc822/pkg-plist
Normal file
14
mail/librfc822/pkg-plist
Normal file
|
@ -0,0 +1,14 @@
|
|||
include/rfc822.hh
|
||||
lib/librfc822.a
|
||||
%%PORTDOCS%%share/doc/librfc822/Makefile
|
||||
%%PORTDOCS%%share/doc/librfc822/index.sgml
|
||||
%%PORTDOCS%%share/doc/librfc822/peti.css
|
||||
%%PORTDOCS%%share/doc/librfc822/peti.dsl
|
||||
%%PORTDOCS%%share/doc/librfc822/purpose.inc
|
||||
%%PORTDOCS%%share/doc/librfc822/readme.html
|
||||
%%PORTDOCS%%share/doc/librfc822/readme.sgml
|
||||
%%PORTDOCS%%share/doc/librfc822/readme.txt
|
||||
%%PORTDOCS%%share/doc/librfc822/user-manual.html
|
||||
%%PORTDOCS%%share/doc/librfc822/user-manual.pdf
|
||||
%%PORTDOCS%%share/doc/librfc822/user-manual.sgml
|
||||
%%PORTDOCS%%@dirrm share/doc/librfc822
|
Loading…
Reference in a new issue