Skip to content

Commit

Permalink
package: remove the trailing slash sign from <PKG>_SITE variable
Browse files Browse the repository at this point in the history
Since the trailing slash is stripped from $($(PKG)_SITE) by pkg-generic.mk:

$(call DOWNLOAD,$($(PKG)_SITE:/=)/$($(PKG)_SOURCE))

so it is redundant.
This patch removes it from $(PKG)_SITE variable for BR consistency.

Signed-off-by: Jerzy Grzegorek <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
  • Loading branch information
Jerzy Grzegorek authored and tpetazzoni committed Jul 31, 2014
1 parent 17902f5 commit c7f4b96
Show file tree
Hide file tree
Showing 292 changed files with 296 additions and 296 deletions.
2 changes: 1 addition & 1 deletion boot/at91bootstrap/at91bootstrap.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

AT91BOOTSTRAP_VERSION = 1.16
AT91BOOTSTRAP_SITE = ftp://www.at91.com/pub/at91bootstrap/
AT91BOOTSTRAP_SITE = ftp://www.at91.com/pub/at91bootstrap
AT91BOOTSTRAP_SOURCE = AT91Bootstrap$(AT91BOOTSTRAP_VERSION).zip

AT91BOOTSTRAP_BOARD = $(call qstrip,$(BR2_TARGET_AT91BOOTSTRAP_BOARD))
Expand Down
2 changes: 1 addition & 1 deletion boot/at91dataflashboot/at91dataflashboot.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

AT91DATAFLASHBOOT_VERSION = 1.05
AT91DATAFLASHBOOT_SOURCE = DataflashBoot-$(AT91DATAFLASHBOOT_VERSION).tar.bz2
AT91DATAFLASHBOOT_SITE = ftp://www.at91.com/pub/buildroot/
AT91DATAFLASHBOOT_SITE = ftp://www.at91.com/pub/buildroot

AT91DATAFLASHBOOT_INSTALL_TARGET = NO
AT91DATAFLASHBOOT_INSTALL_IMAGES = YES
Expand Down
2 changes: 1 addition & 1 deletion boot/barebox/barebox.mk
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ BAREBOX_SITE_METHOD = git
else
# Handle stable official Barebox versions
BAREBOX_SOURCE = barebox-$(BAREBOX_VERSION).tar.bz2
BAREBOX_SITE = http://www.barebox.org/download/
BAREBOX_SITE = http://www.barebox.org/download
endif

BAREBOX_DEPENDENCIES = host-lzop
Expand Down
2 changes: 1 addition & 1 deletion boot/grub/grub.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
GRUB_VERSION = 0.97
GRUB_SOURCE = grub_$(GRUB_VERSION).orig.tar.gz
GRUB_PATCH = grub_$(GRUB_VERSION)-67.diff.gz
GRUB_SITE = http://snapshot.debian.org/archive/debian/20130129T225227Z/pool/main/g/grub/
GRUB_SITE = http://snapshot.debian.org/archive/debian/20130129T225227Z/pool/main/g/grub

GRUB_LICENSE = GPLv2+
GRUB_LICENSE_FILES = COPYING
Expand Down
2 changes: 1 addition & 1 deletion boot/grub2/grub2.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

GRUB2_VERSION = 2.00
GRUB2_SITE = $(BR2_GNU_MIRROR)/grub/
GRUB2_SITE = $(BR2_GNU_MIRROR)/grub
GRUB2_SOURCE = grub-$(GRUB2_VERSION).tar.xz
GRUB2_LICENSE = GPLv3+
GRUB2_LICENSE_FILES = COPYING
Expand Down
2 changes: 1 addition & 1 deletion boot/mxs-bootlets/mxs-bootlets.mk
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else ifeq ($(BR2_TARGET_MXS_BOOTLETS_CUSTOM_GIT),y)
MXS_BOOTLETS_VERSION = $(call qstrip,$(BR2_TARGET_MXS_BOOTLETS_CUSTOM_GIT_VERSION))
else
MXS_BOOTLETS_VERSION = 10.12.01
MXS_BOOTLETS_SITE = http://download.ossystems.com.br/bsp/freescale/source/
MXS_BOOTLETS_SITE = http://download.ossystems.com.br/bsp/freescale/source
MXS_BOOTLETS_SOURCE = imx-bootlets-src-$(MXS_BOOTLETS_VERSION).tar.gz
endif

