summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Grabsch <vog@notjusthosting.com>2009-11-09 03:05:29 (GMT)
committerVolker Grabsch <vog@notjusthosting.com>2009-11-09 03:05:29 (GMT)
commite370f6d131dfc9a91ff3067308d10c6639edf978 (patch)
tree5cabff7e0ff92f7ccf36a219f53ae826960fb543 /src
parent72caeeac7871a843eb2d1d14b7c32d14b519ed9e (diff)
downloadmxe-e370f6d131dfc9a91ff3067308d10c6639edf978.zip
mxe-e370f6d131dfc9a91ff3067308d10c6639edf978.tar.gz
mxe-e370f6d131dfc9a91ff3067308d10c6639edf978.tar.bz2
new package: plotutils (by Bart van Andel)
Diffstat (limited to 'src')
-rw-r--r--src/plotutils.mk53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/plotutils.mk b/src/plotutils.mk
new file mode 100644
index 0000000..cd6a968
--- /dev/null
+++ b/src/plotutils.mk
@@ -0,0 +1,53 @@
+# Copyright (C) 2009 Bart van Andel
+# Volker Grabsch
+#
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject
+# to the following conditions:
+#
+# The above copyright notice and this permission notice shall be
+# included in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+# plotutils
+PKG := plotutils
+$(PKG)_IGNORE :=
+$(PKG)_VERSION := 2.6
+$(PKG)_CHECKSUM := 7921301d9dfe8991e3df2829bd733df6b2a70838
+$(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION)
+$(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz
+$(PKG)_WEBSITE := http://www.gnu.org/software/plotutils/
+$(PKG)_URL := http://ftpmirror.gnu.org/$(PKG)/$($(PKG)_FILE)
+$(PKG)_URL_2 := http://ftp.gnu.org/gnu/$(PKG)/$($(PKG)_FILE)
+$(PKG)_DEPS := gcc libpng
+
+define $(PKG)_UPDATE
+ wget -q -O- 'http://ftp.gnu.org/gnu/plotutils/?C=M;O=D' | \
+ grep '<a href="plotutils-' | \
+ $(SED) -n 's,.*plotutils-\([0-9][^<]*\)\.tar\.gz.*,\1,p' | \
+ head -1
+endef
+
+define $(PKG)_BUILD
+ cd '$(1)' && ./configure \
+ --prefix='$(PREFIX)/$(TARGET)' \
+ --host='$(TARGET)' \
+ --disable-shared \
+ --enable-libplotter \
+ --enable-libxmi \
+ --with-png \
+ --without-x \
+ CFLAGS='-DNO_SYSTEM_GAMMA'
+ $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS= man_MANS= INFO_DEPS=
+endef