add duplo 0.2.0

Find duplicated code blocks in large C/C++/Java/C#/VB.Net systems
This commit is contained in:
Ying-Chieh Liao 2006-10-05 02:32:22 +00:00
parent ae74be354b
commit fdbe2abfd1
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=174502
4 changed files with 42 additions and 0 deletions

View File

@ -242,6 +242,7 @@
SUBDIR += dprog
SUBDIR += drpython
SUBDIR += dumb
SUBDIR += duplo
SUBDIR += dwarfdump
SUBDIR += e4graph
SUBDIR += ebnf2yacc

34
devel/duplo/Makefile Normal file
View File

@ -0,0 +1,34 @@
# ex:ts=8
# Ports collection makefile for: duplo
# Date created: Oct 5, 2006
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= duplo
PORTVERSION= 0.2.0
CATEGORIES= devel
MASTER_SITES= SF
DISTNAME= ${PORTNAME}_${PORTVERSION}_src
MAINTAINER= ijliao@FreeBSD.org
COMMENT= Find duplicated code blocks in large C/C++/Java/C#/VB.Net systems
USE_GMAKE= yes
PLIST_FILES= bin/duplo %%DATADIR%%/duplo.xsl
PLIST_DIRS= %%DATADIR%%
post-patch:
@${REINPLACE_CMD} -e "s,^CC,#CC," \
-e "s,^CXXFLAGS,#CXXFLAGS," \
-e "s,[$$]{CC},$$\{CXX\}," \
${WRKSRC}/${MAKEFILE}
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/duplo ${PREFIX}/bin
@${MKDIR} ${DATADIR}
@${INSTALL_DATA} ${WRKSRC}/duplo.xsl ${DATADIR}
.include <bsd.port.mk>

3
devel/duplo/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (duplo_0.2.0_src.tar.gz) = 1eea4c2b761ee7feab501148cc850392
SHA256 (duplo_0.2.0_src.tar.gz) = 8862437ee6e46b793bd43f13727024732f719823a74559d97097845948825bd9
SIZE (duplo_0.2.0_src.tar.gz) = 22246

4
devel/duplo/pkg-descr Normal file
View File

@ -0,0 +1,4 @@
Duplicated source code blocks can harm maintainability of software systems.
Duplo is a tool to find duplicated code blocks in large C/C++/Java systems.
WWW: http://duplo.giants.ch/