blob: bf514a1e8b9bfcf5425d60fb209990b9c2b1cebd (
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
|
# ports collection makefile for: Mird 1.0.7
# Date created: 07 November 2001
# Whom: Xavier Beaudouin <kiwi@oav.net>
#
# $FreeBSD$
#
PORTNAME= mird
PORTVERSION= 1.0.7
PORTREVISION= 3
CATEGORIES= databases
MASTER_SITES= ftp://ftp.oav.net/pkg_freebsd/distfiles/ \
http://grendel.firewall.com/caudium-pkg/ \
http://www.mirar.org/mird/
DISTNAME= Mird-${PORTVERSION}
MAINTAINER= kiwi@oav.net
COMMENT= A free database library with transaction support
WRKSRC= ${WRKDIR}/${DISTNAME}
USE_AUTOTOOLS= autoconf:env
USE_GMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --without-debug
USE_LDCONFIG= yes
post-patch:
@${REINPLACE_CMD} -e 's,CFLAGS=,CFLAGS+=,' ${WRKSRC}/src/Makefile.in
@${REINPLACE_CMD} -e 's,-O,,g' ${WRKSRC}/src/configure
post-install:
${STRIP_CMD} ${PREFIX}/lib/libmird.so.1
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
BROKEN= Does not compile on sparc64
.endif
.include <bsd.port.post.mk>
|