mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
1fb0ae7cf9
While here, fix libIlmImfUtil_la_LDFLAGp so that when linking libIlmImfUtil, the locally built libIlmImf gets precedence over the one in /usr/local, to permit upgrades in a running system with the older version installed. This changes the library's SONAME, so bump PORTREVISION of all dependees. Unfortunately, this looks a bit too intrusive for an MFH to 2017Q4. Security: CVE-2017-9110 Security: CVE-2017-9111 Security: CVE-2017-9112 Security: CVE-2017-9113 Security: CVE-2017-9114 Security: CVE-2017-9115 Security: CVE-2017-9116 Security: 803879e9-4195-11e7-9b08-080027ef73ec
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
# Created by: Yeti <yeti@gwyddion.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gwyddion
|
|
PORTVERSION= 2.45
|
|
PORTREVISION= 3
|
|
CATEGORIES= science graphics
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Gtk2 based SPM data visualization and analysis tool
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libminizip.so:archivers/minizip \
|
|
libcfitsio.so:astro/cfitsio \
|
|
libIlmImf.so:graphics/OpenEXR \
|
|
libfftw3.so:math/fftw3 \
|
|
libgtkglext-x11-1.0.so:x11-toolkits/gtkglext
|
|
|
|
USES= desktop-file-utils gettext gmake libtool localbase:ldflags \
|
|
pathfix pkgconfig shared-mime-info shebangfix tar:xz
|
|
SHEBANG_FILES= plugins/process/invert_python.py
|
|
USE_GNOME= gconf2 gtk20 libxml2
|
|
USE_GL= glu
|
|
USE_XORG= xmu
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-gtk-doc \
|
|
--without-kde4-thumbnailer
|
|
INSTALL_TARGET= install-strip
|
|
INSTALLS_ICONS= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
GCONF_SCHEMAS= gwyddion-thumbnailer.schemas
|
|
|
|
OPTIONS_DEFINE= PERL PYTHON RUBY UNIQUE
|
|
OPTIONS_DEFAULT= PERL PYTHON UNIQUE
|
|
OPTIONS_SUB= yes
|
|
|
|
PERL_USES= perl5
|
|
PERL_CONFIGURE_WITH= perl
|
|
PYTHON_USES= python:2.7
|
|
PYTHON_USE= gnome=pygtksourceview
|
|
PYTHON_CONFIGURE_ENABLE= pygwy
|
|
PYTHON_CONFIGURE_WITH= gtksourceview python
|
|
RUBY_USE= ruby=yes
|
|
RUBY_CONFIGURE_WITH= ruby
|
|
UNIQUE_DESC= Remote control backend support
|
|
UNIQUE_LIB_DEPENDS= libunique-1.0.so:x11-toolkits/unique
|
|
UNIQUE_CONFIGURE_WITH= unique
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|thumbnailer \\|thumbnailer| ; \
|
|
s|devel-docs$$||' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|