Makefile 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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:= oprofile
  5. PKG_VERSION:= 0.9.7
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 8b5d1d9b65f84420bcc3234777ad3be3
  8. PKG_DESCR:= system-wide profiles
  9. PKG_SECTION:= debug
  10. PKG_DEPENDS:= libpopt kmod-oprofile libbfd libstdcxx
  11. PKG_BUILDDEP:= popt binutils
  12. PKG_URL:= http://oprofile.sourceforge.net/
  13. PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=oprofile/}
  14. PKG_ARCH_DEPENDS:= !cris !avr32
  15. PKG_CFLINE_OPROFILE:= select BUSYBOX_EXPR
  16. include $(TOPDIR)/mk/package.mk
  17. $(eval $(call PKG_template,OPROFILE,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  18. CONFIGURE_ARGS+= --with-kernel-support
  19. post-install:
  20. $(INSTALL_DIR) $(IDIR_OPROFILE)/usr/{bin,share}
  21. $(INSTALL_BIN) $(WRKINST)/usr/bin/opcontrol $(IDIR_OPROFILE)/usr/bin/
  22. $(INSTALL_BIN) $(WRKINST)/usr/bin/ophelp $(IDIR_OPROFILE)/usr/bin/
  23. $(INSTALL_BIN) $(WRKINST)/usr/bin/opreport $(IDIR_OPROFILE)/usr/bin/
  24. $(INSTALL_BIN) $(WRKINST)/usr/bin/oprofiled $(IDIR_OPROFILE)/usr/bin/
  25. ${CP} ${WRKINST}/usr/share/oprofile ${IDIR_OPROFILE}/usr/share/
  26. include ${TOPDIR}/mk/pkg-bottom.mk