Browse Source

add xsetroot package

Waldemar Brodkorb 13 years ago
parent
commit
58f64bd864
3 changed files with 64 additions and 0 deletions
  1. 23 0
      package/libXcursor/Makefile
  2. 16 0
      package/xbitmaps/Makefile
  3. 25 0
      package/xsetroot/Makefile

+ 23 - 0
package/libXcursor/Makefile

@@ -0,0 +1,23 @@
+# 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:=		libXcursor
+PKG_VERSION:=		1.1.11
+PKG_RELEASE:=		1
+PKG_MD5SUM:=		55558a41d0bcf9210636858844fa4d2f
+PKG_DESCR:=		xcursor library
+PKG_SECTION:=		x11/libs
+PKG_SITES:=		http://xorg.freedesktop.org/archive/individual/lib/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBXCURSOR,libxcursor,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+post-install:
+	$(INSTALL_DIR) $(IDIR_LIBXCURSOR)/usr/lib
+	$(CP) $(WRKINST)/usr/lib/libXcursor*.so* \
+		$(IDIR_LIBXCURSOR)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk

+ 16 - 0
package/xbitmaps/Makefile

@@ -0,0 +1,16 @@
+# 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:=		xbitmaps
+PKG_VERSION:=		1.1.0
+PKG_RELEASE:=		1
+PKG_MD5SUM:=		e9ab0ddd7dba49b448643768547a275d
+PKG_DESCR:=		prerequiste for xsetroot
+PKG_SECTION:=		x11/libs
+PKG_SITES:=		http://xorg.freedesktop.org/archive/individual/app/
+PKG_SUBPKGS:=
+
+include $(TOPDIR)/mk/package.mk
+include ${TOPDIR}/mk/pkg-bottom.mk

+ 25 - 0
package/xsetroot/Makefile

@@ -0,0 +1,25 @@
+# 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:=		xsetroot
+PKG_VERSION:=		1.1.0
+PKG_RELEASE:=		1
+PKG_MD5SUM:=		5097ed5bbe1c621ee12950019f71de02
+PKG_DESCR:=		set root window
+PKG_SECTION:=		x11/apps
+PKG_DEPENDS:=		libx11 libxmu libxcursor
+PKG_BUILDDEP:=		xbitmaps libXcursor
+PKG_SITES:=		http://xorg.freedesktop.org/archive/individual/app/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,XSETROOT,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+post-install:
+	$(INSTALL_DIR) $(IDIR_XSETROOT)/usr/bin
+	$(INSTALL_BIN) $(WRKINST)/usr/bin/xsetroot \
+		$(IDIR_XSETROOT)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk