diff options
author | mezz <mezz@FreeBSD.org> | 2005-07-13 06:02:38 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2005-07-13 06:02:38 +0800 |
commit | aab2bda8cee8d4ce7a1ee54cdefecebb2049a9ef (patch) | |
tree | 2a26f1a0e1fa1bf38293718ba3ef621268fc71a5 /lang/mono | |
parent | 4b48a6efa5d2da3e4da58ca91bd83b85816d74fb (diff) | |
download | freebsd-ports-gnome-aab2bda8cee8d4ce7a1ee54cdefecebb2049a9ef.tar.gz freebsd-ports-gnome-aab2bda8cee8d4ce7a1ee54cdefecebb2049a9ef.tar.zst freebsd-ports-gnome-aab2bda8cee8d4ce7a1ee54cdefecebb2049a9ef.zip |
Fix the .so.0 -> .so, got bite by beagle when it can't find libsqlite.so.0.
Bump the PORTREVISION.
Diffstat (limited to 'lang/mono')
-rw-r--r-- | lang/mono/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/mono/Makefile b/lang/mono/Makefile index d7a3e122c31e..9c2c973db9c5 100644 --- a/lang/mono/Makefile +++ b/lang/mono/Makefile @@ -2,12 +2,13 @@ # Date created: 22 July 2002 # Whom: Yukihiro Nakai <nakai@FreeBSD.org> # -# $Id: Makefile,v 1.29 2005/07/07 05:52:45 tmclau02 Exp $ +# $Id: Makefile,v 1.30 2005/07/12 22:00:50 mezz7 Exp $ # $FreeBSD$ # PORTNAME= mono PORTVERSION= 1.1.8.2 +PORTREVISION= 1 CATEGORIES= lang MASTER_SITES= http://www.go-mono.com/sources/mono-1.1/ @@ -59,6 +60,8 @@ USE_FAM= yes post-patch: @${REINPLACE_CMD} -e 's|%%X11BASE%%|${X11BASE}|g' \ ${WRKSRC}/mono/metadata/assembly.c + @${REINPLACE_CMD} -e 's|.so.0|.so|g' \ + ${WRKSRC}/configure tests: build @${ECHO_MSG} "===> Running mono regression tests" |