head	1.21;
access;
symbols
	RELEASE_8_3_0:1.19
	RELEASE_9_0_0:1.19
	RELEASE_7_4_0:1.17
	RELEASE_8_2_0:1.17
	RELEASE_6_EOL:1.17
	RELEASE_8_1_0:1.17
	RELEASE_7_3_0:1.16
	RELEASE_8_0_0:1.16
	RELEASE_7_2_0:1.13
	RELEASE_7_1_0:1.13
	RELEASE_6_4_0:1.13
	RELEASE_5_EOL:1.13
	RELEASE_7_0_0:1.12
	RELEASE_6_3_0:1.12
	PRE_XORG_7:1.12
	RELEASE_4_EOL:1.11
	RELEASE_6_2_0:1.11
	RELEASE_6_1_0:1.10
	RELEASE_5_5_0:1.10
	RELEASE_6_0_0:1.10
	RELEASE_5_4_0:1.10
	RELEASE_4_11_0:1.9
	RELEASE_5_3_0:1.9
	RELEASE_4_10_0:1.9
	RELEASE_5_2_1:1.9
	RELEASE_5_2_0:1.9
	RELEASE_4_9_0:1.7
	RELEASE_5_1_0:1.6
	RELEASE_4_8_0:1.6
	RELEASE_5_0_0:1.5
	RELEASE_4_7_0:1.4
	RELEASE_4_6_2:1.1
	RELEASE_4_6_1:1.1
	RELEASE_4_6_0:1.1
	RELEASE_5_0_DP1:1.1;
locks; strict;
comment	@# @;


1.21
date	2012.12.05.18.29.44;	author svnexp;	state Exp;
branches;
next	1.20;

1.20
date	2012.11.17.06.01.01;	author svnexp;	state Exp;
branches;
next	1.19;

1.19
date	2011.04.27.10.01.52;	author bapt;	state Exp;
branches;
next	1.18;

1.18
date	2011.04.27.01.56.45;	author dougb;	state Exp;
branches;
next	1.17;

1.17
date	2010.05.31.02.00.47;	author ade;	state Exp;
branches;
next	1.16;

1.16
date	2009.09.09.12.54.01;	author miwi;	state Exp;
branches;
next	1.15;

1.15
date	2009.08.22.00.34.49;	author amdmi3;	state Exp;
branches;
next	1.14;

1.14
date	2009.06.19.05.31.20;	author miwi;	state Exp;
branches;
next	1.13;

1.13
date	2008.03.20.10.03.39;	author pav;	state Exp;
branches;
next	1.12;

1.12
date	2007.02.27.21.18.29;	author linimon;	state Exp;
branches;
next	1.11;

1.11
date	2006.05.13.04.14.59;	author edwin;	state Exp;
branches;
next	1.10;

1.10
date	2005.02.13.18.38.47;	author vs;	state Exp;
branches;
next	1.9;

1.9
date	2003.10.15.13.35.27;	author edwin;	state Exp;
branches;
next	1.8;

1.8
date	2003.10.15.04.57.30;	author kris;	state Exp;
branches;
next	1.7;

1.7
date	2003.07.14.02.53.02;	author sf;	state Exp;
branches;
next	1.6;

1.6
date	2003.02.21.13.26.41;	author knu;	state Exp;
branches;
next	1.5;

1.5
date	2002.10.19.22.00.04;	author obraun;	state Exp;
branches;
next	1.4;

1.4
date	2002.09.27.18.10.40;	author ijliao;	state Exp;
branches;
next	1.3;

1.3
date	2002.09.20.06.44.33;	author ijliao;	state Exp;
branches;
next	1.2;

1.2
date	2002.06.23.20.39.07;	author pat;	state Exp;
branches;
next	1.1;

1.1
date	2002.02.07.01.13.35;	author ijliao;	state Exp;
branches;
next	;


desc
@@


