1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
Commit Graph

52 Commits

Author SHA1 Message Date
Jeremy Messenger
f6da1f0f80 Fix the plist by taking care of directories in X11BASE too.
lib/mono/1.0
	lib/mono/2.0

Approved by:	portmgr (marcus)
Reported by:	krion via pointyhat
2005-08-03 02:34:06 +00:00
Jeremy Messenger
41a33290a3 Really fix build for FreeBSD 7.x.
Change from:	${OSVERSION} > 700000
	To:		${OSVERSION} >= 700000

Reported by:	Anthony Ginepro <rapiere@renaissance.homeip.net>
2005-07-21 02:29:18 +00:00
Jeremy Messenger
2551dc8244 Fix the build on FreeBSD 7.x by teach it. I need to contact with mainstream
for use wildcard 'freebsd*' in general configure and 'freebsd[0-9] for any
version that need to be different.

Reported by:	krismail
2005-07-17 21:44:53 +00:00
Jeremy Messenger
c5afeece28 Fix the .so.0 -> .so, got bite by beagle when it can't find libsqlite.so.0.
Bump the PORTREVISION.
2005-07-12 22:02:38 +00:00
Jeremy Messenger
116f882ee0 Update to 1.1.8.2, most semaphore bugs in 1.1.8(.1) have been fixed.
Release Notes:
	http://www.go-mono.com/archive/1.1.8/
	http://www.go-mono.com/archive/1.1.8.1/

BTW: Welcome apeiron (Christopher Nehren <apeiron@comcast.net>) to BSD# team,
     he has the commit access over there.

