head	1.9;
access;
symbols
	RELEASE_5_1_0:1.8
	RELEASE_4_8_0:1.8
	RELEASE_5_0_0:1.7
	RELEASE_4_7_0:1.7
	RELEASE_4_6_2:1.7
	RELEASE_4_6_1:1.7
	RELEASE_4_6_0:1.7
	RELEASE_5_0_DP1:1.7
	RELEASE_4_5_0:1.6
	RELEASE_4_4_0:1.6
	RELEASE_4_3_0:1.5
	RELEASE_4_2_0:1.4
	RELEASE_4_1_1:1.3
	RELEASE_4_1_0:1.3
	RELEASE_3_5_0:1.3
	RELEASE_4_0_0:1.2
	RELEASE_3_4_0:1.2
	RELEASE_3_3_0:1.2
	v1_1b:1.1.1.1
	ROBINSON:1.1.1;
locks; strict;
comment	@# @;


1.9
date	2003.08.26.11.33.27;	author osa;	state dead;
branches;
next	1.8;

1.8
date	2003.02.21.14.01.13;	author knu;	state Exp;
branches;
next	1.7;

1.7
date	2002.03.29.23.49.43;	author petef;	state Exp;
branches;
next	1.6;

1.6
date	2001.08.23.18.40.48;	author dwcjr;	state Exp;
branches;
next	1.5;

1.5
date	2001.02.05.15.33.13;	author olgeni;	state Exp;
branches;
next	1.4;

1.4
date	2000.10.08.10.23.09;	author asami;	state Exp;
branches;
next	1.3;

1.3
date	2000.04.10.00.04.30;	author cpiazza;	state Exp;
branches;
next	1.2;

1.2
date	99.09.10.13.26.13;	author asami;	state Exp;
branches;
next	1.1;

1.1
date	99.09.09.14.55.08;	author taoka;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	99.09.09.14.55.08;	author taoka;	state Exp;
branches;
next	;


desc
@@


1.9
log
@Remove www/bacon port.
<quote from PR>
 ... certainly outdated and replaced by better program.
</quote from PR>

Submitted by:	Oliver Eikemeier <eikemeier@@fillmore-labs.com>
Approved by:	Justin Robinson <jmrobins@@samurai.ruin.org> (maintainer)
PR:		55842
@
text
@# New ports collection makefile for:   bacon
# Date created:        9 September 1999
# Whom:                Justin Robinson <jmrobins@@samurai.ruin.org>
#
# $FreeBSD: ports/www/bacon/Makefile,v 1.8 2003/02/21 14:01:13 knu Exp $
#

PORTNAME=	bacon
PORTVERSION=	1.071999
CATEGORIES=	www
MASTER_SITES=	http://galileo.spaceports.com/~jharris/distfiles/ \
		ftp://samurai.ruin.org/pub/All/

MAINTAINER=	jmrobins@@samurai.ruin.org
COMMENT=	Quick, easy-to-read, web statistics program

USE_PERL5=	yes
NO_BUILD=	yes

pre-patch:
	@@${PERL} -pi.orig -e 's|${LOCALBASE}/bin/perl|${PERL}|' \
		${WRKSRC}/bacon.pl

do-install:
	${MKDIR} ${PREFIX}/www/cgi-bin
	${INSTALL_SCRIPT} ${WRKSRC}/bacon.pl ${PREFIX}/www/cgi-bin/bacon.pl

post-install:
.if !defined(NOPORTDOCS)
	@@${MKDIR} ${DOCSDIR}
	@@${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCSDIR}
.endif
	@@${SED} -e "s|INSTALL|${DOCSDIR}/INSTALL|" ${PKGMESSAGE}

.include <bsd.port.mk>
@


1.8
log
@De-pkg-comment.
@
text
@d5 1
a5 1
# $FreeBSD$
@


1.7
log
@Add a temporary master site to make this port fetchable.

PR:		36440
Submitted by:	Jason Harris <jharris@@widomaker.com>
@
text
@d15 1
@


1.6
log
@Add NOPORTDOCS
Remove www and www/cgi-bin directories properly to not cause error by bento
Better display pkg-message

PR:		29481
Submitted by:	pat@@databits.net
@
text
@d5 1
a5 1
# $FreeBSD: ports/www/bacon/Makefile,v 1.5 2001/02/05 15:33:13 olgeni Exp $
d11 2
a12 1
MASTER_SITES=	ftp://samurai.ruin.org/pub/All/
@


1.5
log
@Some spaces -> tabs for ports/www.
@
text
@d5 1
a5 1
# $FreeBSD: ports/www/bacon/Makefile,v 1.4 2000/10/08 10:23:09 asami Exp $
d15 2
a16 1
USE_PERL5=	YES
d18 3
a20 6
DIST=		bacon.pl

do-build:
		@@cd ${WRKSRC}; ${MV} ${DIST} ${DIST}.orig; \
		${SED} -e 's;^#! */usr/local/bin/perl *;#!${PERL5};' \
			${DIST}.orig > ${DIST}
d27 5
a31 3
	${MKDIR} ${PREFIX}/share/doc/bacon/
	${INSTALL_DATA} ${WRKSRC}/INSTALL ${PREFIX}/share/doc/bacon/INSTALL
	@@${CAT} ${PKGMESSAGE}
@


1.4
log
@Change PKGDIR from pkg/ to .  Also fix places where ${PKGDIR} is
spelled out (many of which are ${PKGDIR}/MESSAGE -> ${PKGMESSAGE} type
fixes that shouldn't have been necessary) and the string "/pkg/"
appear.
@
text
@d5 1
a5 1
# $FreeBSD: ports/www/bacon/Makefile,v 1.3 2000/04/10 00:04:30 cpiazza Exp $
d9 1
a9 1
PORTVERSION= 	1.071999
@


1.3
log
@Update with the new PORTNAME/PORTVERSION variables
@
text
@d5 1
a5 1
# $FreeBSD: ports/www/bacon/Makefile,v 1.2 1999/09/10 13:26:13 asami Exp $
d31 1
a31 1
	@@${CAT} ${PKGDIR}/MESSAGE
@


1.2
log
@Create installation directory before trying to copy a file over.
@
text
@a1 1
# Version required:    1.1b
d5 1
a5 1
# $FreeBSD: ports/www/bacon/Makefile,v 1.1.1.1 1999/09/09 14:55:08 taoka Exp $
d8 4
a11 3
DISTNAME=      bacon-1.071999
CATEGORIES=    www
MASTER_SITES=  ftp://samurai.ruin.org/pub/All/
d13 1
a13 1
MAINTAINER=    jmrobins@@samurai.ruin.org
d15 1
a15 1
USE_PERL5=     YES
@


1.1
log
@Initial revision
@
text
@d6 1
a6 1
# $FreeBSD$
d25 1
@


1.1.1.1
log
@Quick, easy-to-read, web statistics program

PR:		12708
Submitted by:	Justin Robinson <jmrobins@@samurai.ruin.org>
@
text
@@
