diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-02-05 06:10:54 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-02-05 06:10:54 +0000 |
commit | 3ea9b25be8a7bc793c3f85a9a7d9cc454ed6e52b (patch) | |
tree | 22361078cef46ac2b019b83c9a6d6537ed72ab21 /lang/guile/Makefile | |
parent | Make it compilable with newer bison. (diff) |
* Teach guile about LOCALBASE and X11BASE when looking for scheme modules
* Assign maintainership to gnome
Notes
Notes:
svn path=/head/; revision=74791
Diffstat (limited to 'lang/guile/Makefile')
-rw-r--r-- | lang/guile/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lang/guile/Makefile b/lang/guile/Makefile index b30cdb5e987f..3cdb354e9a90 100644 --- a/lang/guile/Makefile +++ b/lang/guile/Makefile @@ -7,12 +7,12 @@ PORTNAME= guile PORTVERSION= 1.4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= guile -MAINTAINER= ports@FreeBSD.org +MAINTAINER= gnome@FreeBSD.org LIB_DEPENDS= ltdl.1:${PORTSDIR}/devel/libtool @@ -35,5 +35,7 @@ post-extract: post-patch: cd ${WRKSRC} ; \ ${REINPLACE_CMD} -e 's|<malloc\.h>|<stdlib.h>|g' ${REINPLACE_FILES} + @${REINPLACE_CMD} -e 's|%%X11BASE%%|${X11BASE}|g ; \ + s|%%LOCALBASE|${LOCALBASE}|g' ${WRKSRC}/libguile/load.c .include <bsd.port.mk> |