aboutsummaryrefslogtreecommitdiffstats
path: root/databases/mysql323-server/Makefile
blob: 32ab7ba1984bc0c2c81f2f94b650dc1c0fe738e3 (plain) (blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# ports collection makefile for:    MySQL-server
# Date created:             Sun Sep 24 21:20:46 CEST 2000
# Whom:                 Dirk Froemberg <dirk@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME?=  ${MASTERPORTNAME}
PORTVERSION=    3.23.30
CATEGORIES= databases
MASTER_SITES=   http://www.wipol.uni-bonn.de/MySQL/Downloads/MySQL-3.23/ \
        http://www.mysql.net/Downloads/MySQL-3.23/ \
        http://mysql.he.net/Downloads/MySQL-3.23/ \
        ftp://ftp.sunet.se/pub/unix/databases/relational/mysql/Downloads/MySQL-3.23/
DISTNAME=   mysql-${PORTVERSION}-gamma

MAINTAINER= dirk@FreeBSD.org

SLAVEDIRS=  databases/mysql323-client
MASTERPORTNAME= mysql-server
DB_DIR?=    /var/db/mysql
NO_LATEST_LINK= yes
USE_PERL5=  yes
USE_LIBTOOL=    yes
CONFIGURE_ARGS= --localstatedir=${DB_DIR} \
        --without-perl \
        --without-debug \
        --without-readline \
        --without-bench \
        --with-mit-threads=no \
        --with-libwrap
.if ${MACHINE_ARCH} == "i386"
CONFIGURE_ARGS+=--enable-assembler
.endif
CONFIGURE_ENV+= PERL=${PERL} \
        PERL5=${PERL} \
        INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
        CONFIGURE_ARGS="${CONFIGURE_ARGS}"

# MySQL-Server part
.if !defined(CLIENT_ONLY)
RUN_DEPENDS=    mysql:${PORTSDIR}/databases/mysql323-client

PLIST_SUB=  MYSQL_VERSION=${PORTVERSION}-gamma

post-patch:
    ${MV} ${WRKSRC}/strings/strings-x86.s ${WRKSRC}/strings/strings-x86.S
    ${MV} ${WRKSRC}/strings/longlong2str-x86.s ${WRKSRC}/strings/longlong2str-x86.S

pre-install:
.if !defined(PACKAGE_BUILDING) && exists(${DB_DIR}) && !defined(OVERWRITE_DB)
    @${ECHO} "You appear to already have a mysql database directory in ${DB_DIR}."
    @${ECHO} ""
    @${ECHO} "In order to preserve your existing data, you should:"
    @${ECHO} "  - dump all your databases"
    @${ECHO} "  - kill mysql if it is running"
    @${ECHO} "  - delete the ${DB_DIR} directory"
    @${ECHO} "  - run 'make install'"
    @${ECHO} "  - start up mysql"
    @${ECHO} "  - re-create all of your database"
    @${ECHO} "  - re-load your data"
    @${ECHO} ""
    @${ECHO} "If you understand the consequences of this upgrade, please re-build this"
    @${ECHO} "port with the environment variable OVERWRITE_DB defined."
    @${FALSE}
.endif

post-install:
.if !defined(PACKAGE_BUILDING)
    ${PREFIX}/bin/mysql_install_db
    @${SETENV} DB_DIR=${DB_DIR} ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.endif
    @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-server.sh > ${PREFIX}/etc/rc.d/mysql-server.sh
    @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-server.sh

.if !defined(NOPORTDOCS)
    ${MKDIR} ${PREFIX}/share/doc/mysql/Flags
.for doc in manual.html manual.ps manual_toc.html manual.txt manual.texi include.texi
    ${INSTALL_DATA} ${WRKSRC}/Docs/${doc} ${PREFIX}/share/doc/mysql
.endfor
    ${INSTALL_DATA} ${WRKSRC}/Docs/Flags/*.gif ${PREFIX}/share/doc/mysql/Flags
    ${INSTALL_DATA} ${WRKSRC}/Docs/mysql.info ${PREFIX}/info
    @install-info ${PREFIX}/info/mysql.info ${PREFIX}/info/dir
.endif

# MySQL-Client part
.else
MAN1=       isamchk.1 isamlog.1 mysql.1.gz mysql_zap.1 mysqlaccess.1  \
        mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \
        perror.1 replace.1 safe_mysqld.1

INSTALLS_SHLIB= yes
LDCONFIG_DIRS=  %%PREFIX%%/lib/mysql

CONFIGURE_ARGS+=--without-server
MAKE_ENV=   CLIENT_ONLY="${CLIENT_ONLY}"

post-install:
    @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/mysql-client.sh
    @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh
.endif

.include <bsd.port.mk>