mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
b13910e172
PR: ports/121333 Submitted by: Ismail YENIGUL <ismail enderunix.org> (maintainer)
32 lines
714 B
Makefile
32 lines
714 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: librfc822
|
|
# Date created: Apr 19, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= librfc822
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= mail devel
|
|
MASTER_SITES= http://cryp.to/librfc2822/
|
|
|
|
MAINTAINER= ismail@EnderUNIX.org
|
|
COMMENT= A complete parser for RFC822 addresses
|
|
|
|
GNU_CONFIGURE= YES
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
PORTDOCS= user-manual.html
|
|
PLIST_FILES= include/rfc822.hpp lib/librfc822.a
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/rfc822.hpp ${PREFIX}/include
|
|
${INSTALL_DATA} ${WRKSRC}/librfc822.a ${PREFIX}/lib
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|