buildroot/package/dc3dd/dc3dd.mk
Rodrigo Rebello 09c7634248 dc3dd: gettextize to match newer gettext version
Because dc3dd is being autoreconfigured and comes with an old gettext
infra, gettextize needs to be called so that the infra is updated to
match the newer version used in Buildroot.

Commit b36d57fab included a patch to add the definition of MKDIR_P to
po/Makefile.in.in in order to fix autobuild failures that ocurred when
host-gettext was built before dc3dd. This patch is no longer necessary
as gettextize adds a new Makefile template which contains the needed
definition, so drop it.

Signed-off-by: Rodrigo Rebello <rprebello@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-04-03 15:09:17 +02:00

19 lines
645 B
Makefile

################################################################################
#
# dc3dd
#
################################################################################
DC3DD_VERSION_MAJOR = 7.2
DC3DD_VERSION = $(DC3DD_VERSION_MAJOR).641
DC3DD_SOURCE = dc3dd-$(DC3DD_VERSION).tar.xz
DC3DD_SITE = https://downloads.sourceforge.net/project/dc3dd/dc3dd/$(DC3DD_VERSION_MAJOR)
DC3DD_LICENSE = GPL-3.0+
DC3DD_LICENSE_FILES = COPYING
# We are patching Makefile.am, so we need to autoreconf. We also need to
# enable gettextize as dc3dd comes with an old gettext infra.
DC3DD_AUTORECONF = YES
DC3DD_GETTEXTIZE = YES
$(eval $(autotools-package))