summaryrefslogtreecommitdiff
path: root/package/xauth/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-01-22 18:08:47 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-01-22 18:08:47 +0100
commitd91f3efc7399b0ce3b9fde65ce26fe8a4b19e12b (patch)
tree9e5eafa1da6ca9f2424448e31b4d4445fcb91004 /package/xauth/Makefile
parent3c419429faf268d2f9d27b06059165f077954baa (diff)
add package xauth. Needed for X11 forwarding via SSH.
Diffstat (limited to 'package/xauth/Makefile')
-rw-r--r--package/xauth/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/xauth/Makefile b/package/xauth/Makefile
new file mode 100644
index 000000000..c18f936d0
--- /dev/null
+++ b/package/xauth/Makefile
@@ -0,0 +1,29 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= xauth
+PKG_VERSION:= 1.0.4
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 2eb3cc3e4421e1b747c4ac16aac20cda
+PKG_DESCR:= X authority file utility
+PKG_SECTION:= x11
+PKG_DEPENDS:= libx11 libxext libxmu
+PKG_BUILDDEP+= libX11 libXext libXmu
+PKG_URL:= http://www.x.org
+PKG_SITES:= ${MASTER_SITE_XORG}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,XAUTH,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_STYLE:= gnu
+BUILD_STYLE:= auto
+INSTALL_STYLE:= auto
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_XAUTH)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/xauth $(IDIR_XAUTH)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk