aboutsummaryrefslogtreecommitdiffstats
path: root/www/udmsearch/Makefile
blob: 9fa8133f20b350b23a2c1a6f42c68a2907c56cc0 (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
# New ports collection makefile for:    udmsearch
# Date created:     11/29/1999
# Whom:         Kelly Yancey <kbyanc@posi.net>
#
# $FreeBSD$
#

PORTNAME=   udmsearch
PORTVERSION=    3.0.23
PORTREVISION=   1
CATEGORIES= www databases
MASTER_SITES=   http://search.mnogo.ru/Download/    \
        http://udmsearch.real-time.com/Download/    \
        http://www.ghks.de/computer/software/udmsearch/Download/

MAINTAINER= demon@FreeBSD.org
COMMENT=    Full featured SQL-based hypertext search engine

MAN1=       indexer.1
MAN5=       indexer.conf.5

USE_GMAKE=  yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --enable-charset-guesser \
        --enable-freebsd-pthreads \
        --sysconfdir=${PREFIX}/etc/udmsearch \
        --localstatedir=/var/udmsearch

.if defined(WITH_PGSQL)
POSTGRESQL_PORT?=   databases/postgresql7
LIB_DEPENDS=        pq.3:${PORTSDIR}/${POSTGRESQL_PORT}
CONFIGURE_ARGS+=    --with-pgsql=${LOCALBASE}/pgsql

.elif defined(WITH_MSQL)
BUILD_DEPENDS=      ${PREFIX}/lib/libmsql.a:${PORTSDIR}/databases/msql
CONFIGURE_ARGS+=    --with-msql=${LOCALBASE}

.else
# default to mysql

LIB_DEPENDS=        mysqlclient.10:${PORTSDIR}/databases/mysql323-client
CONFIGURE_ARGS+=    --with-mysql=${LOCALBASE}

.if !defined(WITH_MYSQL)
pre-fetch:
    @${ECHO}
    @${ECHO} "Defaulting to udmsearch with mysql support."
    @${ECHO}
    @${ECHO} "You may alternately build udmsearch with either msql or"
    @${ECHO} "postgresql support by invoking make with WITH_MSQL=yes or"
    @${ECHO} "WITH_PGSQL=yes respectively."
    @${ECHO}
.endif

.endif

pre-install:
    @${MKDIR} ${PREFIX}/share/udmsearch

post-install:
    @cp -R ${WRKSRC}/create ${PREFIX}/share/udmsearch
    @${INSTALL_DATA} ${WRKSRC}/INSTALL ${PREFIX}/share/doc/udmsearch
    @strip ${PREFIX}/sbin/indexer
    @strip ${PREFIX}/share/udmsearch/search.cgi
    @${ECHO}
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>