2007-09-25 20:23:15 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# blogic@openwrt.org
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_BASE_NAME:=xf86
|
|
|
|
PKG_NAME:=xf86-video-fbdev
|
2008-09-01 21:31:52 +00:00
|
|
|
PKG_RELEASE:=2
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_VERSION:=0.4.0
|
|
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.4/src/driver
|
2007-09-25 20:23:15 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/${PKG_NAME}-$(PKG_VERSION)/
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2008-11-20 00:20:30 +00:00
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2007-09-25 20:23:15 +00:00
|
|
|
define Package/xf86-video-fbdev
|
|
|
|
SECTION:=xorg-driver
|
|
|
|
CATEGORY:=Xorg
|
|
|
|
SUBMENU:=driver
|
2008-11-20 00:20:30 +00:00
|
|
|
DEPENDS:=+xserver-xorg +libpciaccess
|
2007-09-25 20:23:15 +00:00
|
|
|
TITLE:=xf86-video-fbdev
|
|
|
|
URL:=http://xorg.freedesktop.org/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
2008-11-20 00:20:30 +00:00
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--enable-pciaccess \
|
2007-09-25 20:23:15 +00:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/xf86-video-fbdev/install
|
2008-11-20 00:20:30 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/xorg/modules/drivers
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/xorg/modules/drivers/*.so \
|
|
|
|
$(1)/usr/lib/xorg/modules/drivers
|
2007-09-25 20:23:15 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,xf86-video-fbdev))
|