88 lines
2.3 KiB
Makefile
88 lines
2.3 KiB
Makefile
# $OpenBSD: Makefile,v 1.36 2010/11/20 09:48:40 espie Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= DTP program
|
|
DISTNAME= scribus-1.3.4
|
|
REVISION = 13
|
|
CATEGORIES= print
|
|
|
|
# These are actually internal modules, not generic shared libs
|
|
SHARED_LIBS= scribus12format 0.0 \
|
|
scribus134format 0.0 \
|
|
scribus13format 0.0
|
|
|
|
HOMEPAGE= http://www.scribus.net/
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM?= Yes
|
|
PERMIT_PACKAGE_FTP?= Yes
|
|
PERMIT_DISTFILES_CDROM?=Yes
|
|
PERMIT_DISTFILES_FTP?= Yes
|
|
|
|
WANTLIB += ICE SM X11 Xau Xdmcp Xext asn1 c crypto expat fontconfig
|
|
WANTLIB += freetype gssapi krb5 m pthread pthread-stubs ssl stdc++
|
|
WANTLIB += util xcb z jpeg lcms art_lgpl_2 png tiff cups xml2
|
|
WANTLIB += ${MODPY_WANTLIB}
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=scribus/}
|
|
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MODULES= x11/qt3 \
|
|
converters/libiconv \
|
|
lang/python
|
|
MODPY_VERSION= 2.6
|
|
|
|
RUN_DEPENDS= misc/shared-mime-info \
|
|
devel/desktop-file-utils
|
|
LIB_DEPENDS= graphics/jpeg \
|
|
graphics/lcms \
|
|
graphics/libart \
|
|
graphics/png \
|
|
graphics/tiff \
|
|
${MODPY_LIB_DEPENDS} \
|
|
print/cups \
|
|
textproc/libxml
|
|
|
|
USE_GMAKE= Yes
|
|
USE_LIBTOOL= Yes
|
|
USE_GROFF = Yes
|
|
|
|
CONFIGURE_STYLE=autoconf gnu
|
|
AUTOCONF_VERSION=2.60
|
|
CONFIGURE_ARGS= ${MODQT_CONFIGURE_ARGS} \
|
|
--with-extra-libs=${LOCALBASE}/lib \
|
|
--with-extra-includes=${LOCALBASE}/include/libpng:${LOCALBASE}/include
|
|
CONFIGURE_ENV+= UIC_PATH=${MODQT_UIC} \
|
|
CPPFLAGS='-I${MODQT_INCDIR} -I${LOCALBASE}/include/libpng \
|
|
-I${LOCALBASE}/include' LDFLAGS='-L${MODQT_LIBDIR} \
|
|
-L${LOCALBASE}/lib'
|
|
|
|
FLAVORS= debug
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mdebug}
|
|
CONFIGURE_ARGS+=--enable-debug=Yes
|
|
CFLAGS+=-g
|
|
CXXFLAGS+=-g
|
|
.endif
|
|
|
|
PLUGINS=about charselect csvim fontpreview htmlim importps \
|
|
newfromtemplateplugin odtimplugin oodrawimp pdf postscript preferences \
|
|
preview saveastemplateplugin scribusexportpixmap scribusshortwords \
|
|
scriptplugin svgexplugin svgimplugin sxwimplugin textfilterplugin \
|
|
txtim barcodegenerator colorwheel docim oldscribusformat pdbim
|
|
.for _n in ${PLUGINS}
|
|
MAKE_FLAGS+= lib${_n}_la_LDFLAGS='-module -avoid-version'
|
|
.endfor
|
|
|
|
post-install:
|
|
rm -rf ${WRKINST}/usr/local/share/doc/scribus
|
|
mv ${WRKINST}/usr/local/share/doc/${DISTNAME} \
|
|
${WRKINST}/usr/local/share/doc/scribus
|
|
@${INSTALL_DATA_DIR} ${PREFIX}/share/applications
|
|
@${INSTALL_DATA} ${WRKSRC}/scribus.desktop ${PREFIX}/share/applications
|
|
|
|
.include <bsd.port.mk>
|