You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

151 lines
4.4 KiB

  1. #
  2. # Copyright (C) 2009-2018 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=git
  9. PKG_VERSION:=2.16.3
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
  12. PKG_SOURCE_URL:=@KERNEL/software/scm/git/
  13. PKG_HASH:=d65d99e9e5b081c1f14ea018973806e942a2eb7d0da2ebc01bd2525adee62d48
  14. PKG_INSTALL:=1
  15. PKG_BUILD_PARALLEL:=1
  16. PKG_FIXUP:=autoreconf
  17. include $(INCLUDE_DIR)/package.mk
  18. define Package/git/Default
  19. SECTION:=net
  20. CATEGORY:=Network
  21. SUBMENU:=Version Control Systems
  22. DEPENDS:=+libopenssl +libpthread +librt +zlib
  23. URL:=http://git-scm.com
  24. MAINTAINER:=Peter Wagner <tripolar@gmx.at>
  25. endef
  26. define Package/git
  27. $(call Package/git/Default)
  28. TITLE:=The fast version control system
  29. endef
  30. define Package/git/description
  31. Git is a free & open source, distributed version control system
  32. designed to handle everything from small to very large projects
  33. with speed and efficiency.
  34. endef
  35. define Package/git-http
  36. $(call Package/git/Default)
  37. DEPENDS+= +git +libcurl +ca-certificates
  38. TITLE:=Git HTTP commands
  39. endef
  40. define Package/git-http/description
  41. $(call Package/git/description)
  42. This package allows git push/fetch over http(s) and ftp(s)
  43. endef
  44. define Package/git-gitweb
  45. $(call Package/git/Default)
  46. TITLE:=Git repository web interface
  47. DEPENDS+= +git +perlbase-essential +perlbase-file +perlbase-fcntl +perlbase-encode +perlbase-digest +perlbase-time +perl-cgi
  48. endef
  49. define Package/git-gitweb/description
  50. $(call Package/git/description)
  51. This package builds the gitweb web interface for git repositories
  52. endef
  53. define Package/git-gitweb/conffiles
  54. /etc/gitweb.conf
  55. endef
  56. MAKE_FLAGS := \
  57. CC="$(TARGET_CC)" \
  58. CFLAGS="$(TARGET_CFLAGS)" \
  59. CPPFLAGS="$(TARGET_CPPFLAGS)" \
  60. LDFLAGS="$(TARGET_LDFLAGS)" \
  61. NO_EXPAT="YesPlease" \
  62. NO_MKSTEMPS="YesPlease" \
  63. NO_GETTEXT="YesPlease" \
  64. NO_UNIX_SOCKETS="YesPlease" \
  65. NO_ICONV="YesPlease" \
  66. NO_NSEC="YesPlease" \
  67. NO_PERL="YesPlease" \
  68. NO_PYTHON="YesPlease" \
  69. NO_TCLTK="YesPlease" \
  70. NO_INSTALL_HARDLINKS="yes" \
  71. gitwebdir="/www/cgi-bin" \
  72. GITWEB_JS="/gitweb/gitweb.js" \
  73. GITWEB_CSS="/gitweb/gitweb.css" \
  74. GITWEB_LOGO="/gitweb/gitweb-logo.png" \
  75. GITWEB_FAVICON="/gitweb/gitweb-favicon.png"
  76. CONFIGURE_ARGS += \
  77. --without-iconv \
  78. define Build/Configure
  79. $(MAKE) -C $(PKG_BUILD_DIR) \
  80. configure
  81. $(call Build/Configure/Default,)
  82. endef
  83. define Build/Compile
  84. mkdir -p $(PKG_INSTALL_DIR)/www/cgi-bin $(PKG_INSTALL_DIR)/www/gitweb
  85. $(call Build/Compile/Default,DESTDIR=$(PKG_INSTALL_DIR) all install gitweb install-gitweb)
  86. endef
  87. define Package/git/install
  88. $(INSTALL_DIR) $(1)/usr/bin
  89. $(CP) $(PKG_INSTALL_DIR)/usr/bin/git $(1)/usr/bin
  90. $(RM) $(PKG_INSTALL_DIR)/usr/bin/git-cvsserver
  91. $(CP) $(PKG_INSTALL_DIR)/usr/bin/git-* $(1)/usr/bin
  92. $(INSTALL_DIR) $(1)/usr/lib/git-core
  93. ln $(1)/usr/bin/git $(1)/usr/lib/git-core/git
  94. ln $(1)/usr/bin/git-shell $(1)/usr/lib/git-core/git-shell
  95. ln $(1)/usr/bin/git-upload-pack $(1)/usr/lib/git-core/git-upload-pack
  96. $(INSTALL_DIR) $(1)/usr/share/git-core/templates
  97. ( cd $(PKG_INSTALL_DIR); $(TAR) \
  98. --exclude=usr/lib/git-core/git-http-backend \
  99. --exclude=usr/lib/git-core/git-http-fetch \
  100. --exclude=usr/lib/git-core/git-remote-ftp \
  101. --exclude=usr/lib/git-core/git-remote-ftps \
  102. --exclude=usr/lib/git-core/git-remote-http \
  103. --exclude=usr/lib/git-core/git-remote-https \
  104. --exclude=usr/lib/git-core/git \
  105. --exclude=usr/lib/git-core/git-shell \
  106. --exclude=usr/lib/git-core/git-upload-pack \
  107. -cf - \
  108. usr/lib/git-core \
  109. usr/share/git-core/templates \
  110. ) | ( cd $(1); $(TAR) -xf - )
  111. endef
  112. define Package/git-http/install
  113. $(INSTALL_DIR) $(1)/usr/lib/git-core
  114. $(CP) $(PKG_INSTALL_DIR)/usr/lib/git-core/git-http-backend $(1)/usr/lib/git-core
  115. $(CP) $(PKG_INSTALL_DIR)/usr/lib/git-core/git-http-fetch $(1)/usr/lib/git-core
  116. $(CP) $(PKG_INSTALL_DIR)/usr/lib/git-core/git-remote-ftp $(1)/usr/lib/git-core
  117. $(CP) $(PKG_INSTALL_DIR)/usr/lib/git-core/git-remote-ftps $(1)/usr/lib/git-core
  118. $(CP) $(PKG_INSTALL_DIR)/usr/lib/git-core/git-remote-http $(1)/usr/lib/git-core
  119. $(CP) $(PKG_INSTALL_DIR)/usr/lib/git-core/git-remote-https $(1)/usr/lib/git-core
  120. endef
  121. define Package/git-gitweb/install
  122. $(INSTALL_DIR) $(1)/www/cgi-bin $(1)/www/gitweb
  123. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/www/cgi-bin/gitweb.cgi $(1)/www/cgi-bin/
  124. $(CP) $(PKG_INSTALL_DIR)/www/cgi-bin/static/* $(1)/www/gitweb/
  125. endef
  126. $(eval $(call BuildPackage,git))
  127. $(eval $(call BuildPackage,git-http))
  128. $(eval $(call BuildPackage,git-gitweb))