mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
b7b9ec7a12
makefile and may not be used by ports makefiles. In addition, avoid problems should the defaults ever change. Approved by: portmgr (tabthorpe)
47 lines
1.5 KiB
Makefile
47 lines
1.5 KiB
Makefile
# New ports collection makefile for: ficl
|
|
# Date created: 23 August 2002
|
|
# Whom: Bruce M Simpson
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ficl
|
|
PORTVERSION= 4.1.0
|
|
CATEGORIES= lang
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-all/${PORTNAME}${PORTVERSION:C/([[:digit:]]+\.[[:digit:]]+)\.0/\1/}
|
|
|
|
MAINTAINER= pavelivolkov@googlemail.com
|
|
COMMENT= Forth Inspired Command Language
|
|
|
|
LICENSE= unknown
|
|
LICENSE_NAME= BSD-style
|
|
LICENSE_TEXT= Description of the license can be obtained from the following URL: http://ficl.sourceforge.net/license.html
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
MAKE_JOBS_UNSAFE= YES
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64
|
|
ONLY_FOR_ARCHS_REASON= this port is not tested on anything other than i386 and amd64
|
|
|
|
USE_LDCONFIG= YES
|
|
|
|
ALL_TARGET= lib ${PORTNAME}
|
|
|
|
PLIST_FILES= bin/${PORTNAME} lib/lib${PORTNAME}.so lib/lib${PORTNAME}.so.${PORTVERSION} lib/lib${PORTNAME}.a
|
|
|
|
PORTDOCS= *
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
${INSTALL_LIB} ${WRKSRC}/lib${PORTNAME}.a ${PREFIX}/lib
|
|
${INSTALL_LIB} ${WRKSRC}/lib${PORTNAME}.so.${PORTVERSION} ${PREFIX}/lib
|
|
cd ${PREFIX}/lib && ${LN} -sf lib${PORTNAME}.so.${PORTVERSION} lib${PORTNAME}.so
|
|
.if !defined(NOPORTDOCS)
|
|
${INSTALL_DATA} -d -m 0755 ${DOCSDIR} ${DOCSDIR}/articles ${DOCSDIR}/graphics
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${WRKSRC}/doc/*.ico ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/articles/* ${DOCSDIR}/articles
|
|
${INSTALL_DATA} ${WRKSRC}/doc/graphics/* ${DOCSDIR}/graphics
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|