Expand Down
2 changes: 1 addition & 1 deletion boot/syslinux/syslinux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

SYSLINUX_VERSION = 6.02
SYSLINUX_SOURCE = syslinux-$(SYSLINUX_VERSION).tar.xz
SYSLINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/boot/syslinux/
SYSLINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/utils/boot/syslinux

SYSLINUX_LICENSE = GPLv2+
SYSLINUX_LICENSE_FILES = COPYING
Expand Down
4 changes: 2 additions & 2 deletions linux/linux.mk
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ LINUX_SOURCE = linux-$(LINUX_VERSION).tar.xz
# to use the $(word) function. We support versions such as 3.1,
# 2.6.32, 2.6.32-rc1, 3.0-rc6, etc.
ifeq ($(findstring x2.6.,x$(LINUX_VERSION)),x2.6.)
LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6/
LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v2.6
else
LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x/
LINUX_SITE = $(BR2_KERNEL_MIRROR)/linux/kernel/v3.x
endif
# release candidates are in testing/ subdir
ifneq ($(findstring -rc,$(LINUX_VERSION)),)
Expand Down
2 changes: 1 addition & 1 deletion package/aespipe/aespipe.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

AESPIPE_VERSION = 2.4c
AESPIPE_SOURCE = aespipe-v$(AESPIPE_VERSION).tar.bz2
AESPIPE_SITE = http://loop-aes.sourceforge.net/aespipe/
AESPIPE_SITE = http://loop-aes.sourceforge.net/aespipe
AESPIPE_LICENSE = GPL

$(eval $(autotools-package))
2 changes: 1 addition & 1 deletion package/aiccu/aiccu.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

AICCU_VERSION = 20070115
AICCU_SOURCE = aiccu_$(AICCU_VERSION).tar.gz
AICCU_SITE = http://www.sixxs.net/archive/sixxs/aiccu/unix/
AICCU_SITE = http://www.sixxs.net/archive/sixxs/aiccu/unix
AICCU_LICENSE = SixXS License, concise redistribution license
AICCU_LICENSE_FILES = doc/LICENSE
AICCU_DEPENDENCIES = gnutls
Expand Down
2 changes: 1 addition & 1 deletion package/alsamixergui/alsamixergui.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

ALSAMIXERGUI_VERSION = 0.9.0rc2-1
ALSAMIXERGUI_SOURCE = alsamixergui_$(ALSAMIXERGUI_VERSION).orig.tar.gz
ALSAMIXERGUI_SITE = http://snapshot.debian.org/archive/debian/20080319T000000Z/pool/main/a/alsamixergui/
ALSAMIXERGUI_SITE = http://snapshot.debian.org/archive/debian/20080319T000000Z/pool/main/a/alsamixergui
ALSAMIXERGUI_AUTORECONF = YES

ALSAMIXERGUI_CONF_ENV = ac_cv_lib_fltk_numericsort=yes \
Expand Down
2 changes: 1 addition & 1 deletion package/armadillo/armadillo.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

ARMADILLO_VERSION_MAJOR = 4.000
ARMADILLO_VERSION = $(ARMADILLO_VERSION_MAJOR).4
ARMADILLO_SITE = http://downloads.sourceforge.net/project/arma/
ARMADILLO_SITE = http://downloads.sourceforge.net/project/arma
ARMADILLO_DEPENDENCIES = clapack
ARMADILLO_INSTALL_STAGING = YES
ARMADILLO_LICENSE = MPLv2.0
Expand Down
2 changes: 1 addition & 1 deletion package/atftp/atftp.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

