1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-01 05:45:45 +00:00

A tool to indent the C preprocessor directives to reflect their

nesting and ensure that there is exactly one space character between
each #if, #elif, #define directive and the following token.

PR:		ports/105184
Submitted by:	trasz <trasz@pin.if.uz.zgora.pl>
This commit is contained in:
Martin Wilke 2006-11-08 23:12:55 +00:00
parent 76cd4a8426
commit 97bacd9615
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=176878
4 changed files with 40 additions and 0 deletions

View File

@ -171,6 +171,7 @@
SUBDIR += cook
SUBDIR += cpan-upload
SUBDIR += cppadvio
SUBDIR += cppi
SUBDIR += cppunit
SUBDIR += cproto
SUBDIR += crossgo32

30
devel/cppi/Makefile Normal file
View File

@ -0,0 +1,30 @@
# New ports collection makefile for: cppi
# Date created: 2006-11-05
# Whom: trasz <trasz@pin.if.uz.zgora.pl>
#
# $FreeBSD$
#
PORTNAME= cppi
PORTVERSION= 1.12
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU}
MASTER_SITE_SUBDIR= coreutils
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= trasz@pin.if.uz.zgora.pl
COMMENT= A tool to indent the C preprocessor directives
USE_GPG?= yes
SIG_FILES= ${DISTNAME}${EXTRACT_SUFX}.sig
USE_BZIP2= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --mandir=${PREFIX}/man
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LIBS="-L${LOCALBASE}/lib"
PLIST_FILES= bin/cppi
MAN1= cppi.1
.include <bsd.port.mk>

6
devel/cppi/distinfo Normal file
View File

@ -0,0 +1,6 @@
MD5 (cppi-1.12.tar.bz2) = 3a9b8fa70cae2fb36b089a5f2ef4326f
SHA256 (cppi-1.12.tar.bz2) = 8cde71a6f9c2555969deb2a691ca2b5b67b350a3ce15025e38754cee247c1f78
SIZE (cppi-1.12.tar.bz2) = 272977
MD5 (cppi-1.12.tar.bz2.sig) = 59729a91216b131c06c1e867883e42f8
SHA256 (cppi-1.12.tar.bz2.sig) = 6cdd7869f3742e502adf9f3fe5ade720e0d8afb17328d6511bb3b9f691658576
SIZE (cppi-1.12.tar.bz2.sig) = 189

3
devel/cppi/pkg-descr Normal file
View File

@ -0,0 +1,3 @@
A tool to indent the C preprocessor directives to reflect their
nesting and ensure that there is exactly one space character between
each #if, #elif, #define directive and the following token.