aboutsummaryrefslogtreecommitdiffstats
path: root/databases/slony1/Makefile
blob: 328ea27c4df686f2a4843754a595f0e136d330c0 (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
# New ports collection makefile for:    slony1
# Date created:     20 Jun 2004
# Whom:         Radim Kolar
#
# $FreeBSD$
#

PORTNAME=   slony1
PORTVERSION=    1.0.0
CATEGORIES= databases
MASTER_SITES=   http://developer.postgresql.org/~wieck/slony1/download/

MAINTAINER= hsn@netmag.cz
COMMENT=    PostgreSQL master to multiple slaves replication system

PGSQL_PORT= ${PORTSDIR}/databases/postgresql7
BUILD_DEPENDS=  ${NONEXISTENT}:${PGSQL_PORT}:configure
.if ! defined(NOPORTDOCS)
BUILD_DEPENDS+= ${LOCALBASE}/bin/pnmtops:${PORTSDIR}/graphics/netpbm \
        ${LOCALBASE}/bin/djpeg:${PORTSDIR}/graphics/jpeg \
        ${LOCALBASE}/bin/ps2pdf:${PORTSDIR}/print/ghostscript-gnu
.else
EXTRA_PATCHES=  ${FILESDIR}/extra-GNUmakefile.in
.endif
RUN_DEPENDS=    ${LOCALBASE}/bin/postmaster:${PGSQL_PORT}

GNU_CONFIGURE=  yes
USE_GETTEXT=    yes
USE_GMAKE=  yes
PGSQL_SRC=  `cd ${PGSQL_PORT}; make -V WRKSRC`
CONFIGURE_ARGS= --with-pgsourcetree=${PGSQL_SRC}

PLIST_FILES=    bin/slon bin/slonik bin/slony_setup.pl \
        lib/postgresql/slony1_funcs.so lib/postgresql/xxid.so \
        share/postgresql/slony1_base.sql \
        share/postgresql/slony1_funcs.sql \
        share/postgresql/slony1_base.v73.sql \
        share/postgresql/slony1_base.v74.sql \
        share/postgresql/slony1_funcs.v73.sql \
        share/postgresql/slony1_funcs.v74.sql \
        share/postgresql/xxid.v73.sql \
        share/postgresql/xxid.v74.sql
PORTDOCS=   *.pdf howto/*.txt COPYRIGHT README slonik_commands.html

pre-configure:
    cd ${PGSQL_SRC}/src/interfaces/libpq && ${GMAKE} all
    cd ${PGSQL_SRC}/src/port && ${GMAKE} all

do-install:
    cd ${WRKSRC} && ${GMAKE} install
    ${INSTALL_SCRIPT} ${WRKSRC}/tools/slony_setup.pl ${PREFIX}/bin
.if ! defined(NOPORTDOCS)
    ${MKDIR} ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/COPYRIGHT ${WRKSRC}/README ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/doc/concept/Slony-I-concept.pdf ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/doc/implementation/Slony-I-implementation.pdf ${DOCSDIR}
    ${MKDIR} ${DOCSDIR}/howto
    ${INSTALL_DATA} ${WRKSRC}/doc/howto/*.txt ${DOCSDIR}/howto
    ${INSTALL_DATA} ${WRKSRC}/doc/howto/slonik_commands.html ${DOCSDIR}
.endif
    ${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>