1.21
log
@## SVN ## Exported commit - http://svnweb.freebsd.org/changeset/base/308341
## SVN ## CVS IS DEPRECATED: http://wiki.freebsd.org/CvsIsDeprecated
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ## r308341 | jgh | 2012-12-05 18:26:50 +0000 (Wed, 05 Dec 2012) | 8 lines
## SVN ##
## SVN ## - update to 1.10, trim historical header
## SVN ## - adopt optionsNG and general cleanup
## SVN ##
## SVN ## PR:             174137 (based on)
## SVN ## Submitted by:   maintainer, dev2@@heesakkers.info
## SVN ## Approved by:    maintainer
## SVN ## Feature safe:	yes
## SVN ##
## SVN ## ------------------------------------------------------------------------
## SVN ##
@
text
@# Created by: ijliao
# $FreeBSD: head/security/ccrypt/Makefile 308341 2012-12-05 18:26:50Z jgh $

PORTNAME=	ccrypt
PORTVERSION=	1.10
CATEGORIES=	security
MASTER_SITES=	SF \
		http://www.mathstat.dal.ca/~selinger/ccrypt/download/

MAINTAINER=	dev2@@heesakkers.info
COMMENT=	Command-line utility for encrypting and decrypting files and streams

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MNLS}
PLIST_SUB+=	NLS=""
USE_GETTEXT=	yes
.else
PLIST_SUB+=	NLS="@@comment "
USE_PERL5_BUILD=	yes
CONFIGURE_ARGS+=	--disable-nls
.endif

GNU_CONFIGURE=	yes
USE_GMAKE=	yes

MAN1=	ccrypt.1 ccguess.1
MLINKS=	ccrypt.1 ccencrypt.1 \
	ccrypt.1 ccdecrypt.1 \
	ccrypt.1 ccat.1

post-patch:
	@@${REINPLACE_CMD} -e 's|gtar|tar|g' ${WRKSRC}/configure

