mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
41 lines
818 B
Makefile
41 lines
818 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: dprog
|
|
# Date created: Apr 6, 2004
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dprog
|
|
PORTVERSION= 0.3.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.daimi.au.dk/~mailund/dprog/download/
|
|
|
|
MAINTAINER= stas@FreeBSD.org
|
|
COMMENT= A language for specifying dynamic programming algorithms
|
|
|
|
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${CXXFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
OPTIONS= EMACS "Install emacs syntax files" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_EMACS)
|
|
PLIST_SUB+= EMACS=""
|
|
.else
|
|
PLIST_SUB+= EMACS="@comment "
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(WITHOUT_EMACS)
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/elisp/*.el ${DATADIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|