b34ead55c0
On Github, a large number of projects name their tag <some-prefix>-0.3-<some-suffix> (i.e release-3.0, poco-0.1-release, etc.). In fact majority of the cased adressed in this commit concerns prefixes. In most packages, we encode those prefix/suffix in the <pkg>_VERSION variable. The problem with this approach is that when used in conjunction with release-monitoring.org, it doesn't work very well, because release-monitoring.org has the concept of "version prefix/suffix" and using that they drop the prefix/suffix to really get the version. For example on https://release-monitoring.org/project/5418/ the latest release of "poco" is "1.8.1", not "poco-1.8.1-release". Therefore, a number of packages in Buildroot have a version that doesn't match with release-monitoring.org. Since really the version number of 1.8.1, is makes sense to update our packages to drop these prefixes/suffixes. This commit addreses the case of github-fetched packages with non-conventional prefixes/suffixes. Note that these changes modify the name of the files stored in DL_DIR, which means that this will force a re-download of those package source code for all users, and requires a change to their .hash file. Signed-off-by: Victor Huesca <victor.huesca@bootlin.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# ptpd2
|
|
#
|
|
################################################################################
|
|
|
|
PTPD2_VERSION = 2.3.1
|
|
PTPD2_SITE = $(call github,ptpd,ptpd,ptpd-$(PTPD2_VERSION))
|
|
PTPD2_DEPENDENCIES = libpcap
|
|
PTPD2_CONF_OPTS = --with-pcap-config=$(STAGING_DIR)/usr/bin/pcap-config
|
|
# configure not shipped
|
|
PTPD2_AUTORECONF = YES
|
|
PTPD2_LICENSE = BSD-2-Clause
|
|
PTPD2_LICENSE_FILES = COPYRIGHT
|
|
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
PTPD2_CONF_OPTS += LIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`"
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NETSNMP),y)
|
|
PTPD2_CONF_ENV += ac_cv_path_PATH_NET_SNMP_CONFIG=$(STAGING_DIR)/usr/bin/net-snmp-config
|
|
PTPD2_DEPENDENCIES += netsnmp
|
|
else
|
|
PTPD2_CONF_OPTS += --disable-snmp
|
|
endif
|
|
|
|
define PTPD2_INSTALL_INIT_SYSV
|
|
$(INSTALL) -m 755 -D package/ptpd2/S65ptpd2 \
|
|
$(TARGET_DIR)/etc/init.d/S65ptpd2
|
|
endef
|
|
|
|
define PTPD2_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 644 package/ptpd2/ptpd2.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/ptpd2.service
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
|
ln -sf ../../../../usr/lib/systemd/system/ptpd2.service \
|
|
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/ptpd2.service
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|