post-install:
.if ${PORT_OPTIONS:MDOCS}
	@@${MKDIR} ${DOCSDIR}
	${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.for i in ccrypt.html cypfaq01.txt
	${INSTALL_DATA} ${WRKSRC}/doc/$i ${DOCSDIR}
.endfor
.endif

.include <bsd.port.mk>
@


1.20
log
@Switch exporter over
@
text
@d1 2
a2 8
# ex:ts=8
# Ports collection makefile for:	ccrypt
# Date created:			Feb 7, 2002
# Whom:				ijliao
#

# $FreeBSD: head/security/ccrypt/Makefile 300897 2012-07-14 14:29:18Z beat $
#
d5 1
a5 2
PORTVERSION=	1.9
PORTREVISION=	1
d11 3
a13 1
COMMENT=	A command-line utility for encrypting and decrypting files and streams
d15 2
a16 2
.if !defined(WITHOUT_NLS)
USE_GNOME=	intltool
a17 1
PLIST_SUB+=	NLS=""
d19 1
a21 1
PLIST_SUB+=		NLS="@@comment "
d25 1
d27 1
a27 1
MAN1=	ccrypt.1
d36 1
a36 1
.if !defined(NOPORTDOCS)
d38 3
a40 2
.for i in README doc/ccrypt.html doc/cypfaq01.txt
	${INSTALL_DATA} ${WRKSRC}/$i ${DOCSDIR}
@


1.19
log
@- over to new volunteer

PR:		ports/156670
Submitted by:	Oliver Heesakkers <dev2 _at_ heesakkers.info>
@
text
@d7 1
a7 1
# $FreeBSD$
@


1.18
log
@By Maintainer's request, toss these ports back into the pool
@
text
@d17 1
a17 1
MAINTAINER=	ports@@FreeBSD.org
@


1.17
log
@Bounce PORTREVISION for gettext-related ports.  Have fun, ya'll.
@
text
@d17 1
a17 1
MAINTAINER=	corky1951@@comcast.net
@


1.16
log
@- Update to 1.9

PR:		138653
Submitted by:	Charlie Kester <corky1951@@comcast.net> (maintainer)
@
text
@d12 1
@


1.15
log
@- Switch SourceForge ports to the new File Release System: categories starting with P,R,S
@
text
@d6 1
d11 1
a11 1
PORTVERSION=	1.8
d14 1
a14 2
				http://www.mathstat.dal.ca/~selinger/ccrypt/download/

d20 1
a20 1
USE_GNOME=		intltool
d22 1
a22 1
PLIST_SUB+=		NLS=""
@


1.14
log
@- Update to 1.8
- Pass maintainership to submitter

PR:		135463
Submitted by:	Charlie Kester <corky1951@@comcast.net>
@
text
@d12 1
a12 1
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
d14 1
a14 1
MASTER_SITE_SUBDIR=	${PORTNAME}
@


1.13
log
@- Remove USE_GETOPT_LONG which is a no-op since March 2007
@
text
@d10 1
a10 1
PORTVERSION=	1.7
d13 1
a13 1
		http://quasar.mathstat.uottawa.ca/~selinger/ccrypt/download/
d16 1
a16 1
MAINTAINER=	ports@@FreeBSD.org
d19 10
@


1.12
log
@Reset jim@@corebsd.or.id, since he no longer has access to FreeBSD machines.
We appreciate the help in the past.

Hat:		portmgr
@
text
@a18 1
USE_GETOPT_LONG=yes
@


1.11
log
@Remove USE_REINPLACE from all categories starting with S
@
text
@d16 1
a16 1
MAINTAINER=	jim@@corebsd.or.id
@


1.10
log
@Update to 1.7

PR:		ports/77320
Submitted by:	Roland Smith
Approved by:	maintainer
@
text
@a19 1
USE_REINPLACE=	yes
@


1.9
log
@Unbreak port on -current
Informed maintainer.
@
text
@d10 1
a10 2
PORTVERSION=	1.3
PORTREVISION=	2
d32 1
a32 1
.if !defined(NOPORTDOCS) 
@


1.8
log
@BROKEN on 5.x: does not compile
@
text
@d11 1
a11 1
PORTREVISION=	1
a28 6
.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 501000
BROKEN=		"Does not compile"
.endif

d40 1
a40 1
.include <bsd.port.post.mk>
@


1.7
log
@get rid of libgnugetopt dependency for -CURRENT,
use USE_GETOPT_LONG instead.
@
text
@d29 6
d46 1
a46 1
.include <bsd.port.mk>
@


1.6
log
@De-pkg-comment.
@
text
@d11 1
d20 1
a20 2
LIB_DEPENDS=	gnugetopt.1:${PORTSDIR}/devel/libgnugetopt

a22 2
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
		LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt"
@


1.5
log
@* Upgrade to 1.3.
* Give maintainership to submitter.

PR:		43442
Submitted by:	Jim Geovedi <jim@@corebsd.or.id>
@
text
@d17 1
@


1.4
log
@fix install-doc error

Submitted by:	bento log
@
text
@d10 1
a10 2
PORTVERSION=	1.2
PORTREVISION=	1
d16 1
a16 1
MAINTAINER=	ports@@FreeBSD.org
d36 3
a38 1
	${INSTALL_DATA} ${WRKSRC}/doc/ccrypt.html ${DOCSDIR}
@


1.3
log
@- Support CFLAGS/CXXFLAGS properly
- Utilize NOPORTDOCS

PR:		42897
Submitted by:	Ports Fury
@
text
@d37 1
a37 1
	${INSTALL_DATA} ${WRKSRC}/ ${DOCSDIR}
@


1.2
log
@PERL -> REINPLACE_CMD

PR:		ports/39729, ports/39727, ports/39726, ports/39724
PR:		ports/39722, ports/39721, ports/39720, ports/39719, ports/39718
Submitted by:	Scott Flatman <sf@@dsinw.com>
@
text
@d11 1
d19 1
a19 1
LIB_DEPENDS=	gnugetopt:${PORTSDIR}/devel/libgnugetopt
d23 1
a23 1
CONFIGURE_ENV=	CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
d32 7
a38 1
	@@${REINPLACE_CMD} -e "s,gtar,tar,g" ${WRKSRC}/configure
@


1.1
log
@add ccrypt 1.2
A command-line utility for encrypting and decrypting files and streams
@
text
@d20 1
d31 1
a31 1
	@@${PERL} -pi -e "s,gtar,tar,g" ${WRKSRC}/configure
@