ATFTP_VERSION = 0.7.1
ATFTP_SITE = http://sourceforge.net/projects/atftp/files/
ATFTP_SITE = http://sourceforge.net/projects/atftp/files
ATFTP_LICENSE = GPLv2+
ATFTP_LICENSE_FILES = LICENSE
ATFTP_CONF_OPT = --disable-libwrap --disable-mtftp
Expand Down
2 changes: 1 addition & 1 deletion package/atk/atk.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
ATK_VERSION_MAJOR = 2.10
ATK_VERSION = $(ATK_VERSION_MAJOR).0
ATK_SOURCE = atk-$(ATK_VERSION).tar.xz
ATK_SITE = http://ftp.gnome.org/pub/gnome/sources/atk/$(ATK_VERSION_MAJOR)/
ATK_SITE = http://ftp.gnome.org/pub/gnome/sources/atk/$(ATK_VERSION_MAJOR)
ATK_LICENSE = LGPLv2+
ATK_LICENSE_FILES = COPYING
ATK_INSTALL_STAGING = YES
Expand Down
2 changes: 1 addition & 1 deletion package/avahi/avahi.mk
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# later version.

AVAHI_VERSION = 0.6.31
AVAHI_SITE = http://www.avahi.org/download/
AVAHI_SITE = http://www.avahi.org/download
AVAHI_LICENSE = LGPLv2.1+
AVAHI_LICENSE_FILES = LICENSE
AVAHI_INSTALL_STAGING = YES
Expand Down
2 changes: 1 addition & 1 deletion package/axel/axel.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

AXEL_VERSION = 2.4
AXEL_SITE = http://sources.buildroot.net/
AXEL_SITE = http://sources.buildroot.net
AXEL_LICENSE = GPLv2+
AXEL_LICENSE_FILES = COPYING

Expand Down
4 changes: 2 additions & 2 deletions package/b43-firmware/b43-firmware.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

ifeq ($(BR2_PACKAGE_B43_FIRMWARE_KERNEL_AFTER_3_2),y)
B43_FIRMWARE_VERSION = 5.100.138
B43_FIRMWARE_SITE = http://www.lwfinger.com/b43-firmware/
B43_FIRMWARE_SITE = http://www.lwfinger.com/b43-firmware
B43_FIRMWARE_SOURCE = broadcom-wl-$(B43_FIRMWARE_VERSION).tar.bz2
B43_FIRMWARE_DRIVER_FILE = linux/wl_apsta.o
else ifeq ($(BR2_PACKAGE_B43_FIRMWARE_KERNEL_BEFORE_3_2),y)
B43_FIRMWARE_VERSION = 5.10.56.27.3
B43_FIRMWARE_SITE = http://mirror2.openwrt.org/sources/
B43_FIRMWARE_SITE = http://mirror2.openwrt.org/sources
B43_FIRMWARE_SOURCE = broadcom-wl-$(B43_FIRMWARE_VERSION)_mipsel.tar.bz2
B43_FIRMWARE_DRIVER_FILE = driver/wl_apsta/wl_prebuilt.o
endif
Expand Down
2 changes: 1 addition & 1 deletion package/b43-fwcutter/b43-fwcutter.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

B43_FWCUTTER_VERSION = 015
B43_FWCUTTER_SITE = http://bues.ch/b43/fwcutter/
B43_FWCUTTER_SITE = http://bues.ch/b43/fwcutter
B43_FWCUTTER_SOURCE = b43-fwcutter-$(B43_FWCUTTER_VERSION).tar.bz2
B43_FWCUTTER_LICENSE = BSD-2c
B43_FWCUTTER_LICENSE_FILES = COPYING
Expand Down
2 changes: 1 addition & 1 deletion package/bc/bc.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

BC_VERSION = 1.06
BC_SITE = $(BR2_GNU_MIRROR)/bc/
BC_SITE = $(BR2_GNU_MIRROR)/bc
BC_DEPENDENCIES = host-flex
BC_LICENSE = GPLv2+ LGPLv2.1+
BC_LICENSE_FILES = COPYING COPYING.LIB
Expand Down
2 changes: 1 addition & 1 deletion package/bcusdk/bcusdk.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

