head	1.9;
access;
symbols
	RELEASE_8_3_0:1.6
	RELEASE_9_0_0:1.4
	RELEASE_7_4_0:1.3
	RELEASE_8_2_0:1.3
	RELEASE_6_EOL:1.3
	RELEASE_8_1_0:1.3
	RELEASE_7_3_0:1.3
	RELEASE_8_0_0:1.3
	RELEASE_7_2_0:1.3
	RELEASE_7_1_0:1.2
	RELEASE_6_4_0:1.2;
locks; strict;
comment	@# @;


1.9
date	2012.12.17.12.28.02;	author svnexp;	state Exp;
branches;
next	1.8;

1.8
date	2012.11.17.06.02.51;	author svnexp;	state Exp;
branches;
next	1.7;

1.7
date	2012.06.05.07.44.02;	author az;	state Exp;
branches;
next	1.6;

1.6
date	2012.03.13.16.15.32;	author pgollucci;	state Exp;
branches;
next	1.5;

1.5
date	2012.03.08.18.45.34;	author pgollucci;	state Exp;
branches;
next	1.4;

1.4
date	2011.06.20.09.22.11;	author az;	state Exp;
branches;
next	1.3;

1.3
date	2008.11.20.11.06.24;	author koitsu;	state Exp;
branches;
next	1.2;

1.2
date	2008.09.01.11.40.46;	author koitsu;	state Exp;
branches;
next	1.1;

1.1
date	2008.09.01.10.21.53;	author koitsu;	state Exp;
branches;
next	;


desc
@@


1.9
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/309086
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ## r309086 | az | 2012-12-17 12:24:18 +0000 (Mon, 17 Dec 2012) | 3 lines
## SVN ##
## SVN ## Cleanup supporting perl version 5.8 and 5.10,
## SVN ## lang/perl5.8 and lang/5.10 will be removed from ports tree soon.
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ##
@
text
@# New ports collection makefile for:	p5-Markup-Perl
# Date created:				1 September 2008
# Whom:	      				Jeremy Chadwick <koitsu@@FreeBSD.org>
#
# $FreeBSD: head/www/p5-Markup-Perl/Makefile 309086 2012-12-17 12:24:18Z az $
#

PORTNAME=	Markup-Perl
PORTVERSION=	0.5
CATEGORIES=	www perl5
MASTER_SITES=	CPAN
MASTER_SITE_SUBDIR=	CPAN:MMATHEWS
PKGNAMEPREFIX=	p5-
DISTNAME=	Markup-Perl-${PORTVERSION}

MAINTAINER=	perl@@FreeBSD.org
COMMENT=	Support perl code inside CGI scripts using simple tags

USE_PERL5=	yes
PERL_CONFIGURE=	yes

MAN3=		Markup::Perl.3

.include <bsd.port.mk>
@


1.8
log
@Switch exporter over
@
text
@d5 1
a5 1
# $FreeBSD: head/www/p5-Markup-Perl/Makefile 300897 2012-07-14 14:29:18Z beat $
d24 1
a24 7
.include <bsd.port.pre.mk>

.if ${PERL_LEVEL} < 500805
RUN_DEPENDS=	p5-CGI.pm>=0:${PORTSDIR}/www/p5-CGI.pm
.endif

.include <bsd.port.post.mk>
@


1.7
log
@- Remove SITE_PERL from *_DEPENDS
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.6
log
@- Revert ports/165605 as requested by portmgr@@

Note: devel/p5-B-Size and devel/p5-Devel-Arena
where intentionally not restored.

PR:             ports/165605
Approved by:    portmgr (bapt)
Feature safe:   yes (I sure hope so)
@
text
@d27 1
a27 1
RUN_DEPENDS=	${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm
@


1.5
log
@- Remove ports that only work with < perl 5.12 (devel/p5-B-Size, devel/p5-Devel-Arena)
- Remove conditionals for PERL_LEVEL < 501200
- Remove regression-test targets b/c this will be centralized in Mk/bsd.perl.mk
- Other minor cleanups
  RUN_DEPENDS = ${BUILD_DEPENDS} -> RUN_DEPENDS:= ${BUILD_DEPENDS}

PR:             ports/165605
Submitted by:   pgollucci (myself)
Approved by:    portmgr (linimon)
Exp Run by:     linimon
Tested by:      make index
@
text
@d24 7
a30 1
.include <bsd.port.mk>
@


1.4
log
@- Replace ../../authors in MASTER_SITE_SUBDIR with CPAN:CPANID macro.
  See http://wiki.freebsd.org/Perl for details.
- Change maintainership from ports@@ to perl@@ for ports in this changeset.
- Remove MD5 checksum
@
text
@d24 1
a24 7
.include <bsd.port.pre.mk>

.if ${PERL_LEVEL} < 500805
RUN_DEPENDS=	${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm
.endif

.include <bsd.port.post.mk>
@


1.3
log
@Maintainer moved to ports@@FreeBSD.org.
@
text
@d12 1
a12 1
MASTER_SITE_SUBDIR=	../../authors/id/M/MM/MMATHEWS
d16 1
a16 1
MAINTAINER=	ports@@FreeBSD.org
@


1.2
log
@- Fixup: only require p5-CGI.pm if perl version is < 5.8.5.  Earlier
  perl releases do include CGI.pm, but that version is fairly buggy.
@
text
@d16 1
a16 1
MAINTAINER=	koitsu@@FreeBSD.org
@


1.1
log
@This perl module allows the embedding of perl code within CGI scripts
using simple tags, <perl> and </perl>, to begin and end perl parsing.
Once the perl module is included via "use", all text gets output to
stdout except for code within the above tags.

Despite what's in the CPAN README, this module does not require
Filter::Simple, only CGI.pm.

WWW: http://search.cpan.org/~mmathews/Markup-Perl/

Tindy testing by:	itetcu
@
text
@a18 2
RUN_DEPENDS=	${SITE_PERL}/CGI.pm:${PORTSDIR}/www/p5-CGI.pm

d24 7
a30 1
.include <bsd.port.mk>
@

