head	1.13;
access;
symbols
	RELEASE_8_3_0:1.11
	RELEASE_9_0_0:1.10
	RELEASE_7_4_0:1.9
	RELEASE_8_2_0:1.9
	RELEASE_6_EOL:1.9
	RELEASE_8_1_0:1.8
	RELEASE_7_3_0:1.5
	RELEASE_8_0_0:1.5
	RELEASE_7_2_0:1.5
	RELEASE_7_1_0:1.5
	RELEASE_6_4_0:1.5
	RELEASE_5_EOL:1.5;
locks; strict;
comment	@# @;


1.13
date	2013.03.04.16.08.00;	author svnexp;	state dead;
branches;
next	1.12;

1.12
date	2012.11.17.05.54.20;	author svnexp;	state Exp;
branches;
next	1.11;

1.11
date	2012.01.09.04.01.14;	author eadler;	state Exp;
branches;
next	1.10;

1.10
date	2011.07.20.11.11.33;	author jlaffaye;	state Exp;
branches;
next	1.9;

1.9
date	2010.11.11.09.15.22;	author ehaupt;	state Exp;
branches;
next	1.8;

1.8
date	2010.06.08.09.01.11;	author ehaupt;	state Exp;
branches;
next	1.7;

1.7
date	2010.06.08.07.31.52;	author gabor;	state Exp;
branches;
next	1.6;

1.6
date	2010.05.31.16.05.23;	author erwin;	state Exp;
branches;
next	1.5;

1.5
date	2008.04.28.22.46.59;	author gabor;	state Exp;
branches;
next	1.4;

1.4
date	2008.04.07.15.57.04;	author gabor;	state Exp;
branches;
next	1.3;

1.3
date	2008.02.13.19.17.53;	author gabor;	state Exp;
branches;
next	1.2;

1.2
date	2008.01.21.23.17.52;	author gabor;	state Exp;
branches;
next	1.1;

1.1
date	2008.01.18.23.11.34;	author gabor;	state Exp;
branches;
next	;


desc
@@


1.13
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/313385
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
@
text
@# New ports collection makefile for:	bsdar
# Date created:				18 Jan 2008
# Whom:					Gabor Kovesdan <gabor@@FreeBSD.org>
#
# $FreeBSD: head/archivers/bsdar/Makefile 300895 2012-07-14 12:56:14Z beat $

PORTNAME=	ar
PORTVERSION=	20080302
CATEGORIES=	archivers
MASTER_SITES=	http://people.freebsd.org/~kaiw/distfiles/
PKGNAMEPREFIX=	bsd-
EXTRACT_SUFX=	.tgz

MAINTAINER=	ports@@FreeBSD.org
COMMENT=	BSD-licensed replacement of the ar utility

WRKSRC=		${WRKDIR}/${PORTNAME}
PLIST_FILES=	bin/ar bin/ranlib
MAN1=		ar.1 ranlib.1

.include <bsd.port.pre.mk>

DEPRECATED=	part of the base system
EXPIRATION_DATE=2013-02-28

.if ${OSVERSION} >= 800022
IGNORE=		bsdar is now part of the base system as /usr/bin/ar
.endif

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/ar ${PREFIX}/bin/ar
	${LN} -s ${PREFIX}/bin/ar ${PREFIX}/bin/ranlib
	${INSTALL_MAN} ${WRKSRC}/ar.1 ${MAN1PREFIX}/man/man1/ar.1
	${INSTALL_MAN} ${WRKSRC}/ar.1 ${MAN1PREFIX}/man/man1/ranlib.1

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


1.12
log
@Switch exporter over
@
text
@@


1.11
log
@- Remove outdated version checks

Reviewed by:	nox
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.10
log
@- Improve IGNORE description
- Set expiration date to 7 EoL

PR:		ports/158068 (based on)
Submitted by:	rodrigo osorio <rodrigo@@bebik.net>
@
text
@a25 4
.if ${OSVERSION} < 700055
IGNORE=		does not compile
.endif

@


1.9
log
@- Mark BROKEN on: ${OSVERSION} < 700055 || ${OSVERSION} >= 801500
- Drop maintainership
@
text
@d23 4
a26 1
.if ${OSVERSION} < 700055 || ${OSVERSION} >= 801500
d30 4
@


1.8
log
@Take maintainership
@
text
@d14 1
a14 1
MAINTAINER=	ehaupt@@FreeBSD.org
d23 1
a23 1
.if ${OSVERSION} < 700055 || ${OSVERSION} >= 900012
@


1.7
log
@- Drop maintainership
@
text
@d14 1
a14 1
MAINTAINER=	ports@@FreeBSD.org
@


1.6
log
@Also mark BROKEN on recent HEAD after the import of lzma.

Submitted by:	pointyhat
@
text
@d14 1
a14 1
MAINTAINER=	gabor@@FreeBSD.org
@


1.5
log
@- Fix fetching

PR:		ports/123176
Submitted by:	kaiw
@
text
@d23 1
a23 1
.if ${OSVERSION} < 700055
@


1.4
log
@- Update to 20080302
@
text
@d10 1
a10 1
MASTER_SITES=	http://web.student.chalmers.se/~kaiw/patch/
@


1.3
log
@- Update to 20080202
- Use INSTALL_MAN instead of INSTALL_DATA to install manpages

PR:		ports/120363
Submitted by:	Felippe de Meirelles Motta <lippemail@@gmail.com>
@
text
@d8 1
a8 1
PORTVERSION=	20080202
@


1.2
log
@- Update to 20080117

Submitted by:	kaiw (via private mail)
@
text
@d8 1
a8 1
PORTVERSION=	20080117
d30 2
a31 2
	${INSTALL_DATA} ${WRKSRC}/ar.1 ${MAN1PREFIX}/man/man1/ar.1
	${INSTALL_DATA} ${WRKSRC}/ar.1 ${MAN1PREFIX}/man/man1/ranlib.1
@


1.1
log
@A BSD-licensed replacement of the ar utility.

Written by:	Kai Wang <kaiw@@FreeBSD.org>
Sponsored by:	Google Summer of Code 2007
@
text
@d8 1
a8 1
PORTVERSION=	20080112
@

