blob: 955a1f3a0a5dc258390ab40930f72c3f91410f78 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# Created by: Gea-Suan Lin <gslin@gslin.org>
# $FreeBSD$
PORTNAME= App-GitGot
PORTVERSION= 1.08
CATEGORIES= devel perl5
MASTER_SITES= CPAN
MASTER_SITE_SUBDIR= CPAN:GENEHACK
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Tool to make it easier to manage multiple git repositories
LICENSE= ART10 GPLv1
LICENSE_COMB= dual
BUILD_DEPENDS= p5-Config-INI>=0:${PORTSDIR}/devel/p5-Config-INI \
p5-Data-Dumper>=0:${PORTSDIR}/devel/p5-Data-Dumper \
p5-File-Slurp>=0:${PORTSDIR}/devel/p5-File-Slurp \
p5-Git-Wrapper>=0.014:${PORTSDIR}/devel/p5-Git-Wrapper \
p5-Mouse>=0:${PORTSDIR}/devel/p5-Mouse \
p5-MouseX-App-Cmd>=0:${PORTSDIR}/devel/p5-MouseX-App-Cmd \
p5-MouseX-NativeTraits>=0:${PORTSDIR}/devel/p5-MouseX-NativeTraits \
p5-Net-GitHub>=0:${PORTSDIR}/net/p5-Net-GitHub \
p5-Path-Class>=0:${PORTSDIR}/devel/p5-Path-Class \
p5-Term-ANSIColor>=0:${PORTSDIR}/devel/p5-Term-ANSIColor \
p5-Test-MockObject>=0:${PORTSDIR}/devel/p5-Test-MockObject \
p5-Try-Tiny>=0:${PORTSDIR}/lang/p5-Try-Tiny \
p5-YAML>=0:${PORTSDIR}/textproc/p5-YAML \
p5-namespace-autoclean>=0:${PORTSDIR}/devel/p5-namespace-autoclean
RUN_DEPENDS:= ${BUILD_DEPENDS}
TEST_DEPENDS= p5-Test-Class>=0:${PORTSDIR}/devel/p5-Test-Class \
p5-Test-Exception>=0:${PORTSDIR}/devel/p5-Test-Exception \
p5-Test-File>=0:${PORTSDIR}/devel/p5-Test-File \
p5-Test-Kwalitee>=0:${PORTSDIR}/devel/p5-Test-Kwalitee \
p5-Sort-Versions>=0:${PORTSDIR}/devel/p5-Sort-Versions
USES= perl5
USE_PERL5= configure
MAN1= got.1 \
got-complete.1
MAN3= App::GitGot.3 \
App::GitGot::Command.3 \
App::GitGot::Command::add.3 \
App::GitGot::Command::chdir.3 \
App::GitGot::Command::clone.3 \
App::GitGot::Command::fork.3 \
App::GitGot::Command::gc.3 \
App::GitGot::Command::list.3 \
App::GitGot::Command::move.3 \
App::GitGot::Command::mux.3 \
App::GitGot::Command::push.3 \
App::GitGot::Command::remove.3 \
App::GitGot::Command::status.3 \
App::GitGot::Command::this.3 \
App::GitGot::Command::update.3 \
App::GitGot::Command::update_status.3 \
App::GitGot::Command::version.3 \
App::GitGot::Outputter::dark.3 \
App::GitGot::Outputter.3 \
App::GitGot::Outputter::light.3 \
App::GitGot::Repo.3 \
App::GitGot::Repo::Git.3
.include <bsd.port.mk>
|