mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
f4875d8221
- Replace db2 with db3. - Restore --with-readline in CONFIGURE_ARGS. PR: ports/79923 Submitted by: Johan van Selst <johans@stack.nl>
41 lines
884 B
Makefile
41 lines
884 B
Makefile
# New ports collection makefile for: tinycobol
|
|
# Date created: 26 Oct 2000
|
|
# Whom: Patrick Gardella <patrick@freebsd.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= tinycobol
|
|
PORTVERSION= 0.62
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= tiny-cobol
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A tiny COBOL compiler for IA32 platforms
|
|
|
|
LIB_DEPENDS= db3:${PORTSDIR}/databases/db3
|
|
|
|
INSTALLS_SHLIB= yes
|
|
ONLY_FOR_ARCHS= i386
|
|
USE_GETOPT_LONG=yes
|
|
HAS_CONFIGURE= yes
|
|
USE_BISON= yes
|
|
USE_GMAKE= yes
|
|
|
|
CONFIGURE_ARGS= --with-libdb=3 --with-readline
|
|
CPPFLAGS= -I${LOCALBASE}/include
|
|
CFLAGS= ${CPPFGLAGS}
|
|
LDFLAGS= -L${LOCALBASE}/lib
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
|
|
MAN1= htcobol.1 htcobf2f.1
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/info/*.txt ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|