openbsd-ports/devel/libJudy/Makefile
jasper 20696471fe remove marc balmer as maintainer of all of his ports, to take away the
illusion marc still maintains them. as requested by himself.
2009-09-15 17:37:21 +00:00

41 lines
912 B
Makefile

# $OpenBSD: Makefile,v 1.8 2009/09/15 17:37:21 jasper Exp $
COMMENT= general purpose dynamic array
DISTNAME= Judy-1.0.4
PKGNAME= lib${DISTNAME}p0
SHARED_LIBS += Judy 1.4 # .1.4
CATEGORIES= devel
HOMEPAGE= http://judy.sourceforge.net/
# LGPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=judy/}
CONFIGURE_STYLE= GNU
USE_GMAKE= Yes
USE_LIBTOOL= Yes
EXAMPLESDIR= ${PREFIX}/share/examples/libJudy
post-install:
${INSTALL_DATA_DIR} ${EXAMPLESDIR}
@cd ${WRKSRC}/src/apps/demo; tar cf - * | tar xf - -C ${EXAMPLESDIR}
@sed s,y0y0,${LOCALBASE},g < ${WRKSRC}/src/apps/demo/run_demo > \
${EXAMPLESDIR}/run_demo
.include <bsd.port.mk>
.for m in ${MACHINE_ARCH}
.if ${LP64_ARCHS:L:M$m}
CONFIGURE_ARGS+=--enable-64-bit
.else
CONFIGURE_ARGS+=--enable-32-bit
.endif
.endfor