mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
4e1b79a0a6
With hat: portmgr Sponsored by: Absolight
29 lines
617 B
Makefile
29 lines
617 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dprog
|
|
PORTVERSION= 0.3.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.daimi.au.dk/~mailund/dprog/download/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Language for specifying dynamic programming algorithms
|
|
|
|
LIB_DEPENDS= libpopt.so:devel/popt
|
|
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= ${CXXFLAGS} -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
OPTIONS_DEFINE= EMACS
|
|
OPTIONS_DEFAULT= EMACS
|
|
OPTIONS_SUB= yes
|
|
EMACS_DESC= Emacs syntax files
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/elisp/*.el ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|