BCUSDK_VERSION = 0.0.5
BCUSDK_SOURCE = bcusdk_$(BCUSDK_VERSION).tar.gz
BCUSDK_SITE = http://www.auto.tuwien.ac.at/~mkoegler/eib/
BCUSDK_SITE = http://www.auto.tuwien.ac.at/~mkoegler/eib
BCUSDK_LICENSE = GPLv2+
BCUSDK_LICENSE_FILES = COPYING
BCUSDK_INSTALL_STAGING = YES
Expand Down
2 changes: 1 addition & 1 deletion package/boa/boa.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

BOA_VERSION = 0.94.14rc21
BOA_SITE = http://www.boa.org/
BOA_SITE = http://www.boa.org
BOA_LICENSE = GPLv2+
BOA_LICENSE_FILES = COPYING

Expand Down
2 changes: 1 addition & 1 deletion package/bonnie/bonnie.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

BONNIE_VERSION = 1.03e
BONNIE_SOURCE = bonnie++-$(BONNIE_VERSION).tgz
BONNIE_SITE = http://www.coker.com.au/bonnie++/
BONNIE_SITE = http://www.coker.com.au/bonnie++
BONNIE_LICENSE = GPLv2
BONNIE_LICENSE_FILES = copyright.txt

Expand Down
2 changes: 1 addition & 1 deletion package/bustle/bustle.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

BUSTLE_VERSION = 0.4.3
BUSTLE_SITE = http://www.willthompson.co.uk/bustle/releases/$(BUSTLE_VERSION)/
BUSTLE_SITE = http://www.willthompson.co.uk/bustle/releases/$(BUSTLE_VERSION)
BUSTLE_LICENSE = LGPLv2.1+
BUSTLE_LICENSE_FILES = LICENSE
BUSTLE_DEPENDENCIES = libglib2 libpcap host-pkgconf
Expand Down
2 changes: 1 addition & 1 deletion package/bwm-ng/bwm-ng.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

BWM_NG_VERSION = 0.6
BWM_NG_SITE = http://downloads.sourceforge.net/project/bwmng/bwmng/$(BWM_NG_VERSION)/
BWM_NG_SITE = http://downloads.sourceforge.net/project/bwmng/bwmng/$(BWM_NG_VERSION)
BWM_NG_CONF_OPT = --with-procnetdev --with-diskstats
BWM_NG_LICENSE = GPLv2
BWM_NG_LICENSE_FILES = COPYING
Expand Down
2 changes: 1 addition & 1 deletion package/ca-certificates/ca-certificates.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

CA_CERTIFICATES_VERSION = 20140223
CA_CERTIFICATES_SOURCE = ca-certificates_$(CA_CERTIFICATES_VERSION).tar.xz
CA_CERTIFICATES_SITE = http://snapshot.debian.org/archive/debian/20140325T163435Z/pool/main/c/ca-certificates/
CA_CERTIFICATES_SITE = http://snapshot.debian.org/archive/debian/20140325T163435Z/pool/main/c/ca-certificates
CA_CERTIFICATES_DEPENDENCIES = host-openssl host-python
CA_CERTIFICATES_LICENSE = GPLv2+ (script), MPLv2.0 (data)
CA_CERTIFICATES_LICENSE_FILES = debian/copyright
Expand Down
2 changes: 1 addition & 1 deletion package/ccrypt/ccrypt.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

CCRYPT_VERSION = 1.10
CCRYPT_SITE = http://ccrypt.sourceforge.net/download/
CCRYPT_SITE = http://ccrypt.sourceforge.net/download

CCRYPT_LICENSE = GPLv2+
CCRYPT_LICENSE_FILES = COPYING
Expand Down
2 changes: 1 addition & 1 deletion package/chrony/chrony.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

CHRONY_VERSION = 1.29.1
CHRONY_SITE = http://download.tuxfamily.org/chrony/
CHRONY_SITE = http://download.tuxfamily.org/chrony
CHRONY_LICENSE = GPLv2
CHRONY_LICENSE_FILES = COPYING

