2008-12-14 23:27:08 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007-2008 OpenWrt.org
|
2007-09-25 20:23:15 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2008-12-14 23:27:08 +00:00
|
|
|
# $Id$
|
|
|
|
|
2007-09-25 20:23:15 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=xf86-video-vesa
|
2008-12-14 23:27:08 +00:00
|
|
|
PKG_RELEASE:=3
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_VERSION:=2.0.0
|
2008-12-14 23:27:08 +00:00
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
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
|
2008-12-14 23:27:08 +00:00
|
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
|
|
|
|
PKG_BUILD_DEPENDS:=xproto fontsproto randrproto renderproto xextproto
|
|
|
|
PKG_INSTALL:=1
|
2007-09-25 20:23:15 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2008-12-14 23:27:08 +00:00
|
|
|
|
2007-09-25 20:23:15 +00:00
|
|
|
define Package/xf86-video-vesa
|
|
|
|
SECTION:=xorg-driver
|
|
|
|
CATEGORY:=Xorg
|
|
|
|
SUBMENU:=driver
|
2008-12-14 23:27:08 +00:00
|
|
|
DEPENDS:=+xserver-xorg +libpciaccess
|
2007-09-25 20:23:15 +00:00
|
|
|
TITLE:=xf86-video-vesa
|
|
|
|
URL:=http://xorg.freedesktop.org/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/xf86-video-vesa/install
|
2008-12-14 23:27:08 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/lib/xorg/modules/drivers
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/xorg/modules/drivers/vesa_drv.so \
|
|
|
|
$(1)/usr/lib/xorg/modules/drivers/
|
2007-09-25 20:23:15 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,xf86-video-vesa))
|