1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00

Initial import of deheader 0.6

Deheader analyzes C and C++ files to determine which header inclusions
can be removed while still allowing them to compile.
This commit is contained in:
Kevin Lo 2011-03-12 08:34:39 +00:00
parent ff342580ac
commit 8d5d50e5e2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=270728
4 changed files with 40 additions and 0 deletions

View File

@ -294,6 +294,7 @@
SUBDIR += dcmtk
SUBDIR += dconf
SUBDIR += ddd
SUBDIR += deheader
SUBDIR += deputy
SUBDIR += desktop-file-utils
SUBDIR += dev86

30
devel/deheader/Makefile Normal file
View File

@ -0,0 +1,30 @@
# New ports collection makefile for: deheader
# Date Created: 12 March 2011
# Whom: Kevin Lo <kevlo@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= deheader
PORTVERSION= 0.6
CATEGORIES= devel
MASTER_SITES= http://www.catb.org/esr/deheader/
MAINTAINER= kevlo@FreeBSD.org
COMMENT= A tool to find unnecesary includes in C/C++ files
LICENSE= BSD
LICENSE_FILE= ${WRKSRC}/COPYING
NO_BUILD= yes
USE_PYTHON= yes
MAN1= deheader.1
PLIST_FILES= bin/deheader
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/deheader ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/deheader.1 ${PREFIX}/man/man1
.include <bsd.port.mk>

2
devel/deheader/distinfo Normal file
View File

@ -0,0 +1,2 @@
SHA256 (deheader-0.6.tar.gz) = 643040b241eb47504624e9c2cc4c0f8865bf0ee2b9317ee36ee9195c75e17d4b
SIZE (deheader-0.6.tar.gz) = 22344

7
devel/deheader/pkg-descr Normal file
View File

@ -0,0 +1,7 @@
Deheader analyzes C and C++ files to determine which header inclusions
can be removed while still allowing them to compile. This may result in
substantial improvements in compilation time, especially on large C++
projects; it also sometimes exposes dependencies and cohesions of which
developers were unaware.
WWW: http://www.catb.org/esr/deheader/