head	1.24;
access;
symbols
	RELEASE_8_3_0:1.23
	RELEASE_9_0_0:1.23
	RELEASE_7_4_0:1.18
	RELEASE_8_2_0:1.18
	RELEASE_6_EOL:1.18
	RELEASE_8_1_0:1.17
	RELEASE_7_3_0:1.16
	RELEASE_8_0_0:1.16
	RELEASE_7_2_0:1.16
	RELEASE_7_1_0:1.16
	RELEASE_6_4_0:1.16
	RELEASE_5_EOL:1.15
	RELEASE_7_0_0:1.15
	RELEASE_6_3_0:1.15
	PRE_XORG_7:1.15
	RELEASE_4_EOL:1.15
	RELEASE_6_2_0:1.15
	RELEASE_6_1_0:1.15
	RELEASE_5_5_0:1.15
	RELEASE_6_0_0:1.14
	RELEASE_5_4_0:1.10
	RELEASE_4_11_0:1.10
	RELEASE_5_3_0:1.10
	RELEASE_4_10_0:1.10
	RELEASE_5_2_1:1.9
	RELEASE_5_2_0:1.9
	RELEASE_4_9_0:1.9
	RELEASE_5_1_0:1.8
	RELEASE_4_8_0:1.7
	RELEASE_5_0_0:1.6
	RELEASE_4_7_0:1.4
	RELEASE_4_6_2:1.4
	RELEASE_4_6_1:1.4
	RELEASE_4_6_0:1.4
	RELEASE_5_0_DP1:1.4
	RELEASE_4_5_0:1.4
	RELEASE_4_4_0:1.3
	RELEASE_4_3_0:1.3
	RELEASE_4_2_0:1.3
	RELEASE_4_1_1:1.3
	RELEASE_4_1_0:1.3
	RELEASE_3_5_0:1.2;
locks; strict;
comment	@# @;


1.24
date	2012.11.17.05.54.21;	author svnexp;	state Exp;
branches;
next	1.23;

1.23
date	2011.09.23.22.20.51;	author amdmi3;	state Exp;
branches;
next	1.22;

1.22
date	2011.05.23.11.34.36;	author mandree;	state Exp;
branches;
next	1.21;

1.21
date	2011.05.10.20.31.00;	author mandree;	state Exp;
branches;
next	1.20;

1.20
date	2011.03.22.10.05.20;	author mandree;	state Exp;
branches;
next	1.19;

1.19
date	2011.03.21.16.14.30;	author mandree;	state Exp;
branches;
next	1.18;

1.18
date	2010.11.13.20.59.42;	author mandree;	state Exp;
branches;
next	1.17;

1.17
date	2010.06.13.11.57.33;	author mandree;	state Exp;
branches;
next	1.16;

1.16
date	2008.08.21.06.16.13;	author rafan;	state Exp;
branches;
next	1.15;

1.15
date	2005.09.21.14.14.46;	author mnag;	state Exp;
branches;
next	1.14;

1.14
date	2005.05.31.19.58.32;	author flz;	state Exp;
branches;
next	1.13;

1.13
date	2005.05.31.17.57.10;	author flz;	state Exp;
branches;
next	1.12;

1.12
date	2005.04.12.03.24.47;	author obrien;	state Exp;
branches;
next	1.11;

1.11
date	2005.04.11.08.01.16;	author obrien;	state Exp;
branches;
next	1.10;

1.10
date	2004.02.05.20.36.51;	author trevor;	state Exp;
branches;
next	1.9;

1.9
date	2003.06.11.03.57.54;	author marcus;	state Exp;
branches;
next	1.8;

1.8
date	2003.05.02.00.41.14;	author naddy;	state Exp;
branches;
next	1.7;

1.7
date	2003.02.20.16.44.15;	author knu;	state Exp;
branches;
next	1.6;

1.6
date	2002.11.10.16.44.57;	author lioux;	state Exp;
branches;
next	1.5;

1.5
date	2002.11.06.22.43.40;	author adamw;	state Exp;
branches;
next	1.4;

1.4
date	2001.12.06.12.22.03;	author sobomax;	state Exp;
branches;
next	1.3;

1.3
date	2000.06.22.05.51.49;	author will;	state Exp;
branches;
next	1.2;

1.2
date	2000.06.04.22.50.05;	author will;	state Exp;
branches;
next	1.1;

1.1
date	2000.06.02.22.58.10;	author will;	state Exp;
branches;
next	;


desc
@@


1.24
log
@Switch exporter over
@
text
@# New ports collection makefile for:	lzop
# Date created:				Fri 2 June 2000
# Whom:					will
#
# $FreeBSD: head/archivers/lzop/Makefile 300895 2012-07-14 12:56:14Z beat $
#

PORTNAME=	lzop
DISTVERSION=	1.03
CATEGORIES=	archivers
MASTER_SITES=	http://www.lzop.org/download/ \
		LOCAL/mandree

MAINTAINER=	mandree@@FreeBSD.org
COMMENT=	Fast file compressor similar to gzip, using the LZO library

# prefer lzo2 if it is already installed or if no lzo is installed.
.if exists(${LOCALBASE}/lib/liblzo2.so.2) || !exists(${LOCALBASE}/lib/liblzo.so.1)
LIB_DEPENDS=	lzo2.2:${PORTSDIR}/archivers/lzo2
.else
LIB_DEPENDS=	lzo.1:${PORTSDIR}/archivers/lzo
.endif

GNU_CONFIGURE=	yes
CPPFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib

