blob: 7d8bb28d45ddbf7b432c013a2be4a26ef24fc2ea (
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
|
# New ports collection makefile for: freetds
# Date created: 02 Nov 1999
# Whom: Domas Mituzas <midom@dammit.lt>
#
# $FreeBSD$
PORTNAME= freetds
PORTVERSION= 0.51
PORTREVISION= 3
CATEGORIES= databases
MASTER_SITES= ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= ALPHA/freetds
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
USE_GMAKE= yes
USE_LIBTOOL= yes
CONFIGURE_ARGS= --with-tdsver=4.2 \
--enable-dbmfix
INSTALLS_SHLIB= yes
post-patch:
@find ${WRKSRC}/src -name Makefile.in | xargs ${PERL} -pi -e \
's| install-includeHEADERS||g'
.include <bsd.port.mk>
|