35 lines
1,019 B
Makefile
35 lines
1,019 B
Makefile
# Created by: Joe Marcus Clarke <marcus@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= goffice
|
|
PORTVERSION= 0.10.25
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= GNOME
|
|
PKGNAMESUFFIX= 010
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= GLib/GTK+ set of document centric objects and utilities
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USE_GNOME= gtk30 intlhack introspection:build libgsf librsvg2 libxslt
|
|
USES= gettext gmake libtool pathfix pkgconfig tar:xz
|
|
USE_XORG= xrender xext
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
INSTALL_TARGET= install-strip
|
|
CONFIGURE_ARGS= --with-lasem=no --with-config-backend=gsettings \
|
|
--enable-compile-warnings=no \
|
|
--enable-introspection
|
|
|
|
PLIST_SUB= VERSION=${PORTVERSION} SHORT_VER=${PORTVERSION:R}
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/goffice/${SHORT_VER}/plugins
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgoffice-0.10.so.*
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/goffice/${PORTVERSION}/plugins/*/*.so
|
|
|
|
.include <bsd.port.mk>
|