51 lines
1.5 KiB
Makefile
51 lines
1.5 KiB
Makefile
# $OpenBSD: Makefile,v 1.102 2014/05/24 06:37:40 ajacoutot Exp $
|
|
|
|
GOFFICE_API_VERSION= 0.10
|
|
GOFFICE_VERSION= 0.10.16
|
|
|
|
COMMENT= spreadsheet application for GNOME
|
|
|
|
GNOME_PROJECT= gnumeric
|
|
GNOME_VERSION= 1.12.16
|
|
|
|
GNUMERIC_API_VERSION= ${GNOME_VERSION:R}
|
|
SUBST_VARS= GNOME_VERSION GOFFICE_GNOME_VERSION GOFFICE_API_VERSION GNUMERIC_API_VERSION
|
|
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += ICE SM X11 Xcomposite Xcursor Xdamage Xext Xfixes Xi
|
|
WANTLIB += Xinerama Xrandr Xrender atk-1.0 atk-bridge-2.0 atspi
|
|
WANTLIB += avahi-common bz2 c cairo cairo-gobject croco-0.6 dbus-1
|
|
WANTLIB += expat ffi fontconfig freetype gdk-3 gdk_pixbuf-2.0
|
|
WANTLIB += gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0 goffice-0.10
|
|
WANTLIB += graphite2 gs gsf-1 gthread-2.0 gtk-3 harfbuzz jpeg
|
|
WANTLIB += m pango-1.0 pangocairo-1.0 pangoft2-1.0 pcre perl pixman-1
|
|
WANTLIB += png pthread pthread-stubs rsvg-2 spectre util xcb xcb-render
|
|
WANTLIB += xcb-shm xml2 xslt z
|
|
|
|
MODULES= devel/dconf \
|
|
devel/gettext \
|
|
x11/gnome
|
|
|
|
LIB_DEPENDS= devel/goffice=${GOFFICE_VERSION}
|
|
|
|
MODGNOME_TOOLS += desktop-file-utils gobject-introspection gtk-update-icon-cache
|
|
MODGNOME_TOOLS += yelp
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --without-gda \
|
|
--without-psiconv \
|
|
--without-paradox \
|
|
--without-python
|
|
|
|
post-install:
|
|
rm ${PREFIX}/lib/goffice/${GOFFICE_API_VERSION}/plugins/gnumeric/gnumeric.{a,la}
|
|
rm ${PREFIX}/lib/gnumeric/${GNOME_VERSION}/plugins/*/*.{a,la}
|
|
|
|
.include <bsd.port.mk>
|