summaryrefslogtreecommitdiff
path: root/lang/librep/Makefile
diff options
context:
space:
mode:
authorjlam <jlam>2000-10-27 08:01:46 +0000
committerjlam <jlam>2000-10-27 08:01:46 +0000
commit1d1a7d543ad001181952ffb48f2a75450db8f852 (patch)
treee203de655ad1f7da5467466d2dd94a28d0f35421 /lang/librep/Makefile
parentc45eb1f017756a71fef3e97777454784652a5375 (diff)
downloadpkgsrc-1d1a7d543ad001181952ffb48f2a75450db8f852.tar.gz
Update librep to 0.13.1. Add dependency on gettext and use installed
libintl for i18n needs. Changes since version 0.12.4 are *lots* of bug fixes, module namespace reorganization, several _incompatible_ VM changes, and the addition of several new modules, including a safe-interpreter for untrusted bytecodes.
Diffstat (limited to 'lang/librep/Makefile')
-rw-r--r--lang/librep/Makefile20
1 files changed, 12 insertions, 8 deletions
diff --git a/lang/librep/Makefile b/lang/librep/Makefile
index 116b5f6bb4b..f3e0a1273a2 100644
--- a/lang/librep/Makefile
+++ b/lang/librep/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2000/08/07 15:45:15 danw Exp $
+# $NetBSD: Makefile,v 1.5 2000/10/27 08:01:46 jlam Exp $
#
-DISTNAME= librep-0.12.4
+DISTNAME= librep-0.13.1
CATEGORIES= lang devel
MASTER_SITES= ftp://librep.sourceforge.net/pub/librep/
@@ -10,13 +10,17 @@ HOMEPAGE= http://librep.sourceforge.net/
DEPENDS+= gmp>=3.0:../../devel/gmp
DEPENDS+= gdbm>=1.8.0:../../databases/gdbm
+DEPENDS+= gettext>=0.10.35nb1:../../devel/gettext
DEPENDS+= readline>=4.0:../../devel/readline
-GNU_CONFIGURE= yes
-CONFIGURE_ARGS= --with-readline --with-gmp-prefix=${LOCALBASE} \
- --with-gdbm-prefix=${LOCALBASE}
-USE_GMAKE= yes
-USE_LIBTOOL= yes
-LTCONFIG_OVERRIDE= ${WRKSRC}/etc/ltconfig
+USE_GMAKE= # defined
+USE_LIBTOOL= # defined
+LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
+
+GNU_CONFIGURE= # defined
+CONFIGURE_ARGS+= --with-readline
+CONFIGURE_ARGS+= --with-gmp-prefix=${LOCALBASE}
+CONFIGURE_ARGS+= --with-gdbm-prefix=${LOCALBASE}
+CONFIGURE_ENV+= LIBS="-lintl"
.include "../../mk/bsd.pkg.mk"