mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
597afc47ba
With hat: portmgr Sponsored by: Absolight
31 lines
774 B
Makefile
31 lines
774 B
Makefile
# Created by: Josh Gilliam <josh@quick.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dict
|
|
PORTVERSION= 1.12.1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}d/${PORTNAME}d-${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}d-${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Dictionary Server Protocol (RFC2229) client
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libmaa.so:devel/libmaa
|
|
|
|
ALL_TARGET= dict
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install.dict
|
|
USES= bison gmake libtool:build localbase
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^ mkdir| mkdir|' ${WRKSRC}/Makefile.in
|
|
@${REINPLACE_CMD} -e 's|/etc/|${PREFIX}/etc/|g' ${WRKSRC}/dict.1.in
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${FILESDIR}/dict.conf ${STAGEDIR}${PREFIX}/etc/dict.conf.sample
|
|
|
|
.include <bsd.port.mk>
|