1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-03 06:04:53 +00:00
freebsd-ports/french/verbiste/Makefile
Christian Weisgerber 7656518b22 Update to 0.1.47:
* The graphical interface can now be displayed in Italian.
* Conjugation table fixes.
* The regressions tests now succeed and are enabled in the port.

Follow some suggestions from portlint and the stage QA checks.

Approved by:	maintainer timeout (9 weeks for update to 0.1.46)
2019-10-04 15:30:17 +00:00

64 lines
1.4 KiB
Makefile

# Created by: Dan Phillips <dan-ports@dp.id.au>
# $FreeBSD$
PORTNAME= verbiste
PORTVERSION= 0.1.47
CATEGORIES= french textproc
MASTER_SITES= http://sarrazip.com/dev/
MAINTAINER= dereckson@gmail.com
COMMENT= French verb conjugator/deconjugator
LICENSE= GPLv2
USES= gnome pathfix pkgconfig iconv:wchar_t libtool shebangfix
USE_GNOME= libxml2
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
INSTALL_TARGET= install-strip
SHEBANG_FILES= ${WRKSRC}/examples/*.pl
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib
TEST_TARGET= check
OPTIONS_DEFINE= GTK2 GNOME DOCS EXAMPLES
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MGTK2}
USE_GNOME+= cairo gdkpixbuf2 gtk20
LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig \
libfreetype.so:print/freetype2
PLIST_SUB+= HASGTK=""
.else
CONFIGURE_ARGS+=--without-gtk-app
PLIST_SUB+= HASGTK="@comment "
.endif
.if ${PORT_OPTIONS:MGNOME}
USE_GNOME+= gnomeprefix libgnomeui
PLIST_SUB+= HASGNOME=""
.else
CONFIGURE_ARGS+=--without-gnome-app --without-gnome-applet
PLIST_SUB+= HASGNOME="@comment "
.endif
.if ${PORT_OPTIONS:MGTK2} || ${PORT_OPTIONS:MGNOME}
USES+= gettext
PLIST_SUB+= HASGUI=""
.else
PLIST_SUB+= HASGUI="@comment "
.endif
post-install:
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
.for f in README *.java *.c
${INSTALL_DATA} ${WRKSRC}/examples/${f} ${STAGEDIR}${EXAMPLESDIR}
.endfor
${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${STAGEDIR}${EXAMPLESDIR}
.include <bsd.port.mk>