Author: pebender
Date: Mon Jun 15 18:17:05 2009
New Revision: 4954
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/xorg-7.4/libdrm/Makefile
Log:
- Changed package xorg-7.4/libdrm so that it does not require system/udev
when building hte native (non-cross) version.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Mon Jun 15
18:17:05 2009
@@ -40,6 +40,8 @@
Fixed build system
- Patched legacy NVIDIA drivers so that they build with kernel 2.6.30.
+ - Changed package xorg-7.4/libdrm so that it does not require
system/udev
+ when building hte native (non-cross) version.
Removed packages
Removed kernel-2.6.26/linux.
Modified: trunk/gar-minimyth/script/xorg-7.4/libdrm/Makefile
==============================================================================
--- trunk/gar-minimyth/script/xorg-7.4/libdrm/Makefile (original)
+++ trunk/gar-minimyth/script/xorg-7.4/libdrm/Makefile Mon Jun 15 18:17:05
2009
@@ -9,8 +9,11 @@
define BLURB
endef
-DEPENDS = lang/c system/udev \
+DEPENDS = lang/c \
$(CATEGORY)/libpthread-stubs
+ifneq ($(DESTIMG),build)
+DEPENDS += system/udev
+endif
CATEGORY := $(shell basename $(shell dirname $(shell pwd)))
@@ -18,11 +21,18 @@
BUILD_SCRIPTS = $(WORKSRC)/Makefile
INSTALL_SCRIPTS = $(WORKSRC)/Makefile
-CONFIGURE_ARGS = $(DIRPATHS) --build=$(GARBUILD) --host=$(GARHOST) \
+CONFIGURE_ARGS = $(DIRPATHS) --build=$(GARBUILD) --host=$(GARHOST) \
--disable-static \
--enable-shared \
- --enable-udev \
+ --disable-nouveau-experimental-api \
--with-gnu-ld
+ifeq ($(DESTIMG),build)
+CONFIGURE_ARGS += \
+ --disable-udev
+else
+CONFIGURE_ARGS += \
+ --enable-udev
+endif
include ../../gar.mk
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---