aboutsummaryrefslogtreecommitdiff
path: root/astro/siril/Makefile
blob: f03ed8bb22323081214a1f445685b30950cc2914 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# $FreeBSD$

PORTNAME=	siril
DISTVERSION=	0.9.12
PORTREVISION=	2
CATEGORIES=	astro graphics
MASTER_SITES=	https://free-astro.org/download/

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	Astronomical image processing software

LICENSE=	GPLv3
LICENSE_FILE=	${WRKSRC}/LICENSE.md

BROKEN_i386=	undefined reference to `__atomic_load' and `__atomic_compare_exchange' #`

LIB_DEPENDS=	libavformat.so:multimedia/ffmpeg \
		libcfitsio.so:astro/cfitsio \
		libconfig.so:devel/libconfig \
		libcurl.so:ftp/curl \
		libffms2.so:multimedia/ffms2 \
		libfftw3.so:math/fftw3 \
		libgsl.so:math/gsl \
		liblcms2.so:graphics/lcms2 \
		libopencv_core.so:graphics/opencv-core \
		libpng.so:graphics/png \
		libraw.so:graphics/libraw \
		libtiff.so:graphics/tiff
LIB_DEPENDS+=	libopencv_photo.so:graphics/opencv # for some reason, configure fails without opencv, but executable only links to opencv-core

USES=		autoreconf compiler:c++11-lang desktop-file-utils gettext \
		gmake gnome localbase pkgconfig jpeg shared-mime-info tar:bz2
GNU_CONFIGURE=	yes
USE_GNOME=	atk cairo gdkpixbuf2 gtk30 intltool pango

CFLAGS+=	-fcommon # https://gitlab.com/free-astro/siril/-/issues/581

INSTALLS_ICONS=	yes

OPTIONS_DEFINE=			OPENMP
OPTIONS_DEFAULT=		OPENMP

OPENMP_CONFIGURE_ENABLE=	openmp

post-install:
	@${MKDIR} ${STAGEDIR}${PREFIX}/share/appdata ${STAGEDIR}${PREFIX}/share/mime/packages
	${INSTALL_DATA} ${WRKSRC}/platform-specific/linux/org.free_astro.siril.desktop ${STAGEDIR}${PREFIX}/share/applications/${PORTNAME}.desktop
	${INSTALL_DATA} ${WRKSRC}/platform-specific/linux/org.free_astro.siril.appdata.xml ${STAGEDIR}${PREFIX}/share/appdata/${PORTNAME}.appdata.xml
	${INSTALL_DATA} ${WRKSRC}/platform-specific/linux/siril.xml ${STAGEDIR}${PREFIX}/share/mime/packages/
	cd ${WRKSRC}/pixmaps && ${COPYTREE_SHARE} icons ${STAGEDIR}${PREFIX}/share/

.include <bsd.port.mk>