Expand Down
2 changes: 1 addition & 1 deletion package/cloog/cloog.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

CLOOG_VERSION = 0.18.2
CLOOG_SITE = http://www.bastoul.net/cloog/pages/download/
CLOOG_SITE = http://www.bastoul.net/cloog/pages/download
CLOOG_LICENSE = LGPLv2.1+
CLOOG_DEPENDENCIES = gmp isl
# Our libtool patch doesn't apply, and since this package is only
Expand Down
2 changes: 1 addition & 1 deletion package/cmake/cmake.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

CMAKE_VERSION_MAJOR = 2.8
CMAKE_VERSION = $(CMAKE_VERSION_MAJOR).12.2
CMAKE_SITE = http://www.cmake.org/files/v$(CMAKE_VERSION_MAJOR)/
CMAKE_SITE = http://www.cmake.org/files/v$(CMAKE_VERSION_MAJOR)
CMAKE_LICENSE = BSD-3c
CMAKE_LICENSE_FILES = Copyright.txt

Expand Down
2 changes: 1 addition & 1 deletion package/connman/connman.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

CONNMAN_VERSION = 1.23
CONNMAN_SOURCE = connman-$(CONNMAN_VERSION).tar.xz
CONNMAN_SITE = $(BR2_KERNEL_MIRROR)/linux/network/connman/
CONNMAN_SITE = $(BR2_KERNEL_MIRROR)/linux/network/connman
CONNMAN_DEPENDENCIES = libglib2 dbus iptables
CONNMAN_INSTALL_STAGING = YES
CONNMAN_LICENSE = GPLv2
Expand Down
2 changes: 1 addition & 1 deletion package/ctorrent/ctorrent.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

CTORRENT_VERSION = dnh3.3.2
CTORRENT_SITE = http://www.rahul.net/dholmes/ctorrent/
CTORRENT_SITE = http://www.rahul.net/dholmes/ctorrent
CTORRENT_LICENSE = GPLv2
CTORRENT_LICENSE_FILES = COPYING

Expand Down
2 changes: 1 addition & 1 deletion package/cvs/cvs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
CVS_VERSION = 1.12.13
CVS_SOURCE = cvs_$(CVS_VERSION).orig.tar.gz
CVS_PATCH = cvs_$(CVS_VERSION)-12.diff.gz
CVS_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/c/cvs/
CVS_SITE = $(BR2_DEBIAN_MIRROR)/debian/pool/main/c/cvs
CVS_DEPENDENCIES = ncurses

CVS_CONF_ENV = cvs_cv_func_printf_ptr=yes
Expand Down
2 changes: 1 addition & 1 deletion package/dbus-python/dbus-python.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

DBUS_PYTHON_VERSION = 1.2.0
DBUS_PYTHON_SITE = http://dbus.freedesktop.org/releases/dbus-python/
DBUS_PYTHON_SITE = http://dbus.freedesktop.org/releases/dbus-python
DBUS_PYTHON_INSTALL_STAGING = YES
DBUS_PYTHON_LICENSE = MIT
DBUS_PYTHON_LICENSE_FILES = COPYING
Expand Down
2 changes: 1 addition & 1 deletion package/dcron/dcron.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

DCRON_VERSION = 4.5
DCRON_SITE = http://www.jimpryor.net/linux/releases/
DCRON_SITE = http://www.jimpryor.net/linux/releases
# The source code does not specify the version of the GPL that is used.
DCRON_LICENSE = GPL

Expand Down
2 changes: 1 addition & 1 deletion package/dfu-util/dfu-util.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

DFU_UTIL_VERSION = 0.6
DFU_UTIL_SITE = http://dfu-util.gnumonks.org/releases/
DFU_UTIL_SITE = http://dfu-util.gnumonks.org/releases
DFU_UTIL_LICENSE = GPLv2+
DFU_UTIL_LICENSE_FILES = COPYING

Expand Down
2 changes: 1 addition & 1 deletion package/dhcpdump/dhcpdump.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

