head	1.13;
access;
symbols
	RELEASE_8_3_0:1.10
	RELEASE_9_0_0:1.8
	RELEASE_7_4_0:1.7
	RELEASE_8_2_0:1.7
	RELEASE_6_EOL:1.7
	RELEASE_8_1_0:1.6
	RELEASE_7_3_0:1.6
	RELEASE_8_0_0:1.4
	RELEASE_7_2_0:1.4
	RELEASE_7_1_0:1.4
	RELEASE_6_4_0:1.4
	RELEASE_5_EOL:1.4
	RELEASE_7_0_0:1.2
	RELEASE_6_3_0:1.2
	PRE_XORG_7:1.1
	RELEASE_4_EOL:1.1
	RELEASE_6_2_0:1.1;
locks; strict;
comment	@# @;


1.13
date	2012.11.17.06.01.10;	author svnexp;	state Exp;
branches;
next	1.12;

1.12
date	2012.04.20.19.04.02;	author sunpoet;	state Exp;
branches;
next	1.11;

1.11
date	2012.04.19.18.35.54;	author sunpoet;	state Exp;
branches;
next	1.10;

1.10
date	2012.03.13.16.15.19;	author pgollucci;	state Exp;
branches;
next	1.9;

1.9
date	2012.03.08.18.45.21;	author pgollucci;	state Exp;
branches;
next	1.8;

1.8
date	2011.09.17.06.50.13;	author sunpoet;	state Exp;
branches;
next	1.7;

1.7
date	2010.09.21.16.08.10;	author mm;	state Exp;
branches;
next	1.6;

1.6
date	2010.01.26.15.01.08;	author kuriyama;	state Exp;
branches;
next	1.5;

1.5
date	2009.10.23.00.30.05;	author leeym;	state Exp;
branches;
next	1.4;

1.4
date	2008.04.29.05.26.59;	author linimon;	state Exp;
branches;
next	1.3;

1.3
date	2008.04.17.14.28.00;	author araujo;	state Exp;
branches;
next	1.2;

1.2
date	2007.09.08.01.03.52;	author linimon;	state Exp;
branches;
next	1.1;

1.1
date	2006.05.22.00.52.28;	author aaron;	state Exp;
branches;
next	;


desc
@@


1.13
log
@Switch exporter over
@
text
@# New ports collection makefile for:	Authen-Simple
# Date created:				21 May 2006
# Whom:					Aaron Dalton <aaron@@FreeBSD.org>
#
# $FreeBSD: head/security/p5-Authen-Simple/Makefile 300897 2012-07-14 14:29:18Z beat $
#

PORTNAME=	Authen-Simple
PORTVERSION=	0.5
CATEGORIES=	security perl5
MASTER_SITES=	CPAN
PKGNAMEPREFIX=	p5-

MAINTAINER=	sunpoet@@FreeBSD.org
COMMENT=	Simple authentication framework

BUILD_DEPENDS=	p5-Class-Accessor>=0:${PORTSDIR}/devel/p5-Class-Accessor \
		p5-Class-Data-Inheritable>=0:${PORTSDIR}/devel/p5-Class-Data-Inheritable \
		p5-Crypt-PasswdMD5>=0:${PORTSDIR}/security/p5-Crypt-PasswdMD5 \
		p5-Params-Validate>=0:${PORTSDIR}/devel/p5-Params-Validate
RUN_DEPENDS:=	${BUILD_DEPENDS}

PERL_CONFIGURE=	yes

MAN3=		Authen::Simple.3 \
		Authen::Simple::Adapter.3 \
		Authen::Simple::Apache.3 \
		Authen::Simple::Log.3 \
		Authen::Simple::Password.3

.include <bsd.port.pre.mk>

.if ${PERL_LEVEL} < 501000
BUILD_DEPENDS+=	p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA
RUN_DEPENDS+=	p5-Digest-SHA>=0:${PORTSDIR}/security/p5-Digest-SHA
.endif

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


1.12
log
@- Update to 0.5
- Take maintainership

Changes:	http://search.cpan.org/dist/Authen-Simple/Changes
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.11
log
@- Cleanup Makefile
- Cosmetic change
@
text
@d9 1
a9 2
PORTVERSION=	0.4
PORTREVISION=	2
d14 1
a14 1
MAINTAINER=	ports@@FreeBSD.org
d23 1
a23 1
PERL_MODBUILD=	yes
d25 5
a29 5
MAN3=	Authen::Simple.3 \
	Authen::Simple::Adapter.3 \
	Authen::Simple::Apache.3 \
	Authen::Simple::Log.3 \
	Authen::Simple::Password.3
