aboutsummaryrefslogblamecommitdiff
path: root/lang/nickle/Makefile
blob: 1331f8caae73700ce736457c6d32bf8bfde38456 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                      
           

                      
                    
                 
                    
                                              
 
                               
                                                     
 
                   
                                 
 
                                      
 
                   
                 
 
                                                                         
                                                                         
                        
 
                        
 
           

                                                                  
 
                         
                                           

                                                                                
 
                      
# Created by: Christopher Elkins <chrise@scardini.com>
# $FreeBSD$

PORTNAME=	nickle
PORTVERSION=	2.84
PORTREVISION=	1
CATEGORIES=	lang
MASTER_SITES=	http://www.nickle.org/release/

MAINTAINER=	wen@FreeBSD.org
COMMENT=	Numeric-oriented programming language

LICENSE=	MIT
LICENSE_FILE=	${WRKSRC}/COPYING

USES=		gmake ncurses readline

GNU_CONFIGURE=	yes
PORTEXAMPLES=	*

# Nickle now has bindings which are likely to pull in libraries that need
# libpthread.  Link to it now explicitly, or it wouldn't work at runtime.
LDFLAGS+=	-pthread

OPTIONS_DEFINE=	EXAMPLES

post-patch:
	@${REINPLACE_CMD} -e '/^SUBDIRS/s|examples|| ; s| -O2||' \
		${WRKSRC}/Makefile.in

post-install-EXAMPLES-on:
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
	${FIND} ${WRKSRC}/examples -name 'Makefile*' -exec ${RM} {} +
	cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . "${STAGEDIR}${EXAMPLESDIR}"

.include <bsd.port.mk>