mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
8347912df8
- gnomehack -> pathfix - Convert LIB_DEPENDS to new syntax - Support staging
67 lines
1.8 KiB
Makefile
67 lines
1.8 KiB
Makefile
# Created by: eric
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= stardict
|
|
PORTVERSION= 3.0.4
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= GOOGLE_CODE
|
|
DIST_SUBDIR= stardict
|
|
|
|
MAINTAINER= makc@FreeBSD.org
|
|
COMMENT= Dictionary lookup program written in Gtk2
|
|
|
|
LIB_DEPENDS= libsigc-2.0.so:${PORTSDIR}/devel/libsigc++20 \
|
|
libenchant.so:${PORTSDIR}/textproc/enchant
|
|
RUN_DEPENDS= xdg-open:${PORTSDIR}/devel/xdg-utils
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --disable-festival \
|
|
--disable-gucharmap \
|
|
--disable-espeak \
|
|
--disable-updateinfo
|
|
USE_BZIP2= yes
|
|
USES= gettext gmake pathfix pkgconfig
|
|
CONFIGURE_WRKSRC= ${WRKSRC}/dict
|
|
BUILD_WRKSRC= ${CONFIGURE_WRKSRC}
|
|
INSTALL_WRKSRC= ${CONFIGURE_WRKSRC}
|
|
|
|
PROJECTHOST= stardict-3
|
|
|
|
OPTIONS_DEFINE= GNOME
|
|
OPTIONS_DEFAULT= ${OPTIONS_DEFINE}
|
|
|
|
CONFLICTS_INSTALL= stardict-2.[0-9]*
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MGNOME}
|
|
USE_GNOME+= gnomeprefix gnomedocutils libgnomeui
|
|
GCONF_SCHEMAS= stardict.schemas
|
|
INSTALLS_OMF= yes
|
|
PLIST_SUB= GNOME=""
|
|
.else
|
|
USE_AUTOTOOLS= autoconf
|
|
USE_GNOME+= gtk20
|
|
CONFIGURE_ARGS+=--disable-gnome-support --disable-schemas-install
|
|
PLIST_SUB= GNOME="@comment "
|
|
MAKE_ARGS+= AUTOMAKE="${TRUE}" ACLOCAL="${TRUE}"
|
|
.endif
|
|
|
|
post-patch:
|
|
.if !${PORT_OPTIONS:MGNOME}
|
|
${REINPLACE_CMD} -e '/DATADIRNAME=lib/s,lib,share,' ${WRKSRC}/dict/m4/intltool.m4
|
|
${REINPLACE_CMD} -e '/^SUBDIRS/s,help,,' ${WRKSRC}/dict/Makefile.in
|
|
${REINPLACE_CMD} -e '/^GNOME_DOC_INIT/d' \
|
|
-e '/^help\/Makefile/d' ${WRKSRC}/dict/configure.ac
|
|
.endif
|
|
${REINPLACE_CMD} -e 's,/usr/share,${PREFIX}/share,g' \
|
|
${WRKSRC}/dict/src/conf.cpp
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC}/lib && \
|
|
${SETENV} ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS} && \
|
|
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS} ${ALL_TARGET}
|
|
|
|
.include <bsd.port.mk>
|