92 lines
2.3 KiB
Makefile
92 lines
2.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.27 2011/03/02 06:43:25 ajacoutot Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT-main= graph based image processing framework
|
|
COMMENT-plugins=gegl plugins
|
|
|
|
V= 0.1.6
|
|
DISTNAME= gegl-${V}
|
|
CATEGORIES= graphics devel
|
|
|
|
PKGNAME-main= gegl-${V}
|
|
PKGNAME-plugins=gegl-plugins-${V}
|
|
|
|
SHARED_LIBS= gegl-0.1 1.0 # .105.1
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
HOMEPAGE= http://gegl.org/
|
|
|
|
# GPLv3/LGPLv3
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.gimp.org/pub/gegl/${V:R}/ \
|
|
ftp://ftp.sunet.se/pub/gnu/babl/${V:R}/ \
|
|
ftp://ftp.cs.umn.edu/pub/gimp/pub/babl/${V:R}/
|
|
|
|
MULTI_PACKAGES= -main -plugins
|
|
|
|
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0
|
|
WANTLIB += gthread-2.0 m pcre z execinfo
|
|
|
|
MODULES= devel/gettext
|
|
|
|
USE_LIBTOOL= Yes
|
|
LIBTOOL_FLAGS= --tag=disable-static
|
|
|
|
USE_GMAKE= Yes
|
|
|
|
WANTLIB-main += ${WANTLIB}
|
|
WANTLIB-main += X11 Xau Xdmcp Xrender c cairo croco-0.6 expat fontconfig
|
|
WANTLIB-main += freetype gdk_pixbuf-2.0 jpeg pango-1.0
|
|
WANTLIB-main += pangocairo-1.0 pangoft2-1.0 pixman-1 png pthread
|
|
WANTLIB-main += pthread-stubs xcb xml2 xcb-render
|
|
WANTLIB-main += rsvg-2 babl-0.1
|
|
WANTLIB-main += GL Xdamage Xext Xfixes Xxf86vm drm jasper xcb-shm
|
|
|
|
LIB_DEPENDS= devel/libexecinfo
|
|
|
|
LIB_DEPENDS-main= ${LIB_DEPENDS} \
|
|
x11/gnome/librsvg \
|
|
graphics/babl
|
|
|
|
WANTLIB-plugins += ${WANTLIB}
|
|
WANTLIB-plugins += Half Iex IlmThread Imath faac faad gsm mp3lame ogg
|
|
WANTLIB-plugins += orc-0.4 schroedinger-1.0 speex stdc++ theora
|
|
WANTLIB-plugins += vorbis vorbisenc x264 IlmImf>=4 avcodec>=14
|
|
WANTLIB-plugins += avformat avutil bz2
|
|
|
|
RUN_DEPENDS-plugins= ${BUILD_PKGPATH},-main
|
|
LIB_DEPENDS-plugins= ${LIB_DEPENDS} \
|
|
graphics/openexr \
|
|
graphics/ffmpeg>=20100512
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -lexecinfo" \
|
|
ac_cv_path_ASCIIDOC="no" \
|
|
ac_cv_path_W3M="no" \
|
|
ac_cv_path_ENSCRIPT="no" \
|
|
ac_cv_prog_RUBY=""
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} \
|
|
--disable-gtk-doc \
|
|
--disable-silent-rules \
|
|
--disable-static \
|
|
--disable-docs \
|
|
--without-sdl \
|
|
--without-lua \
|
|
--without-libopenraw \
|
|
--without-graphviz \
|
|
--without-libv4l \
|
|
--without-libspiro
|
|
|
|
# be safe until proven stable
|
|
CONFIGURE_ARGS+= --enable-mmx \
|
|
--disable-sse
|
|
|
|
.include <bsd.port.mk>
|