Re: is somebody working on a xorg 7.1 port to FreeBSD ?

2006-08-08 Thread Florent Thoumie
On Sun, 2006-08-06 at 21:48 -0700, vehemens wrote:
 On Thursday 03 August 2006 23:37, Mark Linimon wrote:
  As is asked and answered every week or so: yes.  It is not a simple matter
  of just plugging it in.
 
 Given that it's asked every week, maybe somebody could provide weekly status 
 to cut down on the questions ?}

Or read the timeline on the wiki. If you don't see any changes, then
nothing happened.

 Having tried xorg-modular-exp myself, I can see that there is a fair 
 amount of work remaining to get it fully integrated.

Sure, I've put a TODO list. I think it's pretty exhaustive, but that's
the first time I work on xorg ports, so I may be overlooking something.

 Is the plan to have both 6.9 and 7.1 releases coexist to allow the 
 rest of the collection to catch up?

Don't count on it. The necessary work on meta-ports will be done, so the
upgrade should be straightforward (note the should).

-- 
Florent Thoumie
[EMAIL PROTECTED]
FreeBSD Committer


signature.asc
Description: This is a digitally signed message part


Re: is somebody working on a xorg 7.1 port to FreeBSD ?

2006-08-07 Thread Peter Jeremy
On Sun, 2006-Aug-06 21:48:47 -0700, vehemens wrote:
On Thursday 03 August 2006 23:37, Mark Linimon wrote:
 As is asked and answered every week or so: yes.  It is not a simple matter
 of just plugging it in.

Given that it's asked every week, maybe somebody could provide weekly status 
to cut down on the questions ?}

That would require someone to provide the status reports.  How about
you wander over to freebsd-x11, read through the traffic and provide
a status report yourself.

-- 
Peter Jeremy


pgpM8AJqX4cTH.pgp
Description: PGP signature


Re: [is somebody working on a xorg 7.1 port to FreeBSD ?]

2006-08-05 Thread vehemens
On Thursday 03 August 2006 23:12, [EMAIL PROTECTED] wrote:
 What error message exactly you have got? The build procedure should look
 like this (assume we're installing in /work/x11r7:
 1) downlod Xorg source, unpack
 2) download mesa src
 2) install devel/gnu-autoconf, devel/gnu-automake
 3) mkdir -p /work/x11r7/share/aclocal
 4) mkdir -p /work/x11r7/lib/pkgconfig
 5)
 setenv PATH /usr/local/gnu-autotools/bin:/work/x11r7/bin:$PATH
 setenv ACLOCAL aclocal -I /usr/local/gnu-autotools/share/aclocal -I
 /usr/local/

 share/aclocal -I /work/x11r7/share/aclocal -I /usr/X11R6/share/aclocal
 setenv PKG_CONFIG_PATH
 /work/x11r7/lib/pkgconfig:/usr/X11R6/libdata/pkgconfig

 6)cd srcdir
 7) ./util/modular/build.sh -m PATH_TO_MESA /work/x11r7 -n -s sudo
 /work/x11r7

 Hope this helps

Thanks for the help.  It allowed me to run the server.  The problem was a 
result of my not including the libtool macros with:
setenv ACLOCAL aclocal -I /usr/local/share/aclocal

There appears to be a number of other problems with building the code out of 
the box.  Here is my current list:

1) Script git_xorg doesn't pull xserver, font and xcb files.  Modified script 
to pull/update files.
2) Xcb doesn't build (needs gnome?).  Used setenv USE_XCB NO for now.
3) Apps rendercheck and xdriinfo don't build.
4) A number of other apps aren't in the build script.
5) A number of video drivers don't build.  Many of them due to missing GL 
headers.  Copying in the headers allowed many of them to build.
6) Xkbdata doesn't build (missing?).
7) Fonts arabic-misc and mutt-misc don't build.  Added empty README files.
8) Mesa current doesn't build (multiple problems?).
9) A lot of freebsd and mesa scripts are hardcoded with /usr/X11R6 requiring 
additional work to have multiple builds.


___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re:[is somebody working on a xorg 7.1 port to FreeBSD ?]

