head	1.12;
access;
symbols
	RELEASE_8_3_0:1.10
	RELEASE_9_0_0:1.10
	RELEASE_7_4_0:1.10
	RELEASE_8_2_0:1.10
	RELEASE_6_EOL:1.10
	RELEASE_8_1_0:1.10
	RELEASE_7_3_0:1.10
	RELEASE_8_0_0:1.9
	RELEASE_7_2_0:1.9
	RELEASE_7_1_0:1.9
	RELEASE_6_4_0:1.9
	RELEASE_5_EOL:1.9
	RELEASE_7_0_0:1.9
	RELEASE_6_3_0:1.9
	PRE_XORG_7:1.9
	RELEASE_4_EOL:1.9
	RELEASE_6_2_0:1.9
	RELEASE_6_1_0:1.8
	RELEASE_5_5_0:1.8
	RELEASE_6_0_0:1.6
	RELEASE_5_4_0:1.5
	RELEASE_4_11_0:1.5
	RELEASE_5_3_0:1.5
	RELEASE_4_10_0:1.5
	RELEASE_5_2_1:1.5
	RELEASE_5_2_0:1.5
	RELEASE_4_9_0:1.4
	RELEASE_5_1_0:1.3
	RELEASE_4_8_0:1.3
	RELEASE_5_0_0:1.1.1.1
	RELEASE_4_7_0:1.1.1.1
	RELEASE_4_6_2:1.1.1.1
	RELEASE_4_6_1:1.1.1.1
	RELEASE_4_6_0:1.1.1.1
	RELEASE_5_0_DP1:1.1.1.1
	RELEASE_4_5_0:1.1.1.1
	RELEASE_4_4_0:1.1.1.1
	RELEASE_4_3_0:1.1.1.1
	RELEASE_4_2_0:1.1.1.1
	RELEASE_4_1_1:1.1.1.1
	RELEASE_4_1_0:1.1.1.1
	v1_0:1.1.1.1
	SOBOMAX:1.1.1;
locks; strict;
comment	@# @;


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

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

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

1.9
date	2006.08.14.09.56.57;	author clsung;	state Exp;
branches;
next	1.8;

1.8
date	2005.09.27.15.11.53;	author vs;	state Exp;
branches;
next	1.7;

1.7
date	2005.09.22.07.22.28;	author mi;	state Exp;
branches;
next	1.6;

1.6
date	2005.04.19.08.32.08;	author vs;	state Exp;
branches;
next	1.5;

1.5
date	2003.10.26.22.35.56;	author kris;	state Exp;
branches;
next	1.4;

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

1.3
date	2003.03.07.05.55.11;	author ade;	state Exp;
branches;
next	1.2;

1.2
date	2003.02.03.11.54.23;	author sobomax;	state Exp;
branches;
next	1.1;

1.1
date	2000.06.20.15.03.58;	author sobomax;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2000.06.20.15.03.58;	author sobomax;	state Exp;
branches;
next	;


desc
@@


1.12
log
@Switch exporter over
@
text
@# New ports collection makefile for:	libarc
# Date Created:				20 June 2000
# Whom:					Maxim Sobolev <sobomax@@FreeBSD.org>
#
# $FreeBSD: head/archivers/libarc/Makefile 303586 2012-09-03 04:00:32Z eadler $
#

PORTNAME=	libarc
PORTVERSION=	2.0.2
PORTREVISION=	1
CATEGORIES=	archivers devel
MASTER_SITES=	http://www.onicos.com/staff/iz/release/

MAINTAINER=	ports@@FreeBSD.org
COMMENT=	Tiny C decompression library for several popular compression formats

SOLIB=		libarc.so
SOVERSION=	1

MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS} -I." LN="${LN} -sf" \
		SOLIB="${SOLIB}" SOVERSION="${SOVERSION}"

MAKE_JOBS_SAFE=	yes

USE_LDCONFIG=	yes

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/arccat ${PREFIX}/bin
	${INSTALL_PROGRAM} ${WRKSRC}/${SOLIB}.${SOVERSION} ${PREFIX}/lib
	${LN} -sf ${PREFIX}/lib/${SOLIB}.${SOVERSION} ${PREFIX}/lib/${SOLIB}
	@@${MKDIR} ${PREFIX}/include/libarc
	${INSTALL_DATA} ${WRKSRC}/libarc/* ${PREFIX}/include/libarc
	(cd ${WRKSRC} && ${INSTALL_DATA} unlzh.h zip.h ${PREFIX}/include/libarc)

.include <bsd.port.mk>
@


1.11
log
@SVN rev 303586 on 2012-09-03 04:00:32Z by eadler

Mark ports MAKE_JOBS_SAFE after some testing.
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.10
log
@- use ${VARIABLE}, instead of $(VARIABLE)

PR:             ports/142205
Submitted by:   Sevan Janiyan <venture37@@geeklan.co.uk>
@
text
@d23 2
@


1.9
log
@- s,INSTALLS_SHLIB,USE_LDCONFIG,g
@
text
@d26 3
a28 3
	$(INSTALL_PROGRAM) ${WRKSRC}/arccat $(PREFIX)/bin
	$(INSTALL_PROGRAM) ${WRKSRC}/$(SOLIB).$(SOVERSION) $(PREFIX)/lib
	$(LN) -sf $(PREFIX)/lib/$(SOLIB).$(SOVERSION) $(PREFIX)/lib/$(SOLIB)
d31 1
a31 1
	(cd ${WRKSRC} && $(INSTALL_DATA) unlzh.h zip.h $(PREFIX)/include/libarc)
@


1.8
log
@Cleanup a bit: Move install-logic into Makefile instead of patching it into port.
Drop static lib while here.
@
text
@d23 1
a23 1
INSTALLS_SHLIB=	yes
@


1.7
log
@Make this port a little more useful by installing addition header files.
Definitions for zip- and lzh-reading functions were always part of the
library. May as well provide declarations. Bump PORTREVISION.
@
text
@d17 5
a21 1
MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS} -I." PREFIX="${PREFIX}" LN="${LN} -sf"
d25 8
@


1.6
log
@Minimize Makefile-patch by using MAKE_ARGS
@
text
@d10 1
@


1.5
log
@portlint (shorten COMMENT)
@
text
@d16 2
@


1.4
log
@Let be hohest: I really don't have a time now to properly maintain all
these great pieces of software, so that let others with more free time
to take over them.
@
text
@d14 1
a14 1
COMMENT=	Tiny C library to decompress data in several popular compression formats
@


1.3
log
@Clear moonlight beckons.
Requiem mors pacem pkg-comment,
And be calm ports tree.

E Nomini Patri, E Fili, E Spiritu Sancti.
@
text
@d13 1
a13 1
MAINTAINER=	sobomax@@FreeBSD.org
@


1.2
log
@Correct MASTER_SITES and WWW.

Submitted by:	Sergey A. Osokin <osa@@FreeBSD.org.ru>
@
text
@d14 1
@


1.1
log
@Initial revision
@
text
@d11 1
a11 1
MASTER_SITES=	http://raiden.goice.co.jp/member/mo/release/
@


1.1.1.1
log
@Initial import of libarc - a tiny decompression library supporting bunch of
popular formats.
@
text
@@
