1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-30 10:38:37 +00:00

Add port devel/egypt:

Egypt is a simple tool for creating call graphs of C programs. Egypt
neither analyzes source code nor lays out graphs. Instead, it leaves
the source code analysis to GCC and the graph layout to Graphviz, both
of which are better at their respective jobs than egypt itself could
ever hope to be. Egypt is simply a very small Perl script that glues
these existing tools together.

WWW: http://www.gson.org/egypt/
Author: Andreas Gustafsson <gson@gson.org>
This commit is contained in:
Andrew Pantyukhin 2007-04-21 14:04:29 +00:00
parent df8cbb6325
commit fb646d0403
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=190543
4 changed files with 35 additions and 0 deletions

View File

@ -265,6 +265,7 @@
SUBDIR += ecgi
SUBDIR += ecos-tools
SUBDIR += eet
SUBDIR += egypt
SUBDIR += eieio
SUBDIR += eieio-emacs20
SUBDIR += eiffelstudio

22
devel/egypt/Makefile Normal file
View File

@ -0,0 +1,22 @@
# New ports collection makefile for: egypt
# Date created: 21 April 2007
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= egypt
PORTVERSION= 1.6
CATEGORIES= devel perl5
MASTER_SITES= http://www.gson.org/egypt/download/ CENKES
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Create call graphs of C programs
USE_PERL5_RUN= yes
PERL_CONFIGURE= yes
MAN1= ${PORTNAME}.1
PLIST_FILES= bin/${PORTNAME} %%SITE_PERL%%/%%PERL_ARCH%%/auto/${PORTNAME}/.packlist
PLIST_DIRS= %%SITE_PERL%%/%%PERL_ARCH%%/auto/${PORTNAME}
.include <bsd.port.mk>

3
devel/egypt/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (egypt-1.6.tar.gz) = 59ecda6fd74f387b90327066b026bbf2
SHA256 (egypt-1.6.tar.gz) = aef3a959a20d6271d4ef03a7e6b79cea3c894e8149e2985ff82a43c303720a26
SIZE (egypt-1.6.tar.gz) = 3426

9
devel/egypt/pkg-descr Normal file
View File

@ -0,0 +1,9 @@
Egypt is a simple tool for creating call graphs of C programs. Egypt
neither analyzes source code nor lays out graphs. Instead, it leaves
the source code analysis to GCC and the graph layout to Graphviz, both
of which are better at their respective jobs than egypt itself could
ever hope to be. Egypt is simply a very small Perl script that glues
these existing tools together.
WWW: http://www.gson.org/egypt/
Author: Andreas Gustafsson <gson@gson.org>