@


1.10
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
@d18 3
a20 3
RUN_DEPENDS=	${SITE_PERL}/Class/Accessor/Fast.pm:${PORTSDIR}/devel/p5-Class-Accessor \
		${SITE_PERL}/Class/Data/Inheritable.pm:${PORTSDIR}/devel/p5-Class-Data-Inheritable \
		${SITE_PERL}/Crypt/PasswdMD5.pm:${PORTSDIR}/security/p5-Crypt-PasswdMD5 \
d22 3
a24 1
BUILD_DEPENDS=	${RUN_DEPENDS}
a31 2
PERL_MODBUILD=	yes

d35 2
a36 1
RUN_DEPENDS+=	p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA
@


1.9
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
@d32 7
a38 1
.include <bsd.port.mk>
@


1.8
log
@- Change PERL_MODBUILD to "yes" for all values less than or equal to 5.8.0+

With hat:	perl
@
text
@d32 1
a32 7
.include <bsd.port.pre.mk>

.if ${PERL_LEVEL} < 501000
RUN_DEPENDS+=	p5-Digest-SHA>=5.47:${PORTSDIR}/security/p5-Digest-SHA
.endif

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


1.7
log
@Explicitly depend on p5-Digest-MD5 only if PERL_LEVEL < 500703
Explicitly depend on p5-Digest-SHA only if PERL_LEVEL < 501000
@
text
@d30 1
a30 1
PERL_MODBUILD=	5.8.0+
@


1.6
log
@- Remove unneeded dependencies which is in perl-5.8.9 dist
  (part 8).

Approved by:	portmgr (itetcu)
@
text
@d10 1
a10 1
PORTREVISION=	1
d18 1
a18 1
BUILD_DEPENDS=	${SITE_PERL}/Class/Accessor/Fast.pm:${PORTSDIR}/devel/p5-Class-Accessor \
a20 1
		${SITE_PERL}/${PERL_ARCH}/Digest/SHA.pm:${PORTSDIR}/security/p5-Digest-SHA \
d22 1
a22 1
RUN_DEPENDS=	${BUILD_DEPENDS}
d32 7
a38 1
.include <bsd.port.mk>
@


1.5
log
@- replace ${SITE_PERL}/${PERL_ARCH}/Params/Validate.pm with p5-Params-Validate>=0 since it changed the file path.
- portlint

PR:		follow-up to ports/139837
Submitted by:	Gea-Suan Lin <gslin at gslin.org>
@
text
@d10 1
a21 1
		${SITE_PERL}/${PERL_ARCH}/MIME/Base64.pm:${PORTSDIR}/converters/p5-MIME-Base64 \
@


1.4
log
@Reset aaron's port maintainerships due to many maintainer-timeouts.
@
text
@d22 1
a22 1
		${SITE_PERL}/${PERL_ARCH}/Params/Validate.pm:${PORTSDIR}/devel/p5-Params-Validate
@


1.3
log
@- Take advantage of CPAN macro from bsd.sites.mk, change ${MASTER_SITE_PERL_CPAN} to CPAN.

PR:		ports/122674
Submitted by:	Philip M. Gollucci <pgollucci@@p6m7g8.com>
Reworked by:	araujo (myself)
Approved by:	portmgr (pav)
@
text
@d14 1
a14 1
MAINTAINER=	aaron@@FreeBSD.org
@


1.2
log
@Welcome bsd.perl.mk.  Add support for constructs such as USE_PERL5=5.8.0+.
Drop support for antique perl.

Work done by:	gabor
Sponsored by:	Google Summer of Code 2007
Hat:		portmgr
@
text
@d11 1
a11 2
MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR=	Authen
@


1.1
log
@Adding port security/p5-Authen-Simple, a consistent and simple framework for authentication.

Approved by:	tobez (implicit)
@
text
@d32 1
a32 1
PERL_MODBUILD=	yes
d34 1
a34 7
.include <bsd.port.pre.mk>

.if ${PERL_LEVEL} < 500800
IGNORE=	requires at least Perl 5.8 due to dependencies.  Please install lang/perl5.8 and try again
.endif

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

