blob: 7af6ffe1bf893dbf978129553d6af3b2f94e8d92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# New ports collection makefile for: cppi
# Date created: 2006-11-05
# Whom: trasz <trasz@pin.if.uz.zgora.pl>
#
# $FreeBSD$
#
PORTNAME= cppi
PORTVERSION= 1.15
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= johans@FreeBSD.org
COMMENT= A tool to indent the C preprocessor directives
USE_XZ= yes
USE_GETTEXT= yes
GNU_CONFIGURE= yes
CPPFLAGS= -I${LOCALBASE}/include
PLIST_FILES= bin/cppi
MAN1= cppi.1
.ifndef WITHOUT_NLS
USE_GETTEXT= yes
.else
CONFIGURE_ARGS+=--disable-nls
.endif
.include <bsd.port.mk>
|