mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
0368e54506
- Add NLS option - Pass maintainership to submitter - While I'm here: - Simplify GUILE_VER - Remove OPTIONS_DEFAULT - USe NLS_CONFIGURE_ENABLE PR: ports/189115 Submitted by: Muhammad Moinur Rahman <5u623l20@gmail.com>
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# Created by: jseger@FreeBSD.org
|
|
# $FreeBSD$
|
|
# $MCom: ports/lang/guile/Makefile,v 1.1 2006/09/12 14:57:06 ahze Exp $
|
|
|
|
PORTNAME= guile
|
|
PORTVERSION= 1.8.8
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang scheme
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= guile
|
|
|
|
MAINTAINER= 5u623l20@gmail.com
|
|
COMMENT= GNU Ubiquitous Intelligent Language for Extension
|
|
|
|
LICENSE= LGPL21
|
|
|
|
LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp
|
|
|
|
USE_AUTOTOOLS= autoconf libltdl
|
|
USES= gmake ncurses
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
CFLAGS+= -fwrapv
|
|
INSTALL_TARGET= install-strip
|
|
|
|
PLIST_SUB= GUILE_VER=${PORTVERSION:R}
|
|
|
|
REINPLACE_FILES= libguile/smob.c libguile/filesys.c libguile/gc.c \
|
|
libguile/mallocs.c libguile/eval.c libguile/gc-malloc.c \
|
|
libguile/ports.c libguile/gc-mark.c libguile/gc_os_dep.c
|
|
|
|
INFO= goops guile-tut guile r5rs
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
NLS_USES= gettext
|
|
|
|
post-extract:
|
|
cd ${WRKSRC}; ${CHMOD} u+w ${REINPLACE_FILES}
|
|
@${FIND} ${WRKSRC}/doc -name "*.info*" -delete
|
|
|
|
post-patch:
|
|
@cd ${WRKSRC} ; \
|
|
${REINPLACE_CMD} -e 's|<malloc\.h>|<stdlib.h>|g' ${REINPLACE_FILES}
|
|
@${REINPLACE_CMD} -e 's|2.63|%%AUTOCONF_VERSION%%|g' ${WRKSRC}/aclocal.m4
|
|
|
|
.include <bsd.port.mk>
|