View | Details | Raw Unified | Return to bug 189337
Collapse All | Expand All

(-)./Makefile (-1 / +4 lines)
Lines 8-16 Link Here
8
MASTER_SITES=	CPAN
8
MASTER_SITES=	CPAN
9
PKGNAMEPREFIX=	p5-
9
PKGNAMEPREFIX=	p5-
10
10
11
MAINTAINER=	ports@FreeBSD.org
11
MAINTAINER=	5u623l20@gmail.com
12
COMMENT=	Easy tool to create social network maps
12
COMMENT=	Easy tool to create social network maps
13
13
14
LICENSE=	ART10 GPLv1
15
LICENSE_COMB=	dual
16
14
BUILD_DEPENDS=	p5-Spiffy>=0:${PORTSDIR}/devel/p5-Spiffy \
17
BUILD_DEPENDS=	p5-Spiffy>=0:${PORTSDIR}/devel/p5-Spiffy \
15
		p5-Graph>=0:${PORTSDIR}/math/p5-Graph \
18
		p5-Graph>=0:${PORTSDIR}/math/p5-Graph \
16
		p5-Graph-Writer-GraphViz>=0:${PORTSDIR}/graphics/p5-Graph-Writer-GraphViz \
19
		p5-Graph-Writer-GraphViz>=0:${PORTSDIR}/graphics/p5-Graph-Writer-GraphViz \
(-)./pkg-descr (-16 lines)
Lines 6-25 Link Here
6
arrayref'. The key to this hash is the name of relation, and the value of 
6
arrayref'. The key to this hash is the name of relation, and the value of 
7
the hash is a list of identities involved in this relation.
7
the hash is a list of identities involved in this relation.
8
8
9
Take the synopsis for an example, the structure:
10
11
    my $relation = {
12
        'WorkWith' => [qw/Marry Rose/],
13
        'ChatWith' => [qw/Marry Peacock/],
14
        'DanceWith' => [qw/Rose Joan/],
15
        'HackWith' => [qw/Gugod Autrijus/],
16
    };
17
18
Defines 4 issues which have common people involves in, the relation 
19
'WorkWith' involves Marry and Rose, and the relation 'ChatWith' involves 
20
Marry and Peacock. By this 2 relations, we say that Marry is directly 
21
connected to Rose and Peacock, and Rose and Peacock are connected to each 
22
other indirectly, with degree of separation 1. Likewise, Marry and Joan 
23
are connected to each other with degree of separation 2.
24
25
WWW: http://search.cpan.org/dist/Graph-SocialMap/
9
WWW: http://search.cpan.org/dist/Graph-SocialMap/

Return to bug 189337