LICENSE= PD Note that although Public Domain is not technically a license, it's handled in the same way as licenses here, which is a common practice (Arch, Gentoo, Fedora, Debian, even FOSSology do the same). Convert all ports which redefine Public Domain LICENSE to LICENSE=PD. Approved by: portmgr (bapt) Differential Revision: D4149
28 lines
651 B
Makefile
28 lines
651 B
Makefile
# Created by: Clement Laforet <clement@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= mod_log_mysql
|
|
PORTVERSION= 1.04
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://bsdforge.com/projects/source/www/mod_log_mysql/
|
|
DIST_SUBDIR= apache2
|
|
|
|
MAINTAINER= portmaster@bsdforge.com
|
|
COMMENT= Allows Apache 2.2.x to log to a MySQL database
|
|
|
|
LICENSE= PD APACHE11
|
|
LICENSE_COMB= multi
|
|
|
|
USES= tar:xz
|
|
RUN_DEPENDS+= ${LOCALBASE}/${APACHEMODDIR}/mod_log_config-st.so:${PORTSDIR}/www/mod_log_config-st
|
|
|
|
USE_APACHE= 22
|
|
AP_FAST_BUILD= yes
|
|
AP_GENPLIST= yes
|
|
USE_MYSQL= yes
|
|
|
|
AP_INC+= ${LOCALBASE}/include/mysql
|
|
AP_LIB+= ${LOCALBASE}/lib/mysql -lmysqlclient
|
|
|
|
.include <bsd.port.mk>
|