Makefile 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= classpath
  5. PKG_VERSION:= 0.98
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 90c6571b8b0309e372faa0f9f6255ea9
  8. PKG_DESCR:= GNU Classpath
  9. PKG_SECTION:= lang
  10. PKG_BUILDDEP:= gtk+ gdk-pixbuf orbit2 gconf
  11. PKG_DEPENDS:= libgtk gdk-pixbuf orbit2 gconf
  12. PKG_URL:= http://www.gnu.org/software/classpath/home.html
  13. PKG_SITES:= ${MASTER_SITE_GNU:=classpath/}
  14. PKG_ARCH_DEPENDS:= !cris
  15. include $(TOPDIR)/mk/package.mk
  16. $(eval $(call PKG_template,CLASSPATH,classpath,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  17. CONFIGURE_ARGS+= --disable-plugin \
  18. --disable-tools \
  19. --disable-examples
  20. classpath-install:
  21. $(INSTALL_DIR) $(IDIR_CLASSPATH)/usr/share/classpath
  22. $(CP) $(WRKINST)/usr/share/classpath/glibj.zip \
  23. $(IDIR_CLASSPATH)/usr/share/classpath
  24. $(INSTALL_DIR) $(IDIR_CLASSPATH)/usr/lib/classpath
  25. $(CP) $(WRKINST)/usr/lib/classpath/lib*so.* \
  26. $(IDIR_CLASSPATH)/usr/lib/classpath
  27. # install to staging directory
  28. $(INSTALL_DIR) $(STAGING_DIR)/usr/share/classpath
  29. $(CP) $(WRKINST)/usr/share/classpath/glibj.zip \
  30. $(STAGING_DIR)/usr/share/classpath
  31. include ${TOPDIR}/mk/pkg-bottom.mk