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


1.14
date	2012.11.17.06.01.23;	author svnexp;	state Exp;
branches;
next	1.13;

1.13
date	2011.09.23.22.25.20;	author amdmi3;	state Exp;
branches;
next	1.12;

1.12
date	2009.08.22.00.35.08;	author amdmi3;	state Exp;
branches;
next	1.11;

1.11
date	2008.08.21.06.18.22;	author rafan;	state Exp;
branches;
next	1.10;

1.10
date	2006.07.29.21.07.25;	author miwi;	state Exp;
branches;
next	1.9;

1.9
date	2005.04.12.03.26.32;	author obrien;	state Exp;
branches;
next	1.8;

1.8
date	2005.04.11.08.03.55;	author obrien;	state Exp;
branches;
next	1.7;

1.7
date	2004.02.04.05.08.53;	author marcus;	state Exp;
branches;
next	1.6;

1.6
date	2003.12.18.09.50.08;	author krion;	state Exp;
branches;
next	1.5;

1.5
date	2003.09.27.16.58.34;	author erwin;	state Exp;
branches;
next	1.4;

1.4
date	2003.04.07.04.49.22;	author kevlo;	state Exp;
branches;
next	1.3;

1.3
date	2003.02.21.13.26.57;	author knu;	state Exp;
branches;
next	1.2;

1.2
date	2002.10.23.14.38.34;	author nork;	state Exp;
branches;
next	1.1;

1.1
date	2001.09.03.18.30.56;	author knu;	state Exp;
branches;
next	;


desc
@@


1.14
log
@Switch exporter over
@
text
@# New ports collection makefile for:	yafic
# Date created:		20 August 2001
# Whom:			allan@@saddi.com
#
# $FreeBSD: head/security/yafic/Makefile 300897 2012-07-14 14:29:18Z beat $
#

PORTNAME=	yafic
PORTVERSION=	1.2.2
CATEGORIES=	security
MASTER_SITES=	SF

MAINTAINER=	allan@@saddi.com
COMMENT=	Yet Another File Integrity Checker, similar to Tripwire

GNU_CONFIGURE=	yes
USE_GMAKE=	yes
LDFLAGS+=	-static

.if defined(WITHOUT_OPENSSL)
CONFIGURE_ARGS=	--disable-crypto
PLIST_SUB+=	CRYPTO="@@comment "
.else
PLIST_SUB+=	CRYPTO=""
.endif

MAN1=		yafic.1
.if !defined(WITHOUT_OPENSSL)
MAN1+=		yafic-sign.1
MLINKS=		yafic-sign.1 yafic-check.1
.endif
MAN5=		yafic.conf.5

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/yafic ${PREFIX}/bin
.if !defined(WITHOUT_OPENSSL)
	${INSTALL_PROGRAM} ${WRKSRC}/yafic-sign ${PREFIX}/bin
	${LN} -f ${PREFIX}/bin/yafic-sign ${PREFIX}/bin/yafic-check
.endif
	${INSTALL_MAN} ${WRKSRC}/yafic.1 ${PREFIX}/man/man1
.if !defined(WITHOUT_OPENSSL)
	${INSTALL_MAN} ${WRKSRC}/yafic-sign.1 ${PREFIX}/man/man1
.endif
	${INSTALL_MAN} ${WRKSRC}/yafic.conf.5 ${PREFIX}/man/man5

post-install:
	@@${MKDIR} ${PREFIX}/share/examples/yafic
	@@${CP} ${FILESDIR}/yafic.conf.sample ${EXAMPLESDIR}
	@@${ECHO}
	@@${SED} -e "s%@@@@PREFIX@@@@%${PREFIX}%g" ${PKGMESSAGE}
	@@${ECHO}

.include <bsd.port.mk>
@


1.13
log
@- Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)
- Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead

PR:		157936
Submitted by:	myself
Exp-runs by:	pav
Approved by:	pav
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.12
log
@- Switch SourceForge ports to the new File Release System: categories starting with P,R,S
@
text
@d18 1
a18 1
CONFIGURE_ENV=	LDFLAGS="-static"
@


1.11
log
@Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.
Specifically, newer autoconf (> 2.13) has different semantic of the
configure target. In short, one should use --build=CONFIGURE_TARGET
instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning
and the old semantic may be removed in later autoconf releases.

To workaround this issue, many ports hack the CONFIGURE_TARGET variable
so that it contains the ``--build='' prefix.

To solve this issue, under the fact that some ports still have
configure script generated by the old autoconf, we use runtime detection
in the do-configure target so that the proper argument can be used.

Changes to Mk/*:
 - Add runtime detection magic in bsd.port.mk
 - Remove CONFIGURE_TARGET hack in various bsd.*.mk
 - USE_GNOME=gnometarget is now an no-op

Changes to individual ports, other than removing the CONFIGURE_TARGET hack:

= pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables)
  - comms/gnuradio
  - science/abinit
  - science/elmer-fem
  - science/elmer-matc
  - science/elmer-meshgen2d
  - science/elmerfront
  - science/elmerpost

= use x86_64 as ARCH
  - devel/g-wrap

= other changes
  - print/magicfilter
    GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf

Total # of ports modified:  1,027
Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes)

PR:		126524 (obsoletes 52917)
Submitted by:	rafan
Tested on:	two pointyhat 7-amd64 exp runs (by pav)
Approved by:	portmgr (pav)
@
text
@d11 1
a11 2
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR=	${PORTNAME}
@


1.10
log
@- Update to 1.2.2

PR:		ports/101002
Submitted by:	miwi
Approved by:	krion (mentor), maintainer
@
text
@a17 1
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
@


1.9
log
@At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
@
text
@d9 1
a9 2
PORTVERSION=	1.2
PORTREVISION=	1
@


1.8
log
@Assist getting more ports working on AMD64 by obeying the
Ports Collection documentation and use 'ARCH' rather than 'MACHINE_ARCH'.
@
text
@d19 1
a19 1
CONFIGURE_TARGET=--build=${ARCH}-portbld-freebsd${OSREL}
@


1.7
log
@Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.

(Part 1)
@
text
@d19 1
a19 1
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
@


1.6
log
@- Update to version 1.2

PR:		60359
Submitted by:	maintainer
@
text
@d10 1
@


1.5
log
@Update to 1.1.1

PR:		57268
Submitted by:	maintainer
@
text
@d3 1
a3 1
# Whom:			asaddi@@philosophysw.com
d9 1
a9 1
PORTVERSION=	1.1.1
d18 1
d22 7
d30 4
d36 12
d50 1
a50 1
	@@${CP} ${FILESDIR}/yafic.conf.sample ${PREFIX}/share/examples/yafic
@


1.4
log
@Update to 1.1

PR: 50626
Submitted by: MAINTAINER
@
text
@d9 1
a9 1
PORTVERSION=	1.1
@


1.3
log
@De-pkg-comment.
@
text
@d9 1
a9 1
PORTVERSION=	1.0.3
@


1.2
log
@Update to 1.0.3 and change maintainer (new email).

PR:		ports/44369
Submitted by:	maintainer
@
text
@d15 1
@


1.1
log
@Add yafix, Yet Another File Integrity Checker, similar to Tripwire.
It is simple, fast, and flexible.

PR:		ports/29908
Submitted by:	Allan Saddi <asaddi@@philosophysw.com>
@
text
@d9 1
a9 1
PORTVERSION=	1.0
d14 1
a14 1
MAINTAINER=	asaddi@@philosophysw.com
d16 1
a16 1
USE_AUTOMAKE=	yes
d27 1
a27 1
	@@${CAT} ${PKGMESSAGE}
@

