summaryrefslogtreecommitdiff
path: root/databases/msql3/Makefile
blob: a11d52d670898390bfb1057516c3d4037e90a230 (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
# New ports collection makefile for:	msql3
# Date created:		24 May 2004
# Whom:			Andrey Slusar <anray@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	msql
PORTVERSION=	3.8
CATEGORIES=	databases

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Version 3 of the Mini SQL relational database system

CONFLICTS=	msql-2*

USE_LDCONFIG=	YES
USE_PERL5=	YES

USERS=		${PORTNAME}
GROUPS=		${USERS}

LATEST_LINK=	msql3

# Not free for commercial use.
RESTRICTED=	restrictive copyright (no commercial use)

MAKE_ENV+=	WRKSRC=${WRKSRC}

MSQLDATA=	directory.mm dll_os2.mm install.mm lex.mm libinstall.mm \
		library_os2.mm library_unix.mm makegen makegen.cf object.mm \
		program.mm touch.mm yacc.mm

DOCS=		README RELEASE_NOTES BUGS doc/License doc/Manual \
		doc/Perl doc/acl.txt

post-patch:
		cd ${FILESDIR}; \
		${REINPLACE_CMD} -e "s|'bison -y' byacc|byacc 'bison -y'|g" \
			${WRKSRC}/conf/configure

do-configure:
		cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ./setup
		@${SETENV} ${MAKE_ENV} ${PERL} ${SCRIPTDIR}/customize_scripts

post-install:
	    ${INSTALL_SCRIPT} ${WRKSRC}/scripts/run_daemon ${PREFIX}/bin
.for f in msqladmin msqlimport msqlexport
	    ${CHGRP} ${GROUPS} ${PREFIX}/bin/${f}
.endfor
	    ${CHGRP} ${GROUPS} ${PREFIX}/sbin/msql3d
	    ${CHMOD} 751 ${PREFIX}/etc/msql3/
	    ${CHOWN} -R ${USERS}:${GROUPS} ${PREFIX}/etc/msql3/
	    ${MKDIR} ${PREFIX}/etc/rc.d
		@if [ ! -f ${PREFIX}/etc/rc.d/msql3.sh ]; then \
			${ECHO_MSG} "Installing ${PREFIX}/etc/rc.d/msql3.sh startup file."; \
			${INSTALL_SCRIPT} -m 751 ${FILESDIR}/msql3.sh \
				${PREFIX}/etc/rc.d/msql3.sh; \
		fi
	    ${MKDIR} ${DATADIR}/makegen
.for i in ${MSQLDATA}
	    ${INSTALL_SCRIPT} ${WRKSRC}/src/makegen/${i} ${DATADIR}/makegen
.endfor
	    ${INSTALL_SCRIPT} ${WRKSRC}/src/site.mm ${DATADIR}/makegen
.if !defined(NOPORTDOCS)
	    ${MKDIR} ${DOCSDIR}
.for i in ${DOCS}
	    ${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
.endfor
.endif

.include <bsd.port.pre.mk>

.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX})
IGNORE=	may not be redistributed because of licensing reasons. Please visit http://www.hughes.com.au/download/ to accept their license and download ${DISTFILES} into ${DISTDIR}
.endif

.include <bsd.port.post.mk>