2006-08-04 Thread ssedov
 ssedov at mbsd.msk.ru wrote:
 
 You can install X.org from GIT repository - it works fine out-of-the-box
 on freebsd. Just install it under the different PREFIX (e.g. /usr/x11r7)
 and you will not have problems with uninstall.
 
 I don't appear to have the same luck as I'm having problems with several of 
 the autotool macros such as AM_PROG_LIBTOOL.
 
 Found an email that mentioned there was regression in libtool 1.5.22, but not 

 sure if it is applicable is this case.
 
 I'm using 6.1 with a drm patch from 6.0 current along with ports as of 
 7/28/06 

 and xorg as of 8/1/06.
 

What error message exactly you have got? The build procedure should look
like this (assume we're installing in /work/x11r7:
1) downlod Xorg source, unpack
2) download mesa src
2) install devel/gnu-autoconf, devel/gnu-automake
3) mkdir -p /work/x11r7/share/aclocal
4) mkdir -p /work/x11r7/lib/pkgconfig
5)
setenv PATH /usr/local/gnu-autotools/bin:/work/x11r7/bin:$PATH
setenv ACLOCAL aclocal -I /usr/local/gnu-autotools/share/aclocal -I /usr/local/

share/aclocal -I /work/x11r7/share/aclocal -I /usr/X11R6/share/aclocal
setenv PKG_CONFIG_PATH /work/x11r7/lib/pkgconfig:/usr/X11R6/libdata/pkgconfig

6)cd srcdir
7) ./util/modular/build.sh -m PATH_TO_MESA /work/x11r7 -n -s sudo /work/x11r7

Hope this helps
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: is somebody working on a xorg 7.1 port to FreeBSD ?

2006-07-30 Thread Stanislav Sedov
On Sun, 30 Jul 2006 10:59:22 -0700
vehemens [EMAIL PROTECTED] mentioned:

 IMHO you should wait until we are ready to do a test-run on pointyhat.
 Otherwise you are going to be finding problems one-at-a-time that we
 can otherwise find out in bulk.
 
 How does one get access to the port code?
 

You can install X.org from GIT repository - it works fine out-of-the-box
on freebsd. Just install it under the different PREFIX (e.g. /usr/x11r7)
and you will not have problems with uninstall.


-- 
Stanislav Sedov MBSD labs, Inc. [EMAIL PROTECTED]
Россия, Москва http://mbsd.msk.ru


If the facts don't fit the theory, change the facts.  -- A. Einstein

PGP fingerprint:  F21E D6CC 5626 9609 6CE2  A385 2BF5 5993 EB26 9581


signature.asc
Description: PGP signature


Re: is somebody working on a xorg 7.1 port to FreeBSD ?

2006-07-24 Thread Elisey O. Savateev
Fri, 21 Jul 2006 08:51:10 +0200
Andreas Klemm [EMAIL PROTECTED] Вы писали:

 For me personally it means to get a chance of getting
 perhaps drm to run on my graphics card.

DRM support is not associated with concrete version of X11.
Look at /usr/ports/graphics/dri-devel/. Maybe DRM is already supported
on your card.

---
Elisey O. Savateev [EMAIL PROTECTED]
http://bio3k.softboard.ru | ICQ: 955583
PGP/GPG pubkey: http://bio3k.softboard.ru/uploads/etc/pubkey.asc
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: is somebody working on a xorg 7.1 port to FreeBSD ?

2006-07-24 Thread Stanislav Sedov
On Mon, 24 Jul 2006 15:19:53 +0600
Elisey O. Savateev [EMAIL PROTECTED] mentioned:

 
   DRM support is not associated with concrete version of X11.
 Look at /usr/ports/graphics/dri-devel/. Maybe DRM is already supported
 on your card.
 

It's not absolutely right - recent DRM and libdrm requires specific
ddx support (from modular X.org).

-- 
Stanislav Sedov MBSD labs, Inc. [EMAIL PROTECTED]
Россия, Москва http://mbsd.msk.ru


If the facts don't fit the theory, change the facts.  -- A. Einstein

PGP fingerprint:  F21E D6CC 5626 9609 6CE2  A385 2BF5 5993 EB26 9581


signature.asc
Description: PGP signature


Re: is somebody working on a xorg 7.1 port to FreeBSD ?

2006-07-21 Thread Joel Dahl
On Fri, 2006-07-21 at 08:51 +0200, Andreas Klemm wrote:
 Hi,
 
 interested to know, if there was only a talk or work going
 on to bring xorg 7.1 into freebsd ports.

Yes, see: http://agrajag.ijs.si/trac/wiki/X11R7.0

-- 
Joel

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]