BSD# - Project by:	http://www.mono-project.com/Mono:FreeBSD
2005-07-10 21:37:13 +00:00
Jeremy Messenger
635649a373 [...Took from jylefort's comment in email with a bit tweak...]
Mono will using Gamin or FAM by default if it exists in the runtime. If either
doesn't exist then it will use KeventWatcher.cs. Add auto-check on Gamin and
FAM for dependency. Bump the PORTREVISION to have the fix of kqueue.

Rationale:

	- KeventWatcher.cs is naive, it does not report changes made to
	  files within a monitored directory [1]
	- KeventWatcher.cs is implemented in C#, it is therefore slower than
	  Gamin or FAM, which are implemented in C and C++, respectively

[1] this is a bug which should be reported to the vendor

Testing, using the attached WatchTest.cs:

  With KeventWatcher.cs:

	$ mono WatchTest.exe /somedir &
	[1] 89857
	$ touch /somedir/foo
	OnCreatedEvent /somedir/foo
	$ echo foo >> /somedir/foo
	<nothing happens>

  With Gamin:

	$ mono WatchTest.exe /somedir &
	[1] 89889
	$ touch /somedir/foo
	OnCreatedEvent /somedir/foo
	$ echo foo >> /somedir/foo
	OnChangedEvent /somedir/foo

Submitted by:	jylefort
2005-06-01 06:53:26 +00:00
Jeremy Messenger
9978b53b8c Update to 1.1.7, Bill Middleton has been working against the Mono SVN to fix
FreeBSD problems with Mono. As of Mono 1.1.7, Mono has made a tremendous leap
in stability on FreeBSD. Many C# apps now works much better with Mono 1.1.7.

BSD# - Project by:	http://www.mono-project.com/Mono:FreeBSD
2005-05-16 06:32:36 +00:00
Joe Marcus Clarke
b3458f652e Bump PORTREVISION to chase the glib20 shared lib version change. 2005-03-12 10:54:27 +00:00
Jeremy Messenger
f77b32bbf9 Update to 1.0.6, see details: http://www.go-mono.com/archive/1.0.6/
Submitted by:	Tom McLaughlin <tmclaugh@sdf.lonestar.org>
Project by:	BSD# - http://forge.novell.com/modules/xfmod/project/?bsd-sharp
2005-02-27 04:27:54 +00:00
Jeremy Messenger
078be7acaa BSD# Project is taking the maintainership.
BSD# Project: http://forge.novell.com/modules/xfmod/project/?bsd-sharp

Submitted by:	tmclaugh
2005-02-19 20:54:15 +00:00
Mark Linimon
09721c15a9 With portmgr hat on, reset maintainership of these ports. Maintainer's
old email address bounces, and he has not been responsive to email on the
only other one we have for him.

These ports are now available for adoption.

Come back coop, we miss ya ...
2005-02-13 18:28:23 +00:00
Jeremy Messenger
6f5d92ea8c Fix the pkg-plist issue in gtk-sharp when it installs in mono's directory. Let
mono to take of ${X11BASE} directories same as in ${LOCALBASE}.

Project by:	BSD# - http://forge.novell.com/modules/xfmod/project/?bsd-sharp
Approved by:	maintainer timeout (still no contact for months)
2005-01-21 06:13:48 +00:00
Jeremy Messenger
b07f2f74d7 Update to 1.0.5.
Submitted by:	Tom McLaughlin <tmclaugh@sdf.lonestar.org>
Project by:	BSD# - http://forge.novell.com/modules/xfmod/project/?bsd-sharp
Approved by:	maintainer timeout (still no contact for months)
2004-12-10 19:46:49 +00:00
Jeremy Messenger
43bb7fa35d Update to 1.0.4. Mono has been set to IGNORE on 5.x if OSVERSION is below
503000.  Mono 1.0.1 and greater have been broken on earlier OSVERSION
versions. Warning, not all C# apps will not working, because FreeBSD still
need to work more on pthread issues. Few C# apps such as Blam, Muine, Tomboy
and etc work perfect.

PR:		ports/74397 ports/74398
Submitted by:	Tom McLaughlin <tmclaugh@sdf.lonestar.org>
Project by:	BSD# - http://forge.novell.com/modules/xfmod/project/?bsd-sharp
Approved by:	maintainer timeout (no contract for months)
2004-11-26 05:44:10 +00:00
Pav Lucistnik
1d45b6e08b - Don't hardcode shlib versions
- Libintl is not part of libc on FreeBSD

PR:		ports/70318
Submitted by:	Christopher Nehren <apeiron@comcast.net>
Approved by:	maintainer timeout (14 days)
2004-08-29 01:20:26 +00:00
Pav Lucistnik
43bacb976c - Chase redirect
PR:		ports/69568
Submitted by:	zeekay <zk@wspim.edu.pl>
2004-07-25 15:07:11 +00:00
Pav Lucistnik
1f2515a97b - Update to 1.0
PR:		ports/68804
Submitted by:	John Merryweather Cooper <johnmary@adelphia.net> (maintainer)
2004-07-14 16:40:17 +00:00
Pav Lucistnik
b3f304c72c - Update to 0.97
PR:		ports/68409
Submitted by:	John Merryweather Cooper <coop9211@uidaho.edu> (maintainer)
2004-06-27 13:03:45 +00:00
Joe Marcus Clarke
811ef5fa3b We have a new Mono vict^W^W^Wolunteer! John Merryweather Cooper has offered
to take these ports.
2004-06-24 20:05:54 +00:00
Joe Marcus Clarke
a07fa9e2b9 Make uses elif not elsif, Marcus.
Reported by:	Freshports
2004-06-12 22:19:10 +00:00
Joe Marcus Clarke
5a528c2932 Update to 0.95 (aka Mono 1.0 Beta 2). With this commit, plus David Xu's
KSE signal fixes from 6/12/2004, Mono now works on both 4.X and -CURRENT
(well, all but two benchmarks build and run successfully on both 4.X and
-CURRENT).

Note: you may need to rm -r ~/.wapi before building if you've tried older
versions of Mono.
2004-06-12 22:08:56 +00:00
Joe Marcus Clarke
450aec7485 Resign maintainership to ports@. gnome@ hasn't been that active in maintaining
this, and there are some non-trivial GC problems to overcome.  Hopefully
someone will step up with a passion for .NET.
2004-05-21 20:27:05 +00:00
Joe Marcus Clarke
731798cdcf Chase the glib20 update, and bump all affected ports' PORTREVISIONs. 2004-04-05 03:31:02 +00:00
Pav Lucistnik
db249059e4 - Add SIZE to GNOME ports
Submitted by:	trevor
2004-03-18 14:33:42 +00:00
Ade Lovett
3f651573ad Whoa there, boy, that's a mighty big commit y'all have there...
Begin autotools sanitization sequence by requiring ports to explicitly
specify which version of {libtool,autoconf,automake} they need, erasing
the concept of a "system default".

For ports-in-waiting:

	USE_LIBTOOL=YES		->	USE_LIBTOOL_VER=13
	USE_AUTOCONF=YES	->	USE_AUTOCONF_VER=213
	USE_AUTOMAKE=YES	->	USE_AUTOMAKE_VER=14

Ports attempting to use the old style system after June 1st 2004 will be
sorely disappointed.
2004-03-14 06:17:56 +00:00
Joe Marcus Clarke
4ca49b3eb6 Remove the tests directory from the build since it ropes in a bogus bash
BUILD_DEPENDS.  This problem will be resolved in the next release of mono.

Submitted by:	Tom McLaughlin <tmclaugh@sdf.lonestar.org>
2004-03-02 07:14:20 +00:00
Joe Marcus Clarke
161e75a7f6 Update to 0.30.1.
PR:		63172
Submitted by:	ZParta <zparta@skebo.ac>
2004-02-27 20:38:14 +00:00
Kris Kennaway
3f9f67c5ab Change BROKEN to IGNORE since the package actually builds (but does not work) 2004-02-16 12:24:44 +00:00
Joe Marcus Clarke
053fdb6a6b Bump PORTREVISION on all ports that depend on gettext to aid with upgrading.
(Part 2)
2004-02-04 05:21:48 +00:00
Joe Marcus Clarke
d4e03516e2 Remove a patch missed in the last commit.
Noticed by:	John Merryweather Cooper <johnmary@adelphia.net>
2003-12-16 06:36:38 +00:00
Joe Marcus Clarke
5059990708 Update to 0.29.
PR:		60228
Submitted by:	John Merryweather Cooper <johnmary@adelphia.net>
2003-12-15 21:36:37 +00:00
Joe Marcus Clarke
c46be41046 Mark BROKEN on -CURRENT. Having garbage collection enabled causes mono
to core dump when it tries to allocate what seems like 512 MB of memory
when it tries to do garbage collection.  Anyone wanting to look at fixing
boehm-gc on FreeBSD is more than welcome to submit patches.  You will not
be turned away.
2003-10-17 03:27:36 +00:00
Joe Marcus Clarke
b892cda2b1 I believe this works now. I am able to compile and run some C# apps included
in the mono/tests/ subdirectory, and it no longer hangs or dies with weird
errors.  (And, yes, I do have garbage collecting enabled).

I'll let the C# user community be my judge.  There still may be some issues
since boehm-gc isn't fully functional in its multi-threaded state on FreeBSD.
2003-10-07 03:33:38 +00:00
Joe Marcus Clarke
746cb37fab Update to 0.28, and mark that it is only for i386. Note, it's still not
clear whether this works correctly on FreeBSD.
2003-10-06 17:55:54 +00:00
Adam Weinberger
c413d0b2b0 Utilize USE_GNOME= pkgconfig. 2003-06-16 20:52:58 +00:00
Joe Marcus Clarke
536101b08e Add some missing libraries to the plist.
Reported by:	bento
2003-06-16 00:12:22 +00:00
Juli Mallett
6d8894d265 Upgrade to latest Mono (0.24 release), which includes most notably
a newer and much better JIT.

Approved by:	marcus (mentor)
2003-05-07 05:10:28 +00:00
Joe Marcus Clarke
0874a46409 Convert to new GNOME infrastructure. 2003-04-22 04:46:36 +00:00
Joe Marcus Clarke
b33eaf3276 Remove USE_GNOMENG. 2003-04-20 19:54:55 +00:00
Juli Mallett
c168cc0473 Update to 0.21.
Approved by:	marcus (mentor)
2003-02-28 07:05:20 +00:00
Juli Mallett
98e93a4bec Update to 0.20, de-pkg-comment.
Approved by:	marcus (mentor)
2003-02-26 02:28:59 +00:00
Joe Marcus Clarke
ad33b9c673 Chase glib20's shared lib version. 2003-02-07 18:59:45 +00:00
Juli Mallett
4585462e40 Update to Mono 0.19.
Reviewed by:	marcus (mentor)
2003-01-26 21:03:08 +00:00
Joe Marcus Clarke
c8b5f8603c Update to 0.18. 2003-01-13 17:40:55 +00:00
Joe Marcus Clarke
786d71d715 Define INSTALLS_SHLIB. 2003-01-04 16:57:51 +00:00
Joe Marcus Clarke
df8b044cb1 Update to 0.17.
Requested by:	many
Not tested by:	me
2003-01-01 19:16:15 +00:00
Joe Marcus Clarke
09d0027fd2 Fix build on -CURRENT and with bison 1.75.
Reported by:	bento
2002-11-30 20:11:52 +00:00
Joe Marcus Clarke
8e27e3d244 Fix build on -current.
Submitted by:	Patrick Hartling <patrick@137.org>
2002-09-10 18:25:55 +00:00
Yukihiro Nakai
bcd77439fc Add fix for bind critical bug.
Add fix OSREL in Makefile
2002-08-12 09:20:52 +00:00
Yukihiro Nakai
cc5e06329e Update to 0.13 2002-08-03 13:12:47 +00:00