e296673ba6
Signed-off-by: Andy Boyett <agb-openwrt@padded-cell.net> git-svn-id: svn://svn.openwrt.org/openwrt/packages@9695 3c298f89-4303-0410-b956-a3cf2f4a3e73
75 lines
1.7 KiB
Makefile
75 lines
1.7 KiB
Makefile
#
|
|
# 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:=xcalc
|
|
PKG_NAME:=xcalc
|
|
PKG_RELEASE:=1
|
|
PKG_VERSION:=X11R7.0-1.0.1
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.2/src/app
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_BUILD_DIR=$(BUILD_DIR)/Xorg/$(_CATEGORY)/${PKG_NAME}-$(PKG_VERSION)/
|
|
|
|
_DEPEND:= +font-misc-misc
|
|
ifneq (xcalc,xinit)
|
|
_DEPEND+=xorg-server-essentials
|
|
endif
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/xcalc
|
|
SECTION:=xorg-app
|
|
CATEGORY:=Xorg
|
|
SUBMENU:=app
|
|
DEPENDS:=${_DEPEND} @DISPLAY_SUPPORT
|
|
TITLE:=xcalc
|
|
URL:=http://xorg.freedesktop.org/
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
DESTDIR=$(1) $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) install
|
|
endef
|
|
|
|
ifeq (xcalc,xdm)
|
|
CONFIGURE_ARGS+=--with-random-device=/dev/urandom
|
|
endif
|
|
|
|
CONFIGURE_ARGS+=LIBS="-Wl,-rpath-link=$(STAGING_DIR)/usr/lib"
|
|
|
|
define Build/Compile
|
|
make -C $(PKG_BUILD_DIR)
|
|
make -C $(PKG_BUILD_DIR) DESTDIR=$(PKG_INSTALL_DIR) install
|
|
endef
|
|
|
|
define Build/Configure
|
|
(cd $(PKG_BUILD_DIR)/$(CONFIGURE_PATH); \
|
|
if [ -x $(CONFIGURE_CMD) ]; then \
|
|
$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/ && \
|
|
$(CONFIGURE_VARS) \
|
|
$(CONFIGURE_CMD) \
|
|
$(CONFIGURE_ARGS_XTRA) \
|
|
$(CONFIGURE_ARGS) ;\
|
|
fi \
|
|
)
|
|
endef
|
|
|
|
define Package/xcalc/install
|
|
$(INSTALL_DIR) $(1)
|
|
$(CP) $(PKG_INSTALL_DIR)/* $(1)
|
|
rm -rf $(1)/usr/man/
|
|
endef
|
|
|
|
define Package/xinit/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/xinit $(1)/usr/bin/xinit
|
|
cd $(1)/usr/bin/; ln -s xinit startx
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,xcalc))
|