head	1.4;
access;
symbols
	RELEASE_9_0_0:1.3
	RELEASE_7_4_0:1.3
	RELEASE_8_2_0:1.3
	RELEASE_6_EOL:1.3
	RELEASE_8_1_0:1.3
	RELEASE_7_3_0:1.3
	RELEASE_8_0_0:1.3
	RELEASE_7_2_0:1.3
	RELEASE_7_1_0:1.3
	RELEASE_6_4_0:1.3
	RELEASE_5_EOL:1.3
	RELEASE_7_0_0:1.3
	RELEASE_6_3_0:1.3
	PRE_XORG_7:1.3
	RELEASE_4_EOL:1.3
	RELEASE_6_2_0:1.3
	RELEASE_6_1_0:1.3
	RELEASE_5_5_0:1.3
	RELEASE_6_0_0:1.3
	RELEASE_5_4_0:1.3
	RELEASE_4_11_0:1.3
	RELEASE_5_3_0:1.3
	RELEASE_4_10_0:1.3
	RELEASE_5_2_1:1.3
	RELEASE_5_2_0:1.3
	RELEASE_4_9_0:1.3;
locks; strict;
comment	@# @;


1.4
date	2012.01.01.19.30.39;	author ohauer;	state dead;
branches;
next	1.3;

1.3
date	2003.08.05.05.30.15;	author daichi;	state Exp;
branches;
next	1.2;

1.2
date	2003.07.30.10.29.50;	author krion;	state Exp;
branches;
next	1.1;

1.1
date	2003.07.24.19.28.51;	author oliver;	state Exp;
branches;
next	;


desc
@@


1.4
log
@- remove apache13 and ports depending on apache13 from portstree
  ( EXPIRATION_DATE=2012-01-01 )

with hat apache@@
@
text
@--- Makefile.orig	Sun Dec 30 14:11:43 2001
+++ Makefile	Tue Nov 19 21:07:22 2002
@@@@ -5,13 +5,24 @@@@
 ##
 
 #   the used tools
-APXS=apxs
+#APXS=apxs
 APACHECTL=apachectl
 
-#   here's what you may need to change
-DEF=-DNEED_POSTGRES -DNEED_MYSQL
-INC=-I/usr/local/pgsql/include/ -I/usr/local/mysql/include/
-LIB=-L/usr/local/pgsql/lib -lpq -L/usr/local/mysql/lib/mysql/ -lmysqlclient
+.if !defined(WITHOUT_PGSQL)
+DEF_PGSQL=      -DNEED_POSTGRES
+INC_PGSQL=      -I${LOCALBASE}/include
+LIB_PGSQL=      -L${LOCALBASE}/lib -lpq
+.endif
+
+.if !defined(WITHOUT_MYSQL)
+DEF_MYSQL=      -DNEED_MYSQL
+INC_MYSQL=      -I${LOCALBASE}/include
+LIB_MYSQL=      -L${LOCALBASE}/lib/mysql -lmysqlclient
+.endif
+
+DEF=${DEF_MYSQL} ${DEF_PGSQL}
+INC=${INC_MYSQL} ${INC_PGSQL}
+LIB=${LIB_MYSQL} ${LIB_PGSQL}
 
 #   the default target
 all: mod_accounting.so

@


1.3
log
@update www/mod_accounting: CVS version, which is in port is not usable

PR:		55211
Submitted by:	Clement Laforet <sheepkiller@@cultdeadsheep.org> (maintainer)
Pointed out by:	Alexandr Kovalenko <never@@nevermind.kiev.ua>
@
text
@@


1.2
log
@- update to cvs version
- fix typo

PR:		55042
Submitted by:	maintainer
Approved by:	fjoe (mentor) (implicit)
@
text
@d1 3
a3 3
--- Makefile.back	Wed Jul 30 09:41:20 2003
+++ Makefile	Wed Jul 30 09:40:23 2003
@@@@ -5,13 +5,27 @@@@
d8 2
a9 1
-APACHECTL=apachectl
d11 4
a14 4
 #   here's what you may need to change
-DEF=-DNEED_POSTGRES -DNEED_MYSQL -DNEED_PLAINTEXT
-INC=-I/usr/local/pgsql/include/ -I/usr/local/mysql/include/ -I/opt/postgresql/include -I/opt/mysql/include
-LIB=-L/opt/postgresql/lib -L/usr/local/pgsql/lib -lpq -L/opt/mysql/lib/mysql/ -L/usr/local/mysql/lib/mysql/ -lmysqlclient
d27 1
a27 5
+.if !defined(WITHOUT_PLAINTEXT)
+DEF_PLAINTEXT=-DNEED_PLAINTEXT
+.endif
+
+DEF=${DEF_MYSQL} ${DEF_PGSQL} ${DEF_PLAINTEXT}
d33 1
@


1.1
log
@Add mod_accounting 0.5,
an Apache module that records traffic
statistics into a database.

PR:		45502
Submitted by:	Clment Lafort <sheepkiller@@cultdeadsheep.org>
@
text
@d1 3
a3 3
--- Makefile.orig	Sun Dec 30 14:11:43 2001
+++ Makefile	Tue Nov 19 21:07:22 2002
@@@@ -5,13 +5,24 @@@@
d8 1
a8 2
+#APXS=apxs
 APACHECTL=apachectl
d10 4
a13 4
-#   here's what you may need to change
-DEF=-DNEED_POSTGRES -DNEED_MYSQL
-INC=-I/usr/local/pgsql/include/ -I/usr/local/mysql/include/
-LIB=-L/usr/local/pgsql/lib -lpq -L/usr/local/mysql/lib/mysql/ -lmysqlclient
d26 5
a30 1
+DEF=${DEF_MYSQL} ${DEF_PGSQL}
@

