2008-12-01 23:07:01 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2007-2008 OpenWrt.org
|
2008-01-25 11:23:41 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2008-12-01 23:07:01 +00:00
|
|
|
# blogic@openwrt.org
|
|
|
|
|
2008-01-25 11:23:41 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_NAME:=xtrans
|
2008-12-16 16:32:06 +00:00
|
|
|
PKG_RELEASE:=3
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_VERSION:=1.2.1
|
2008-12-16 16:32:06 +00:00
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.4/src/lib/
|
2008-01-25 11:23:41 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2008-12-01 23:07:01 +00:00
|
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/$(PKG_NAME)-$(PKG_VERSION)/
|
2008-12-16 16:32:06 +00:00
|
|
|
PKG_MD5SUM:=96e142331edd498a9364887b2548f1bb
|
|
|
|
PKG_INSTALL:=1
|
2008-01-25 11:23:41 +00:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
define Package/xtrans
|
|
|
|
SECTION:=xorg-lib
|
2008-01-25 11:23:41 +00:00
|
|
|
CATEGORY:=Xorg
|
2008-11-16 19:31:42 +00:00
|
|
|
SUBMENU:=lib
|
|
|
|
TITLE:=xtrans
|
2008-01-25 11:23:41 +00:00
|
|
|
URL:=http://xorg.freedesktop.org/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
2008-12-16 16:32:06 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/{lib/pkgconfig,include/X11/Xtrans}
|
|
|
|
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
|
|
|
|
$(1)/usr/lib/pkgconfig/
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/X11/Xtrans/* \
|
|
|
|
$(1)/usr/include/X11/Xtrans/
|
|
|
|
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/aclocal
|
|
|
|
$(INSTALL_DATA) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/share/aclocal/* \
|
|
|
|
$(1)/usr/share/aclocal/
|
2008-01-25 11:23:41 +00:00
|
|
|
endef
|
|
|
|
|
2008-11-16 19:31:42 +00:00
|
|
|
$(eval $(call BuildPackage,xtrans))
|