DHCPDUMP_VERSION = 1.8
DHCPDUMP_SITE = http://www.mavetju.org/download/
DHCPDUMP_SITE = http://www.mavetju.org/download
DHCPDUMP_DEPENDENCIES = libpcap
DHCPDUMP_LICENSE = BSD-2c
DHCPDUMP_LICENSE_FILES = LICENSE
Expand Down
2 changes: 1 addition & 1 deletion package/dhrystone/dhrystone.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

DHRYSTONE_VERSION = 2
DHRYSTONE_SOURCE = dhry-c
DHRYSTONE_SITE = http://www.netlib.org/benchmark/
DHRYSTONE_SITE = http://www.netlib.org/benchmark

define DHRYSTONE_EXTRACT_CMDS
(cd $(@D) && $(SHELL) $(DL_DIR)/$($(PKG)_SOURCE))
Expand Down
2 changes: 1 addition & 1 deletion package/distcc/distcc.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

DISTCC_VERSION = 2.18.3
DISTCC_SOURCE = distcc-$(DISTCC_VERSION).tar.bz2
DISTCC_SITE = http://distcc.googlecode.com/files/
DISTCC_SITE = http://distcc.googlecode.com/files
DISTCC_CONF_OPT = --with-included-popt --without-gtk --without-gnome
DISTCC_LICENSE = GPLv2+
DISTCC_LICENSE_FILES = COPYING
Expand Down
2 changes: 1 addition & 1 deletion package/dmidecode/dmidecode.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

DMIDECODE_VERSION = 2.12
DMIDECODE_SITE = http://download.savannah.gnu.org/releases/dmidecode/
DMIDECODE_SITE = http://download.savannah.gnu.org/releases/dmidecode
DMIDECODE_LICENSE = GPLv2+
DMIDECODE_LICENSE_FILES = LICENSE

Expand Down
2 changes: 1 addition & 1 deletion package/doom-wad/doom-wad.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

DOOM_WAD_VERSION = 1.8
DOOM_WAD_SOURCE = doom-$(DOOM_WAD_VERSION).wad.gz
DOOM_WAD_SITE = ftp://ftp.idsoftware.com/idstuff/doom/
DOOM_WAD_SITE = ftp://ftp.idsoftware.com/idstuff/doom

define DOOM_WAD_EXTRACT_CMDS
$(ZCAT) $(DL_DIR)/$($(PKG)_SOURCE) > $(@D)/doom1.wad
Expand Down
2 changes: 1 addition & 1 deletion package/dropwatch/dropwatch.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

DROPWATCH_VERSION = 1.4
DROPWATCH_SOURCE = dropwatch-$(DROPWATCH_VERSION).tar.xz
DROPWATCH_SITE = https://git.fedorahosted.org/cgit/dropwatch.git/snapshot/
DROPWATCH_SITE = https://git.fedorahosted.org/cgit/dropwatch.git/snapshot
DROPWATCH_DEPENDENCIES = binutils libnl readline host-pkgconf
DROPWATCH_LICENSE = GPLv2
DROPWATCH_LICENSE_FILES = COPYING
Expand Down
2 changes: 1 addition & 1 deletion package/dsp-tools/dsp-tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

DSP_TOOLS_VERSION = 2.0
DSP_TOOLS_SITE = http://gst-dsp.googlecode.com/files/
DSP_TOOLS_SITE = http://gst-dsp.googlecode.com/files
DSP_TOOLS_DEPENDENCIES = tidsp-binaries
DSP_TOOLS_LICENSE = LGPLv2.1
DSP_TOOLS_LICENSE_FILES = LICENSE
Expand Down
2 changes: 1 addition & 1 deletion package/efl/expedite/expedite.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
################################################################################

EXPEDITE_VERSION = $(EFL_VERSION)
EXPEDITE_SITE = http://download.enlightenment.org/releases/
EXPEDITE_SITE = http://download.enlightenment.org/releases
EXPEDITE_LICENSE = BSD-2c
EXPEDITE_LICENSE_FILES = COPYING

Expand Down
Loading

0 comments on commit c7f4b96

Please sign in to comment.