mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
39 lines
810 B
Makefile
39 lines
810 B
Makefile
# Created by: giffunip@asme.org
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= flick
|
|
PORTVERSION= 2.1
|
|
DISTVERSIONSUFFIX= -src
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
#MASTER_SITES= ftp://flux.cs.utah.edu/flux/flick/2.1/
|
|
MASTER_SITES= http://www.sourcefiles.org/Programming/Compilers/Other/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Flexible IDL Compiler Kit
|
|
|
|
LICENSE= BSD GPLv2
|
|
LICENSE_COMB= multi
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
MAKEFILE= GNUmakefile
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|-I-||' ${WRKSRC}/GNUmakeconf.in
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
(cd ${WRKSRC}/doc/guts && ${INSTALL_DATA} *.ps ${DOCSDIR})
|
|
(cd ${WRKSRC}/doc/usersguide && ${INSTALL_DATA} *.ps ${DOCSDIR})
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|