summaryrefslogtreecommitdiff
path: root/databases/postgresql73/Makefile.common
blob: 574c279ab5f98c78c74a6d46b8620e323cef97a9 (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
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
104
105
106
107
108
109
110
111
# $NetBSD: Makefile.common,v 1.12 2005/12/02 19:41:18 joerg Exp $
#
# This Makefile fragment is included by all PostgreSQL packages built from
# the main sources of the PostgreSQL distribution except jdbc-postgresql.
#
# The PostgreSQL package naming scheme, aside from the obvious piecewise
# packages, is as follows:
#
#	<lang>-postgresql	client-side interface to PostgreSQL
#	postgresql-<lang>	server-side module for PostgreSQL backend

DISTNAME?=		postgresql-${DIST_VERS}
CATEGORIES+=		databases
MASTER_SITES?=		http://www.postgresql.org/ftpsite/source/v${DIST_VERS}/ \
			ftp://ftp.postgresql.org/pub/source/v${DIST_VERS}/ \
			ftp://ftp.de.postgresql.org/mirror/postgresql/source/v${DIST_VERS}/ \
			ftp://gd.tuwien.ac.at/db/www.postgresql.org/pub/source/v${DIST_VERS}/ \
			ftp://ftp.sunsite.auc.dk/mirrors/postgresql/source/v${DIST_VERS}/ \
			ftp://ftp.jaist.ac.jp/pub/dbms/postgres95/source/v${DIST_VERS}/

MAINTAINER?=		tech-pkg@NetBSD.org
HOMEPAGE?=		http://www.postgresql.org/

CONFLICTS+=		postgresql-[0-9]* postgresql74-* postgresql80-*

DISTINFO_FILE?=		${.CURDIR}/../postgresql73/distinfo
COMMON_FILESDIR?=	${.CURDIR}/../postgresql73/files
PATCHDIR?=		${.CURDIR}/../postgresql73/patches

# Version numbering scheme:
#
# DIST_VERS		version number on the postgresql distfile
# BASE_VERS		pkgsrc-mangled version number (convert pl -> .)
#
# Note: Do not forget jdbc-postgresql when updating version
DIST_VERS?=		7.3.10
BASE_VERS?=		${DIST_VERS}

BUILDLINK_DEPENDS.postgresql73-lib?=	postgresql73-lib>=${BASE_VERS}
BUILDLINK_DEPENDS.tcl-postgresql73?=	tcl-postgresql73>=${BASE_VERS}

USE_TOOLS+=		autoconf gmake
GNU_CONFIGURE=		YES
PKG_SYSCONFSUBDIR=	postgresql

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

PGSQL_TEMPLATE.SunOS=		solaris
PGSQL_TEMPLATE.IRIX=		irix5
.if !defined(PGSQL_TEMPLATE.${OPSYS})
PGSQL_TEMPLATE.${OPSYS}=	${LOWER_OPSYS}
.endif

CONFIGURE_ARGS+=	--with-template="${PGSQL_TEMPLATE.${OPSYS}}"
CONFIGURE_ARGS+=	--without-readline
CONFIGURE_ARGS+=	--without-zlib

CONFIGURE_ARGS+=	--includedir=${PREFIX}/include/postgresql
CONFIGURE_ARGS+=	--sysconfdir=${PKG_SYSCONFDIR}
CONFIGURE_ARGS+=	--with-htmldir=${PREFIX}/share/doc/html/postgresql

CONFIGURE_ARGS+=	--without-java
CONFIGURE_ARGS+=	--without-perl
CONFIGURE_ARGS+=	--without-python
CONFIGURE_ARGS+=	--without-tcl
CONFIGURE_ARGS+=	--without-tk

# Postgresql explicitly forbids any use of -ffast-math
CFLAGS:=		${CFLAGS:S/-ffast-math//}

post-extract:
	if [ -d ${WRKSRC}/src ]; then					\
		${RM} -f ${WRKSRC}/src/Makefile.custom;			\
		${CP} -f ${COMMON_FILESDIR}/Makefile.custom		\
			${WRKSRC}/src/Makefile.custom;			\
	fi
	if [ -d ${WRKSRC}/src/interfaces/libpq ]; then			\
		${RM} -f ${WRKSRC}/src/interfaces/libpq/GNUmakefile;	\
		${CP} -f ${COMMON_FILESDIR}/GNUmakefile.libpq		\
			${WRKSRC}/src/interfaces/libpq/GNUmakefile;	\
	fi
	if [ -d ${WRKSRC}/src/interfaces/libpgtcl ]; then		\
		${RM} -f ${WRKSRC}/src/interfaces/libpgtcl/GNUmakefile;	\
		${CP} -f ${COMMON_FILESDIR}/GNUmakefile.libpgtcl	\
			${WRKSRC}/src/interfaces/libpgtcl/GNUmakefile;	\
	fi
	if [ -d ${WRKSRC}/src/backend/port/dynloader ]; then		\
		${RM} -f ${WRKSRC}/src/backend/port/dynloader/netbsd.[ch];\
		${CP} -f ${COMMON_FILESDIR}/netbsd.[ch]	\
			${WRKSRC}/src/backend/port/dynloader/;	\
		${CP} ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
			${WRKSRC}/src/backend/port/dynloader/dragonfly.c; \
		${CP} ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
			${WRKSRC}/src/backend/port/dynloader/dragonfly.h; \
		${CP} ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
			${WRKSRC}/src/backend/port/dynloader/dragonfly.h; \
	fi
	if [ -d ${WRKSRC}/src/template ]; then				\
		${TOUCH} ${WRKSRC}/src/template/dragonfly;		\
	fi
	if [ -d ${WRKSRC}/src/include/port ]; then			\
		${CP} ${WRKSRC}/src/include/port/freebsd.h		\
			${WRKSRC}/src/include/port/dragonfly.h;		\
	fi
	if [ -d ${WRKSRC}/src/makefiles ]; then				\
		${CP} ${WRKSRC}/src/makefiles/Makefile.freebsd		\
			${WRKSRC}/src/makefiles/Makefile.dragonfly;	\
	fi

pre-configure:
	cd ${WRKSRC} && autoconf