mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
c1468c1fa8
Use new options format
32 lines
816 B
Makefile
32 lines
816 B
Makefile
# Created by: Ion-Mihai "IOnut" Tetcu<itetcu@people.tecnik93.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libbnr
|
|
PORTVERSION= 2.0.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel mail
|
|
MASTER_SITES= http://dspam.nuclearelephant.com/sources/extras/ \
|
|
http://T32.TecNik93.com/~itetcu/FreeBSD/ports/${PORTNAME}/sources/
|
|
|
|
MAINTAINER= itetcu@FreeBSD.org
|
|
COMMENT= GPL implementation of the Bayesian Noise Reduction algorithm
|
|
|
|
OPTIONS_DEFINE= DOCS DEBUG
|
|
|
|
USE_AUTOTOOLS= libtool
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CONFIGURE_ARGS+= --includedir=${PREFIX}/include/${PORTNAME}
|
|
|
|
DEBUG_CFLAGS= -g -DDEBUG
|
|
|
|
PORTDOCS= README
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/example.c ${STAGEDIR}${EXAMPLESDIR}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|