summaryrefslogtreecommitdiff
path: root/databases/mysql-client/Makefile.common
blob: dcaad9c77c41a4c7304b535b1c172ad8c5951845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# $NetBSD: Makefile.common,v 1.16 2003/07/17 21:28:22 grant Exp $

DISTNAME=		mysql-3.23.49
CATEGORIES=		databases
MASTER_SITES=		http://mirrors.sunsite.dk/mysql/Downloads/MySQL-3.23/ \
			ftp://sunsite.dk/mirrors/mysql/Downloads/MySQL-3.23/ \
			ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/

MAINTAINER=		tech-pkg@NetBSD.org
HOMEPAGE=		http://www.mysql.com/

EXTRACT_USING_PAX=	# defined

.include "../../mk/bsd.prefs.mk"

# MYSQL_USER		username of the database administrator
# MYSQL_GROUP		group of the database administrator
# MYSQL_DATADIR		home directory of the database administrator and
#			location of the databases
MYSQL_USER?=		mysql
MYSQL_GROUP?=		mysql
MYSQL_DATADIR?=		/var/mysql

USE_BUILDLINK2=		# defined
GNU_CONFIGURE=		# defined
CONFIGURE_ARGS+=	--localstatedir=${MYSQL_DATADIR}
CONFIGURE_ARGS+=	--with-named-z-libs=z
CONFIGURE_ARGS+=	--without-libwrap
CONFIGURE_ARGS+=	--with-named-curses-libs="-lcurses -ltermcap"

# We always use our own readline, either system- or pkgsrc-supplied.
CONFIGURE_ARGS+=	--without-readline

# This forces mysql.info _not_ to be rebuilt.
CONFIGURE_ARGS+=	--without-docs

CONFIGURE_ARGS+=	--without-debug
CONFIGURE_ARGS+=	--without-bench
CONFIGURE_ARGS+=	--with-low-memory

CPPFLAGS+=		-Dunix

# force HAVE_CURSES_H on Solaris since the configure script is broken
# and does not properly detect this, breaking the build later on.
.if ${OPSYS} == "SunOS"
CFLAGS+=		-DHAVE_CURSES_H
CXXFLAGS+=		-DHAVE_CURSES_H
.endif

USE_PERL5=		# defined
USE_LIBTOOL=		# defined
LTCONFIG_OVERRIDE=	${WRKSRC}/ltconfig
LDFLAGS+=		-Wl,${RPATH_FLAG}${LOCALBASE}/lib/mysql

post-extract:
	cd ${WRKSRC};							\
	for dir in dbug heap isam merge mysys strings; do		\
		${MV} $${dir}/Makefile.in $${dir}/Makefile.in.orig;	\
		${SED} -e "/^install-exec:/s/install-pkglibLIBRARIES//"	\
			$${dir}/Makefile.in.orig > $${dir}/Makefile.in;	\
	done
	cd ${WRKSRC}/scripts;						\
	for file in mysql_install_db.sh safe_mysqld.sh; do		\
		${MV} $${file} $${file}.orig;				\
		${SED} -e "s,chown,${CHOWN},g"				\
			$${file}.orig > $${file};			\
		${RM} $${file}.orig;					\
	done

.include "../../devel/zlib/buildlink2.mk"