mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
5fbb6a0053
PR: 61074 Submitted by: Ports Fury
30 lines
627 B
Makefile
30 lines
627 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: libFormat
|
|
# Date created: Jun 19, 2001
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libformat
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://kingleo.pages.at/development/cpp/
|
|
DISTNAME= ${PORTNAME:S/^lib//}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= C++ library that supports printf style like format printing
|
|
|
|
MAKEFILE= ${FILESDIR}/Makefile.lib
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ChangeLog README testformat.cpp
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|