* [Buildroot] [buildroot 0001485]: DirectFB: Download site moved and x11 always required
@ 2007-09-04 20:59 bugs at busybox.net
2007-09-04 22:15 ` Ulf Samuelsson
0 siblings, 1 reply; 6+ messages in thread
From: bugs at busybox.net @ 2007-09-04 20:59 UTC (permalink / raw)
To: buildroot
A NOTE has been added to this issue.
======================================================================
http://busybox.net/bugs/view.php?id=1485
======================================================================
Reported By: HappyCactus
Assigned To: buildroot
======================================================================
Project: buildroot
Issue ID: 1485
Category: Architecture Specific
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
======================================================================
Date Submitted: 09-04-2007 08:03 PDT
Last Modified: 09-04-2007 13:59 PDT
======================================================================
Summary: DirectFB: Download site moved and x11 always
required
Description:
The directFB main site has removed the 1.0.0 version.
Now 1.0.1 is the current stable version.
Also, configure do not specify either --enable-x11 or --disable-x11, so
that x11 is always required to compile the package.
Working patch attached.
======================================================================
----------------------------------------------------------------------
bernhardf - 09-04-07 13:59
----------------------------------------------------------------------
+ifeq ($(BR2_PACKAGE_XORG7),y)
+DIRECTFB_X := --enable-x11
+else
+DIRECTFB_X := --disable-x11
+endif
+
This is not really accurate:
If BR2_PACKAGE_XSERVER_none is y, then disable-x11, else --enable-x11.
Please send patches to the mailing list and only add them to the
bugtracker if it is not applied (or explicitely rejected) within a
reasonable amount of time, TIA
Issue History
Date Modified Username Field Change
======================================================================
09-04-07 08:03 HappyCactus New Issue
09-04-07 08:03 HappyCactus Status new => assigned
09-04-07 08:03 HappyCactus Assigned To => buildroot
09-04-07 08:03 HappyCactus File Added: buildroot-directfb-x11.patch
09-04-07 13:59 bernhardf Note Added: 0002711
======================================================================
^ permalink raw reply [flat|nested] 6+ messages in thread* [Buildroot] [buildroot 0001485]: DirectFB: Download site moved and x11 always required
2007-09-04 20:59 [Buildroot] [buildroot 0001485]: DirectFB: Download site moved and x11 always required bugs at busybox.net
@ 2007-09-04 22:15 ` Ulf Samuelsson
2007-09-04 22:23 ` Bernhard Fischer
0 siblings, 1 reply; 6+ messages in thread
From: Ulf Samuelsson @ 2007-09-04 22:15 UTC (permalink / raw)
To: buildroot
tis 2007-09-04 klockan 13:59 -0700 skrev bugs at busybox.net:
> A NOTE has been added to this issue.
> ======================================================================
> http://busybox.net/bugs/view.php?id=1485
> ======================================================================
> Reported By: HappyCactus
> Assigned To: buildroot
> ======================================================================
> Project: buildroot
> Issue ID: 1485
> Category: Architecture Specific
> Reproducibility: always
> Severity: minor
> Priority: normal
> Status: assigned
> ======================================================================
> Date Submitted: 09-04-2007 08:03 PDT
> Last Modified: 09-04-2007 13:59 PDT
> ======================================================================
> Summary: DirectFB: Download site moved and x11 always
> required
> Description:
> The directFB main site has removed the 1.0.0 version.
> Now 1.0.1 is the current stable version.
> Also, configure do not specify either --enable-x11 or --disable-x11, so
> that x11 is always required to compile the package.
> Working patch attached.
> ======================================================================
>
> ----------------------------------------------------------------------
> bernhardf - 09-04-07 13:59
> ----------------------------------------------------------------------
> +ifeq ($(BR2_PACKAGE_XORG7),y)
> +DIRECTFB_X := --enable-x11
> +else
> +DIRECTFB_X := --disable-x11
> +endif
> +
> This is not really accurate:
> If BR2_PACKAGE_XSERVER_none is y, then disable-x11, else --enable-x11.
>
> Please send patches to the mailing list and only add them to the
> bugtracker if it is not applied (or explicitely rejected) within a
> reasonable amount of time, TIA
I will try this:
Index: package/directfb/directfb.mk
===================================================================
--- package/directfb/directfb.mk (revision 19784)
+++ package/directfb/directfb.mk (arbetskopia)
@@ -5,7 +5,7 @@
#############################################################
#DIRECTFB_VERSION:=0.9.25.1
#DIRECTFB_SITE:=http://www.directfb.org/downloads/Old
-DIRECTFB_VERSION:=1.0.0
+DIRECTFB_VERSION:=1.0.1
DIRECTFB_SITE:=http://www.directfb.org/downloads/Core
DIRECTFB_SOURCE:=DirectFB-$(DIRECTFB_VERSION).tar.gz
DIRECTFB_CAT:=$(ZCAT)
@@ -18,6 +18,11 @@
DIRECTFB_MULTI:=
DIRECTFB_FUSION:=
endif
+ifeq ($(BR2_PACKAGE_XSERVER_none),y)
+DIRECTFB_X := --disable-x11
+else
+DIRECTFB_X := --enable-x11
+endif
$(DL_DIR)/$(DIRECTFB_SOURCE):
$(WGET) -P $(DL_DIR) $(DIRECTFB_SITE)/$(DIRECTFB_SOURCE)
@@ -55,6 +60,7 @@
--with-gfxdrivers=cle266,unichrome \
--enable-shared \
$(DIRECTFB_MULTI) \
+ $(DIRECTFB_X) \
--enable-jpeg \
--enable-png \
--enable-linux-input \
--
Best Regards,
Ulf Samuelsson
^ permalink raw reply [flat|nested] 6+ messages in thread* [Buildroot] [buildroot 0001485]: DirectFB: Download site moved and x11 always required
2007-09-04 22:15 ` Ulf Samuelsson
@ 2007-09-04 22:23 ` Bernhard Fischer
2007-09-04 22:38 ` Ulf Samuelsson
0 siblings, 1 reply; 6+ messages in thread
From: Bernhard Fischer @ 2007-09-04 22:23 UTC (permalink / raw)
To: buildroot
On Wed, Sep 05, 2007 at 12:15:57AM +0200, Ulf Samuelsson wrote:
>tis 2007-09-04 klockan 13:59 -0700 skrev bugs at busybox.net:
>> A NOTE has been added to this issue.
>> ======================================================================
>> http://busybox.net/bugs/view.php?id=1485
>> ======================================================================
>> Reported By: HappyCactus
>> Assigned To: buildroot
>> ======================================================================
>> Project: buildroot
>> Issue ID: 1485
>> Category: Architecture Specific
>> Reproducibility: always
>> Severity: minor
>> Priority: normal
>> Status: assigned
>> ======================================================================
>> Date Submitted: 09-04-2007 08:03 PDT
>> Last Modified: 09-04-2007 13:59 PDT
>> ======================================================================
>> Summary: DirectFB: Download site moved and x11 always
>> required
>> Description:
>> The directFB main site has removed the 1.0.0 version.
>> Now 1.0.1 is the current stable version.
>> Also, configure do not specify either --enable-x11 or --disable-x11, so
>> that x11 is always required to compile the package.
>> Working patch attached.
>> ======================================================================
>>
>> ----------------------------------------------------------------------
>> bernhardf - 09-04-07 13:59
>> ----------------------------------------------------------------------
>> +ifeq ($(BR2_PACKAGE_XORG7),y)
>> +DIRECTFB_X := --enable-x11
>> +else
>> +DIRECTFB_X := --disable-x11
>> +endif
>> +
>> This is not really accurate:
>> If BR2_PACKAGE_XSERVER_none is y, then disable-x11, else --enable-x11.
>>
>> Please send patches to the mailing list and only add them to the
>> bugtracker if it is not applied (or explicitely rejected) within a
>> reasonable amount of time, TIA
>
>
>I will try this:
>
>Index: package/directfb/directfb.mk
>===================================================================
>--- package/directfb/directfb.mk (revision 19784)
>+++ package/directfb/directfb.mk (arbetskopia)
>@@ -5,7 +5,7 @@
> #############################################################
> #DIRECTFB_VERSION:=0.9.25.1
> #DIRECTFB_SITE:=http://www.directfb.org/downloads/Old
>-DIRECTFB_VERSION:=1.0.0
>+DIRECTFB_VERSION:=1.0.1
> DIRECTFB_SITE:=http://www.directfb.org/downloads/Core
> DIRECTFB_SOURCE:=DirectFB-$(DIRECTFB_VERSION).tar.gz
> DIRECTFB_CAT:=$(ZCAT)
>@@ -18,6 +18,11 @@
> DIRECTFB_MULTI:=
> DIRECTFB_FUSION:=
> endif
>+ifeq ($(BR2_PACKAGE_XSERVER_none),y)
>+DIRECTFB_X := --disable-x11
>+else
>+DIRECTFB_X := --enable-x11
>+endif
whitespace, please.
>
> $(DL_DIR)/$(DIRECTFB_SOURCE):
> $(WGET) -P $(DL_DIR) $(DIRECTFB_SITE)/$(DIRECTFB_SOURCE)
>@@ -55,6 +60,7 @@
> --with-gfxdrivers=cle266,unichrome \
> --enable-shared \
> $(DIRECTFB_MULTI) \
>+ $(DIRECTFB_X) \
> --enable-jpeg \
> --enable-png \
> --enable-linux-input \
Sounds fine to me, please go ahead, Ulf.
PS: didn't look but what does directfb unconditionally enable jpeg? png
may be ok, although i wouldn't force it. And the gfx-drivers should imho
be configurable via the menu and not hardcoded.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [buildroot 0001485]: DirectFB: Download site moved and x11 always required
2007-09-04 22:23 ` Bernhard Fischer
@ 2007-09-04 22:38 ` Ulf Samuelsson
0 siblings, 0 replies; 6+ messages in thread
From: Ulf Samuelsson @ 2007-09-04 22:38 UTC (permalink / raw)
To: buildroot
ons 2007-09-05 klockan 00:23 +0200 skrev Bernhard Fischer:
> On Wed, Sep 05, 2007 at 12:15:57AM +0200, Ulf Samuelsson wrote:
> >tis 2007-09-04 klockan 13:59 -0700 skrev bugs at busybox.net:
> >> A NOTE has been added to this issue.
> >> ======================================================================
> >> http://busybox.net/bugs/view.php?id=1485
> >> ======================================================================
> >> Reported By: HappyCactus
> >> Assigned To: buildroot
> >> ======================================================================
> >> Project: buildroot
> >> Issue ID: 1485
> >> Category: Architecture Specific
> >> Reproducibility: always
> >> Severity: minor
> >> Priority: normal
> >> Status: assigned
> >> ======================================================================
> >> Date Submitted: 09-04-2007 08:03 PDT
> >> Last Modified: 09-04-2007 13:59 PDT
> >> ======================================================================
> >> Summary: DirectFB: Download site moved and x11 always
> >> required
> >> Description:
> >> The directFB main site has removed the 1.0.0 version.
> >> Now 1.0.1 is the current stable version.
> >> Also, configure do not specify either --enable-x11 or --disable-x11, so
> >> that x11 is always required to compile the package.
> >> Working patch attached.
> >> ======================================================================
> >>
> >> ----------------------------------------------------------------------
> >> bernhardf - 09-04-07 13:59
> >> ----------------------------------------------------------------------
> >> +ifeq ($(BR2_PACKAGE_XORG7),y)
> >> +DIRECTFB_X := --enable-x11
> >> +else
> >> +DIRECTFB_X := --disable-x11
> >> +endif
> >> +
> >> This is not really accurate:
> >> If BR2_PACKAGE_XSERVER_none is y, then disable-x11, else --enable-x11.
> >>
> >> Please send patches to the mailing list and only add them to the
> >> bugtracker if it is not applied (or explicitely rejected) within a
> >> reasonable amount of time, TIA
> >
> >
> >I will try this:
> >
> >Index: package/directfb/directfb.mk
> >===================================================================
> >--- package/directfb/directfb.mk (revision 19784)
> >+++ package/directfb/directfb.mk (arbetskopia)
> >@@ -5,7 +5,7 @@
> > #############################################################
> > #DIRECTFB_VERSION:=0.9.25.1
> > #DIRECTFB_SITE:=http://www.directfb.org/downloads/Old
> >-DIRECTFB_VERSION:=1.0.0
> >+DIRECTFB_VERSION:=1.0.1
> > DIRECTFB_SITE:=http://www.directfb.org/downloads/Core
> > DIRECTFB_SOURCE:=DirectFB-$(DIRECTFB_VERSION).tar.gz
> > DIRECTFB_CAT:=$(ZCAT)
> >@@ -18,6 +18,11 @@
> > DIRECTFB_MULTI:=
> > DIRECTFB_FUSION:=
> > endif
> >+ifeq ($(BR2_PACKAGE_XSERVER_none),y)
> >+DIRECTFB_X := --disable-x11
> >+else
> >+DIRECTFB_X := --enable-x11
> >+endif
>
> whitespace, please.
The usual story ;-)
> >
> > $(DL_DIR)/$(DIRECTFB_SOURCE):
> > $(WGET) -P $(DL_DIR) $(DIRECTFB_SITE)/$(DIRECTFB_SOURCE)
> >@@ -55,6 +60,7 @@
> > --with-gfxdrivers=cle266,unichrome \
> > --enable-shared \
> > $(DIRECTFB_MULTI) \
> >+ $(DIRECTFB_X) \
> > --enable-jpeg \
> > --enable-png \
> > --enable-linux-input \
>
> Sounds fine to me, please go ahead, Ulf.
> PS: didn't look but what does directfb unconditionally enable jpeg? png
> may be ok, although i wouldn't force it. And the gfx-drivers should imho
> be configurable via the menu and not hardcoded.
That is something which is already in the current trunk.
--
Best Regards,
Ulf Samuelsson
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Buildroot] [buildroot 0001485]: DirectFB: Download site moved and x11 always required
@ 2008-10-31 9:12 bugs at busybox.net
0 siblings, 0 replies; 6+ messages in thread
From: bugs at busybox.net @ 2008-10-31 9:12 UTC (permalink / raw)
To: buildroot
A NOTE has been added to this issue.
======================================================================
http://busybox.net/bugs/view.php?id=1485
======================================================================
Reported By: HappyCactus
Assigned To: buildroot
======================================================================
Project: buildroot
Issue ID: 1485
Category: Architecture Specific
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
======================================================================
Date Submitted: 09-04-2007 08:03 PDT
Last Modified: 10-31-2008 02:12 PDT
======================================================================
Summary: DirectFB: Download site moved and x11 always
required
Description:
The directFB main site has removed the 1.0.0 version.
Now 1.0.1 is the current stable version.
Also, configure do not specify either --enable-x11 or --disable-x11, so
that x11 is always required to compile the package.
Working patch attached.
======================================================================
----------------------------------------------------------------------
bernhardf - 09-04-07 13:59
----------------------------------------------------------------------
+ifeq ($(BR2_PACKAGE_XORG7),y)
+DIRECTFB_X := --enable-x11
+else
+DIRECTFB_X := --disable-x11
+endif
+
This is not really accurate:
If BR2_PACKAGE_XSERVER_none is y, then disable-x11, else --enable-x11.
Please send patches to the mailing list and only add them to the
bugtracker if it is not applied (or explicitely rejected) within a
reasonable amount of time, TIA
----------------------------------------------------------------------
tpetazzoni - 10-31-08 02:12
----------------------------------------------------------------------
This bug is already fixed, please close it.
Issue History
Date Modified Username Field Change
======================================================================
09-04-07 08:03 HappyCactus New Issue
09-04-07 08:03 HappyCactus Status new => assigned
09-04-07 08:03 HappyCactus Assigned To => buildroot
09-04-07 08:03 HappyCactus File Added: buildroot-directfb-x11.patch
09-04-07 13:59 bernhardf Note Added: 0002711
10-31-08 02:12 tpetazzoni Note Added: 0014754
======================================================================
^ permalink raw reply [flat|nested] 6+ messages in thread* [Buildroot] [buildroot 0001485]: DirectFB: Download site moved and x11 always required
@ 2007-09-04 15:03 bugs at busybox.net
0 siblings, 0 replies; 6+ messages in thread
From: bugs at busybox.net @ 2007-09-04 15:03 UTC (permalink / raw)
To: buildroot
The following issue has been SUBMITTED.
======================================================================
http://busybox.net/bugs/view.php?id=1485
======================================================================
Reported By: HappyCactus
Assigned To: buildroot
======================================================================
Project: buildroot
Issue ID: 1485
Category: Architecture Specific
Reproducibility: always
Severity: minor
Priority: normal
Status: assigned
======================================================================
Date Submitted: 09-04-2007 08:03 PDT
Last Modified: 09-04-2007 08:03 PDT
======================================================================
Summary: DirectFB: Download site moved and x11 always
required
Description:
The directFB main site has removed the 1.0.0 version.
Now 1.0.1 is the current stable version.
Also, configure do not specify either --enable-x11 or --disable-x11, so
that x11 is always required to compile the package.
Working patch attached.
======================================================================
Issue History
Date Modified Username Field Change
======================================================================
09-04-07 08:03 HappyCactus New Issue
09-04-07 08:03 HappyCactus Status new => assigned
09-04-07 08:03 HappyCactus Assigned To => buildroot
09-04-07 08:03 HappyCactus File Added: buildroot-directfb-x11.patch
======================================================================
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-10-31 9:12 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-09-04 20:59 [Buildroot] [buildroot 0001485]: DirectFB: Download site moved and x11 always required bugs at busybox.net
2007-09-04 22:15 ` Ulf Samuelsson
2007-09-04 22:23 ` Bernhard Fischer
2007-09-04 22:38 ` Ulf Samuelsson
-- strict thread matches above, loose matches on Subject: below --
2008-10-31 9:12 bugs at busybox.net
2007-09-04 15:03 bugs at busybox.net
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox