mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
b21aa0db05
- portlint(1) [1] - Respect NOPORTDOCS [2] PR: ports/94321 [1] Submitted by: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com> [1] Reworked by: garga [2] Approved by: maintainer timeout (15 days)
37 lines
716 B
Makefile
37 lines
716 B
Makefile
# New ports collection makefile for: ctpp
|
|
# Date created: 19 July 2004
|
|
# Whom: shetuhin@corp.mail.ru (Andrei V. Shetuhin)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ctpp
|
|
PORTVERSION= 1.7.5
|
|
CATEGORIES= textproc devel
|
|
MASTER_SITES= http://www.reki.ru/products/ctpp/download/
|
|
|
|
MAINTAINER= shetuhin@corp.mail.ru
|
|
COMMENT= C++ library to use templates in C/C++ projects
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.if defined(WITH_CTPP_PERF_TUNING)
|
|
CONFIGURE_ARGS+= --enable-optimization
|
|
.endif
|
|
|
|
.if defined(WITH_CTPP_DEBUG)
|
|
CONFIGURE_ARGS+= --enable-debug
|
|
.endif
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
INSTALL_TARGET= install install-doc
|
|
.endif
|
|
|
|
post-patch:
|
|
@${RM} -f ${WRKSRC}/obj/*.o
|
|
|
|
.include <bsd.port.mk>
|