MAN1=		lzop.1
PLIST_FILES=	bin/lzop

.include <bsd.port.mk>
@


1.23
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.22
log
@Change MASTER_SITES mirror to read LOCAL/mandree instead.

Suggested by: sunpoet@@
@
text
@d26 1
a26 1
CONFIGURE_ENV+=	LDFLAGS="-L${LOCALBASE}/lib"
@


1.21
log
@ftp.uni-koeln.de no longer carriers util/arc/, mirror locally.
@
text
@d12 1
a12 1
		${MASTER_SITE_LOCAL:S,$,mandree/,}
@


1.20
log
@Re-add CPPFLAGS, lost in previous commit.
@
text
@d12 1
a12 1
		http://ftp.uni-koeln.de/util/arc/
@


1.19
log
@Add a mirror to MASTER_SITES.
Drop CPPFLAGS from CONFIGURE_ENV.
@
text
@d25 2
a26 1
CONFIGURE_ENV=	LDFLAGS="-L${LOCALBASE}/lib"
@


1.18
log
@Update to 1.03.

Submitted by: Martin Matuska <mm@@freebsd.org>
PR:           ports/152184
@
text
@d11 2
a12 1
MASTER_SITES=	http://www.lzop.org/download/
d25 1
a25 2
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
		LDFLAGS="-L${LOCALBASE}/lib"
@


1.17
log
@Switch MAINTAINER line to FreeBSD address.

Approved by: garga (mentor, implicit)
@
text
@d9 1
a9 1
DISTVERSION=	1.02rc1
@


1.16
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
@d13 1
a13 1
MAINTAINER=	matthias.andree@@gmx.de
@


1.15
log
@Update to 1.02rc1
Submitter take MAINTAINER

PR:		ports/86407
Submitted by:	Matthias Andree <matthias.andree@@gmx.de>
Approved by:	pav (mentor)
@
text
@a23 1
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
@


1.14
log
@- Backout latest commit, it needs a repocopy due to API change.

Noticed by:	Matthias Andree <matthias.andree@@gmx.de>
@
text
@d9 1
a9 2
PORTVERSION=	1.01
PORTREVISION=	2
d13 1
a13 1
MAINTAINER=	ports@@FreeBSD.org
d16 4
d21 1
@


1.13
log
@- Bump lzo lib version.
- Bump PORTREVISION.
@
text
@d10 1
a10 1
PORTREVISION=	1
d17 1
a17 1
LIB_DEPENDS=	lzo.2:${PORTSDIR}/archivers/lzo
@


1.12
log
@At Kris's request, back out the MACHINE_ARCH spelling correction until
after 5.4-RELEASE.
@
text
@d10 1
d17 1
a17 1
LIB_DEPENDS=	lzo.1:${PORTSDIR}/archivers/lzo
@


1.11
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.10
log
@Use PLIST_FILES.

Reviewed by:	marcus
@
text
@d19 1
a19 1
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
@


1.9
log
@Update MASTER_SITE.

Submitted by:	Jeremy Messenger <mezz7@@cox.net>
@
text
@d24 1
@


1.8
log
@Update to version 1.01

PR:		51509
Submitted by:	Ports Fury
@
text
@d11 1
a11 1
MASTER_SITES=	http://www.oberhumer.com/opensource/lzop/download/
@


1.7
log
@De-pkg-comment.
@
text
@d9 1
a9 1
PORTVERSION=	1.00
d19 2
a20 1
CONFIGURE_ENV+=	CPPFLAGS="-I${LOCALBASE}/include" \
d22 1
@


1.6
log
@o Rollback PORTCOMMENT modifications while this feature's implementation
  is better studied
o Turn PORTCOMMENT variable in Makefile back into pkg-comment files

Approved by:	kris (portmgr hat),
		portmgr, re (silence)
@
text
@d14 1
@


1.5
log
@Use PORTCOMMENT in the Makefile, and whack the pkg-comment.

Approved by:	pat
@
text
@a16 2
PORTCOMMENT=	Fast file compressor similar to gzip, using the LZO library

@


1.4
log
@- Fix MASTER_SITES
- Add WWW: line

PR:		32514
Submitted by:	Ports Fury
@
text
@d17 2
@


1.3
log
@Unleash all of these ports upon the people.  I no longer have any interest
in any of them, but will be happy to assign MAINTAINER to others and commit
updates for them.
@
text
@d5 1
a5 1
# $FreeBSD: ports/archivers/lzop/Makefile,v 1.2 2000/06/04 22:50:05 will Exp $
d11 1
a11 1
MASTER_SITES=	http://wildsau.idv.uni-linz.ac.at/mfx/lzo-download/
d17 2
a18 2
GNU_CONFIGURE=	YES
CONFIGURE_ENV+=	CPPFLAGS="${CPPFLAGS} -I${LOCALBASE}/include" \
@


1.2
log
@Update liblzo.so.1 port target.
@
text
@d5 1
a5 1
# $FreeBSD: ports/archivers/lzop/Makefile,v 1.1 2000/06/02 22:58:10 will Exp $
d13 1
a13 1
MAINTAINER=	will@@FreeBSD.org
@


1.1
log
@Add lzop, a fast file compressor similar to gzip that uses the LZO lib.

Obtained from:	NetBSD
@
text
@d5 1
a5 1
# $FreeBSD$
d15 1
a15 1
LIB_DEPENDS=	lzo.1:${PORTSDIR}/archivers/liblzo
@

