| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include $(ADK_TOPDIR)/rules.mkPKG_NAME:=		classpathPKG_VERSION:=		0.98PKG_RELEASE:=		1PKG_MD5SUM:=		90c6571b8b0309e372faa0f9f6255ea9PKG_DESCR:=		java classpathPKG_SECTION:=		dev/toolsPKG_BUILDDEP:=		gtk+ gdk-pixbuf orbit2 gconfPKG_DEPENDS:=		libgtk gdk-pixbuf orbit2 gconfPKG_URL:=		http://www.gnu.org/software/classpath/home.htmlPKG_SITES:=		${MASTER_SITE_GNU:=classpath/}DISTFILES:=		${PKG_NAME}-${PKG_VERSION}.tar.gzPKG_HOST_DEPENDS:=	linuxPKG_ARCH_DEPENDS:=	!arminclude $(ADK_TOPDIR)/mk/host.mkinclude $(ADK_TOPDIR)/mk/package.mk$(eval $(call HOST_template,CLASSPATH,classpath,$(PKG_VERSION)-${PKG_RELEASE}))$(eval $(call PKG_template,CLASSPATH,classpath,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))HOST_CONFIGURE_ARGS+=	--disable-plugin \			--disable-tools \			--disable-examples \			--disable-gtk-peer \			--disable-gconf-peer \			--disable-alsa \			--disable-Werror \			--without-xCONFIGURE_ARGS+=	--disable-plugin \			--disable-tools \			--disable-examplesclasspath-install:	$(INSTALL_DIR) $(IDIR_CLASSPATH)/usr/share/classpath	$(CP) $(WRKINST)/usr/share/classpath/glibj.zip \		$(IDIR_CLASSPATH)/usr/share/classpath	$(INSTALL_DIR) $(IDIR_CLASSPATH)/usr/lib/classpath	$(CP) $(WRKINST)/usr/lib/classpath/lib*so.* \		$(IDIR_CLASSPATH)/usr/lib/classpath	# install to staging directory	$(INSTALL_DIR) $(STAGING_TARGET_DIR)/usr/share/classpath	$(CP) $(WRKINST)/usr/share/classpath/glibj.zip \		$(STAGING_TARGET_DIR)/usr/share/classpathinclude ${ADK_TOPDIR}/mk/host-bottom.mkinclude ${ADK_TOPDIR}/mk/pkg-bottom.mk
 |