Files
CoreMP135_buildroot/package/gnuplot/gnuplot.mk
T

55 lines
1.4 KiB
Makefile
Raw Normal View History

2013-06-05 23:53:30 +00:00
################################################################################
2013-03-24 08:19:25 +00:00
#
# gnuplot
#
2013-06-05 23:53:30 +00:00
################################################################################
2013-03-24 08:19:25 +00:00
2022-10-04 09:32:33 +02:00
GNUPLOT_VERSION = 5.4.5
2013-03-24 08:19:25 +00:00
GNUPLOT_SITE = http://downloads.sourceforge.net/project/gnuplot/gnuplot/$(GNUPLOT_VERSION)
GNUPLOT_LICENSE = gnuplot license (open source)
GNUPLOT_LICENSE_FILES = Copyright
GNUPLOT_CPE_ID_VENDOR = gnuplot_project
2013-03-24 08:19:25 +00:00
GNUPLOT_AUTORECONF = YES
2014-12-24 08:54:24 +01:00
GNUPLOT_CONF_OPTS = \
--without-x \
--disable-raise-console \
--disable-mouse \
--without-tutorial \
--disable-demo \
--without-row-help \
--disable-history-file \
--disable-wxwidgets \
--without-lua \
--without-latex \
--without-cairo
2013-03-24 08:19:25 +00:00
2016-08-08 06:47:04 +02:00
# relocation truncated to fit: R_68K_GOT16O
ifeq ($(BR2_m68k_cf),y)
GNUPLOT_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -mxgot"
endif
2013-04-03 01:04:23 +00:00
ifeq ($(BR2_PACKAGE_GD)$(BR2_PACKAGE_LIBPNG),yy)
GNUPLOT_CONF_OPTS += --with-gd
2021-01-23 11:32:38 +01:00
GNUPLOT_DEPENDENCIES += host-pkgconf gd
2013-03-24 08:19:25 +00:00
else
GNUPLOT_CONF_OPTS += --without-gd
2013-03-24 08:19:25 +00:00
endif
ifeq ($(BR2_PACKAGE_READLINE),y)
GNUPLOT_CONF_OPTS += --with-readline=gnu
2013-03-24 08:19:25 +00:00
GNUPLOT_DEPENDENCIES += readline
else
GNUPLOT_CONF_OPTS += --without-readline
2013-03-24 08:19:25 +00:00
endif
# Remove Javascript scripts, lua scripts, PostScript files
define GNUPLOT_REMOVE_UNNEEDED_FILES
$(RM) -rf $(TARGET_DIR)/usr/share/gnuplot
endef
GNUPLOT_POST_INSTALL_TARGET_HOOKS += GNUPLOT_REMOVE_UNNEEDED_FILES
$(eval $(autotools-package))