Bump PKGREVISION for lang/librep and update the buildlink2.mk dependency
to the latest librep. librep installs and uses its own libtool for use by rep-* packages. We replace librep's libtool with a symlink to ${LOCALBASE}/bin/libtool and add a dependency on libtool-base. This addresses PR 19495 by Bill Sommerfeld.
This commit is contained in:
parent
dbbb22cec3
commit
20bfa340fb
3 changed files with 13 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: CHANGES,v 1.880 2002/12/23 01:58:26 cjep Exp $
|
||||
$NetBSD: CHANGES,v 1.881 2002/12/23 04:26:28 jlam Exp $
|
||||
|
||||
Changes to the packages collection and infrastructure in 2002:
|
||||
|
||||
|
@ -4066,3 +4066,4 @@ Changes to the packages collection and infrastructure in 2002:
|
|||
Added gp-factint-1.3 [cjep 2002-12-23]
|
||||
Updated ffmpeg to 0.4.5nb2 [wiz 2002-12-23]
|
||||
Added unzoo-4.4 [cjep 2002-12-23]
|
||||
Updated librep to 0.15.1nb3 [jlam 2002-12-23]
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# $NetBSD: Makefile,v 1.24 2002/12/11 14:03:40 drochner Exp $
|
||||
# $NetBSD: Makefile,v 1.25 2002/12/23 04:25:01 jlam Exp $
|
||||
#
|
||||
|
||||
DISTNAME= librep-${REP_VERS}
|
||||
REP_VERS= 0.15.1
|
||||
PKGREVISION= 2
|
||||
PKGREVISION= 3
|
||||
CATEGORIES= lang devel
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=librep/}
|
||||
|
||||
|
@ -11,12 +11,15 @@ MAINTAINER= danw@netbsd.org
|
|||
HOMEPAGE= http://librep.sourceforge.net/
|
||||
COMMENT= Emacs Lisp-like runtime library, interpreter, compiler and VM
|
||||
|
||||
DEPENDS+= libtool-base>=${LIBTOOL_REQD}:../../devel/libtool-base
|
||||
|
||||
USE_GNU_READLINE= # uses rl_basic_quote_characters
|
||||
|
||||
USE_BUILDLINK2= # defined
|
||||
USE_GMAKE= # defined
|
||||
USE_LIBTOOL= # defined
|
||||
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
|
||||
REP_LIBTOOL= ${PREFIX}/libexec/rep/${MACHINE_GNU_PLATFORM}/libtool
|
||||
|
||||
GNU_CONFIGURE= # defined
|
||||
CONFIGURE_ARGS+= --with-readline
|
||||
|
@ -27,6 +30,10 @@ TEXINFO_PATTERNS+= Makedefs.in
|
|||
|
||||
PLIST_SUBST+= REP_VERS=${REP_VERS}
|
||||
|
||||
post-install:
|
||||
${RM} -f ${REP_LIBTOOL}
|
||||
${LN} -sf ${LIBTOOL} ${REP_LIBTOOL}
|
||||
|
||||
.include "../../databases/gdbm/buildlink2.mk"
|
||||
.include "../../devel/gettext-lib/buildlink2.mk"
|
||||
.include "../../devel/gmp/buildlink2.mk"
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
# $NetBSD: buildlink2.mk,v 1.1 2002/10/08 13:12:25 wiz Exp $
|
||||
# $NetBSD: buildlink2.mk,v 1.2 2002/12/23 04:25:01 jlam Exp $
|
||||
#
|
||||
|
||||
.if !defined(LIBREP_BUILDLINK2_MK)
|
||||
LIBREP_BUILDLINK2_MK= # defined
|
||||
|
||||
BUILDLINK_PACKAGES+= librep
|
||||
BUILDLINK_DEPENDS.librep?= librep>=0.15.1nb1
|
||||
BUILDLINK_DEPENDS.librep?= librep>=0.15.1nb3
|
||||
BUILDLINK_PKGSRCDIR.librep?= ../../lang/librep
|
||||
|
||||
EVAL_PREFIX+= BUILDLINK_PREFIX.librep=librep
|
||||
|
|
Loading…
Reference in a new issue