aboutsummaryrefslogtreecommitdiff
path: root/databases/msql3/Makefile
blob: 5e72ca8d6c27140ea3d3cdf37fa789ed5193e450 (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
# New ports collection makefile for:	msql2
# Version required:	2.0.4.1
# Date created:		December 17th 1996
# Whom:			jfitz
#
# $Id: Makefile,v 1.26 1998/02/27 11:50:28 obrien Exp $
#

DISTNAME=	msql-2.0.4.1
CATEGORIES=	databases
MASTER_SITES=	http://www.hughes.com.au/software/msql2/

MAINTAINER=	jfitz@FreeBSD.ORG

# Not free for commercial use.  Must create a user on the local system
NO_PACKAGE=	YES
RESTRICTED=	"restrictive copyright (no commercial use)"

MAKE_ENV+=	WRKSRC=${WRKSRC}

# Uncomment this if you're upgrading from <= b4 to >= b5 and have already
# dumped your databases (or just build with -DOVERWRITE_DB)
#OVERWRITE_DB=	YES

do-configure:
		cd ${WRKSRC}; make target
		cd ${WRKSRC}/targets/freebsd; ${SETENV} ${MAKE_ENV} ./setup
		@${SETENV} ${MAKE_ENV} /usr/bin/perl ${SCRIPTDIR}/customize_scripts

pre-install:
		@${SETENV} ${MAKE_ENV} /usr/bin/perl ${SCRIPTDIR}/check_old_version
		@${SETENV} ${MAKE_ENV} /usr/bin/perl ${SCRIPTDIR}/createuser

post-install:
		@${INSTALL_SCRIPT} ${WRKSRC}/scripts/run_daemon ${PREFIX}/bin
		@${INSTALL_DATA} ${FILESDIR}/post-install-notes ${PREFIX}/share/doc/msql
		@for file in msql2d msqladmin msqlimport msqlexport; do\
			/usr/bin/chgrp msql ${PREFIX}/bin/$$file; \
		done
		@for file in RELEASE_NOTES MSQL_BOOK INSTALL; do \
			${INSTALL_DATA} ${WRKSRC}/$$file ${PREFIX}/share/doc/msql; \
		done
		@/bin/chmod 751 ${PREFIX}/etc/msql2/
		@/usr/sbin/chown -R msql.msql ${PREFIX}/etc/msql2/
		@${MKDIR} ${PREFIX}/etc/rc.d
		@if [ ! -f ${PREFIX}/etc/rc.d/msql2.sh ]; then \
			${ECHO} "Installing ${PREFIX}/etc/rc.d/msql2.sh startup file."; \
			${ECHO} "#!/bin/sh" > ${PREFIX}/etc/rc.d/msql2.sh; \
			${ECHO} "[ -x ${PREFIX}/bin/msql2d ] && su -l msql -c 'exec ${PREFIX}/bin/msql2d' > /dev/null 2>&1 & && echo -n ' msql2'" >> ${PREFIX}/etc/rc.d/msql2.sh; \
			chmod 751 ${PREFIX}/etc/rc.d/msql2.sh; \
		fi
.if !defined(BATCH)
		@ /usr/bin/more -e ${FILESDIR}/post-install-notes
.endif

.include <bsd.port.mk>