--- Imakefile.orig Tue Dec 2 02:59:02 1997 +++ Imakefile Fri Oct 13 21:00:22 2000 @@ -13,17 +13,8 @@ INSTALLFLAGS = -c -o $(OWNER) -g $(GROUP) -# This will install xlaby in /usr/local/bin -# and man page in /usr/local/man/man6 -DESTDIR = /usr/local -BINDIR = /bin -MANPATH = /man -MANSOURCEPATH = $(MANPATH)/man -MANDIR = $(MANSOURCEPATH)6 -MANSUFFIX = 6x +MANSUFFIX = 6 LOCAL_LIBRARIES = $(XONLYLIB) SimpleProgramTarget(xlaby) - -install:: install.man 'https://www.tfcis.org/~lantw44/git/freebsd-ports-graphics' title='freebsd-ports-graphics Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
path: root/databases/postgresql-pltcl/Makefile
blob: ce86fac80abbc8018c19d96552010cba9bccb693 (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
# New ports collection makefile for:    PostgreSQL PL/Tcl
# Date created:     January 14, 2002
# Whom:         Palle Girgensohn <girgen@partitur.se>
#
# $FreeBSD$
#

PORTNAME=   postgresql-pltcl
PORTVERSION=    7.2
CATEGORIES= databases tcl83

MAINTAINER= girgen@partitur.se

POSTGRESQL_SUBPORT=YES
.include <${.CURDIR}/../postgresql7/Makefile>

LIB_DEPENDS=    tcl${TCLVERSION:S/.//}:${PORTSDIR}/lang/tcl${TCLVERSION:S/.//}
RUN_DEPENDS=    postgres:${PORTSDIR}/databases/postgresql7

# you can use "make TCLVERSION=8.4" or similar for your favourite tcl version
TCLVERSION?=    8.3
CONFIGURE_ARGS= --with-tcl --without-tk \
        --with-tclconfig="${TCLCONFIG}" \
        --with-includes="${TCL_INCDIR}"

TCL_INCDIR= ${LOCALBASE}/include/tcl${TCLVERSION}
TCLCONFIG=  ${LOCALBASE}/lib/tcl${TCLVERSION}
MAKE_ARGS+= -C src/pl/tcl
MAKE_ENV+=  TCL_INCDIR=${TCL_INCDIR}

post-install:
    @ ${CAT} ${PKGMESSAGE}

.include <bsd.port.mk>