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

(-)Makefile (-3 / +2 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	Inline-CPP
8
PORTNAME=	Inline-CPP
9
PORTVERSION=	0.23
9
PORTVERSION=	0.24
10
CATEGORIES=	devel perl5
10
CATEGORIES=	devel perl5
11
MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
11
MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
12
MASTER_SITE_SUBDIR=	Inline
12
MASTER_SITE_SUBDIR=	Inline
Lines 15-27 Link Here
15
MAINTAINER=	skv@protey.ru
15
MAINTAINER=	skv@protey.ru
16
COMMENT=	Write Perl subroutines and classes in C++
16
COMMENT=	Write Perl subroutines and classes in C++
17
17
18
BUILD_DEPENDS=	${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/Inline.pm:${PORTSDIR}/devel/p5-Inline
18
BUILD_DEPENDS=	${SITE_PERL}/Inline.pm:${PORTSDIR}/devel/p5-Inline
19
RUN_DEPENDS=	${BUILD_DEPENDS}
19
RUN_DEPENDS=	${BUILD_DEPENDS}
20
20
21
PERL_CONFIGURE=	yes
21
PERL_CONFIGURE=	yes
22
CONFIGURE_ARGS=	</dev/null
22
CONFIGURE_ARGS=	</dev/null
23
23
24
MANPREFIX=	${PREFIX}/lib/perl5/${PERL_VERSION}
25
MAN3=		Inline::CPP.3
24
MAN3=		Inline::CPP.3
26
25
27
.include <bsd.port.mk>
26
.include <bsd.port.mk>
(-)distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (Inline-CPP-0.23.tar.gz) = 2d7826f5224836f200751fc82ec165de
1
MD5 (Inline-CPP-0.24.tar.gz) = 7d7b51fef2ecb2082257dcc585621a96
(-)pkg-plist (-8 / +8 lines)
Lines 1-8 Link Here
1
lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/CPP/.packlist
1
%%SITE_PERL%%/Inline/CPP.pm
2
lib/perl5/site_perl/%%PERL_VER%%/Inline/CPP.pm
2
%%SITE_PERL%%/Inline/CPP.pod
3
lib/perl5/site_perl/%%PERL_VER%%/Inline/CPP.pod
3
%%SITE_PERL%%/Inline/CPP/grammar.pm
4
lib/perl5/site_perl/%%PERL_VER%%/Inline/CPP/grammar.pm
4
%%SITE_PERL%%/%%PERL_ARCH%%/auto/Inline/CPP/.packlist
5
@dirrm lib/perl5/site_perl/%%PERL_VER%%/Inline/CPP
5
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/Inline/CPP
6
@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline/CPP
6
@dirrm %%SITE_PERL%%/Inline/CPP
7
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/Inline 2>/dev/null || true
7
@unexec rmdir %D/%%SITE_PERL%%/%%PERL_ARCH%%/auto/Inline 2>/dev/null || true
8
@unexec rmdir %D/lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Inline 2>/dev/null || true
8
@unexec rmdir %D/%%SITE_PERL%%/Inline 2>/dev/null || true
(-)patch-Makefile.PL (+23 lines)
Added Link Here
1
--- Makefile.PL.orig	Thu May 30 04:29:03 2002
2
+++ Makefile.PL	Tue May 13 12:59:02 2003
3
@@ -48,12 +48,14 @@
4
     $libs_guess = '-lstdc++';
5
 }
6
 
7
-print "This will configure and build Inline::C++.\n";
8
-
9
-my $cpp_compiler = prompt("What default C++ compiler would you like to use?",
10
-			  $cc_guess);
11
-my $libs = prompt("What default libraries would you like to include?",
12
-		  $libs_guess);
13
+#print "This will configure and build Inline::C++.\n";
14
+#
15
+#my $cpp_compiler = prompt("What default C++ compiler would you like to use?",
16
+#			  $cc_guess);
17
+#my $libs = prompt("What default libraries would you like to include?",
18
+#		  $libs_guess);
19
+$cpp_compiler = $cc_guess;
20
+$libs = $libs_guess;
21
 
22
 # Apply the defaults:
23
 open CPP, "CPP.pm";

Return to bug 52164