b8918e2a7d
+ Rename lua and lua-devel to lua52 and lua52-devel + Modify packages depending on lua52 accordingly: + Many packages auto-detect lua52 files + Some packages need hints where / how to find lua52 + One package (xmoto) downgraded to lua51, because it wouldn't find lua52 + One package (vim) upgraded to lua (5.3.1) There may be more packages upgradable without problems. I didn't want to change too much in this move without the respective package maintainers first taking a look. Most notably conky-cli wouldn't work with lua52. I upgraded it to 1.10.0 (same as conky) and tried to keep the flags the same for the change from gnu-configure to cmake.
119 lines
3.2 KiB
Bash
119 lines
3.2 KiB
Bash
# Template file for 'gnuplot'
|
|
pkgname=gnuplot
|
|
version=5.0.1
|
|
revision=2
|
|
configure_args="--with-readline=builtin"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="zlib-devel libX11-devel gd-devel lua52-devel"
|
|
depends="gnuplot-common>=${version}_${revision}"
|
|
replaces="gnuplot<4.6.6_1"
|
|
short_desc="Command-line driven graphing utility"
|
|
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
|
homepage="http://www.gnuplot.info/"
|
|
license="gnuplot"
|
|
distfiles="${SOURCEFORGE_SITE}/gnuplot/gnuplot/${version}/gnuplot-${version}.tar.gz"
|
|
checksum=7cbc557e71df581ea520123fb439dea5f073adcc9010a2885dc80d4ed28b3c47
|
|
|
|
CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/lua5.2"
|
|
|
|
subpackages="gnuplot-common"
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
makedepends+=" cairo-devel pango-devel wxGTK-devel qt-devel"
|
|
subpackages+=" gnuplot-wx gnuplot-qt"
|
|
fi
|
|
|
|
pre_configure() {
|
|
# fix fonts location
|
|
sed -i \
|
|
-e 's|/usr/X11R6/lib/X11/fonts/Type1|/usr/share/fonts/Type1|' \
|
|
-e 's|/usr/X11R6/lib/X11/fonts/truetype|/usr/share/fonts/TTF|' \
|
|
-e 's|$(X11ROOT)/X11R6/lib/X11/fonts/Type1|$(X11ROOT)/usr/share/fonts/Type1|' \
|
|
src/variable.c
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
sed -i 's|^\(SUBDIRS =.*\)demo |\1|' Makefile.in
|
|
sed -i 's|^\(CFLAGS =\).*|\1 -O0|' docs/Makefile.in
|
|
fi
|
|
|
|
mkdir -p x11
|
|
mv * x11 || true
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
cp -a x11 wx
|
|
cp -a x11 qt
|
|
fi
|
|
}
|
|
|
|
do_configure() {
|
|
export LUA_CFLAGS="-L${XBPS_CROSS_BASE}/usr/include/lua5.2"
|
|
export LUA_LIBS="-L${XBPS_CROSS_BASE}/usr/lib -llua5.2"
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
cd ${wrksrc}/x11
|
|
./configure ${configure_args} --without-qt --disable-wxwidgets --without-cairo --disable-wxt
|
|
cd ${wrksrc}/wx
|
|
./configure ${configure_args}
|
|
cd ${wrksrc}/qt
|
|
./configure ${configure_args} --enable-qt --disable-wxwidgets
|
|
else
|
|
cd ${wrksrc}/x11
|
|
./configure ${configure_args}
|
|
fi
|
|
}
|
|
|
|
do_build() {
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
make -C wx ${makejobs}
|
|
make -C qt ${makejobs}
|
|
else
|
|
make -C x11/docs CC=gcc
|
|
fi
|
|
make -C x11 ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
# install x11 and rename binary
|
|
make -C x11 DESTDIR=${DESTDIR} install
|
|
mv ${DESTDIR}/usr/bin/gnuplot{,-x11}
|
|
if [ -z "$CROSS_BUILD" ]; then
|
|
# install qt and rename binary
|
|
make -C qt DESTDIR=${DESTDIR} install
|
|
mv ${DESTDIR}/usr/bin/gnuplot{,-qt}
|
|
# install wx
|
|
make -C wx DESTDIR=${DESTDIR} install
|
|
fi
|
|
vlicense x11/Copyright LICENSE
|
|
}
|
|
|
|
gnuplot-common_package() {
|
|
replaces="gnuplot<4.6.6_1"
|
|
short_desc+=" - common files"
|
|
pkg_install() {
|
|
vmove usr/share/gnuplot/${version%.*}/PostScript
|
|
vmove usr/share/gnuplot/${version%.*}/app-defaults
|
|
vmove usr/share/gnuplot/${version%.*}/js
|
|
vmove usr/share/gnuplot/${version%.*}/lua
|
|
vmove usr/share/gnuplot/${version%.*}/*.gp
|
|
vmove usr/share/gnuplot/${version%.*}/gnuplot.gih
|
|
vmove usr/share/gnuplot/${version%.*}/gnuplotrc
|
|
vmove usr/share/licenses/gnuplot
|
|
vmove usr/share/man/man1/gnuplot.1
|
|
}
|
|
}
|
|
|
|
gnuplot-wx_package() {
|
|
replaces="gnuplot<4.6.6_1"
|
|
depends="gnuplot-common>=${version}_${revision}"
|
|
short_desc+=" - wxWidgets frontend"
|
|
pkg_install() {
|
|
vmove usr/bin/gnuplot
|
|
}
|
|
}
|
|
|
|
gnuplot-qt_package() {
|
|
depends="gnuplot-common>=${version}_${revision}"
|
|
short_desc+=" - Qt frontend"
|
|
pkg_install() {
|
|
vmove usr/bin/gnuplot-qt
|
|
vmove usr/libexec/gnuplot/${version%.*}/gnuplot_qt
|
|
vmove usr/share/gnuplot/${version%.*}/qt
|
|
}
|
|
}
|