mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
701416af53
- Remove leading article from COMMENT - Convert to new LIB_DEPENDS format - Remove Install prefix from option description - Run ranlib on library prior to installing it, this allows non-root staging solving write permission error
29 lines
629 B
Makefile
29 lines
629 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:${PORTSDIR}/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>
|