forked from Lainports/freebsd-ports
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
35 lines
827 B
Makefile
35 lines
827 B
Makefile
# 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= 2
|
|
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:261: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.mk>
|