- Clarify LICENSE
- Add LICENSE_FILE - Switch to options helpers
This commit is contained in:
parent
dbb75844b2
commit
d647585b89
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=400003
@ -12,58 +12,46 @@ PKGNAMESUFFIX= -plugin
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= GIMP plugin to sharpen by increasing contrast in high frequency space
|
||||
|
||||
LICENSE= GPLv2
|
||||
LICENSE= GPLv2 # or later
|
||||
LICENSE_FILE= ${WRKSRC}/COPYING
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gimp-2.0.pc:${PORTSDIR}/graphics/gimp-app
|
||||
RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/gimp-2.0.pc:${PORTSDIR}/graphics/gimp-app
|
||||
|
||||
OPTIONS_DEFINE= NLS OPTIMIZED_CFLAGS
|
||||
OPTIONS_DEFAULT= OPTIMIZED_CFLAGS
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
USES= gettext gmake pkgconfig
|
||||
|
||||
PLIST_SUB= GIMP_PLUGIN_DIR=${GIMP_PLUGIN_DIR}
|
||||
GIMP_PLUGIN_DIR= libexec/gimp/2.2/plug-ins
|
||||
|
||||
# l10n languages
|
||||
LANGUAGES= de et it pl ru
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
OPTIONS_DEFINE= NLS OPTIMIZED_CFLAGS
|
||||
OPTIONS_DEFAULT= OPTIMIZED_CFLAGS
|
||||
OPTIONS_SUB= yes
|
||||
|
||||
# optimized CFLAGS
|
||||
.if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS}
|
||||
CFLAGS+= -O3
|
||||
.endif
|
||||
OPTIMIZED_CFLAGS_CFLAGS= -O3
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} \
|
||||
-e 's|gimptool-2.0|${LOCALBASE}/bin/gimptool-2.0|' \
|
||||
-e '/^LIBS =/s/$$/ -lm/' \
|
||||
${WRKSRC}/src/Makefile
|
||||
#
|
||||
## l10n
|
||||
# disable l10n if appropriate
|
||||
.if ! ${PORT_OPTIONS:MNLS}
|
||||
|
||||
post-patch-NLS-off:
|
||||
@${REINPLACE_CMD} -E \
|
||||
-e 's|(^all:.*)po |\1|' \
|
||||
${WRKSRC}/Makefile
|
||||
.endif
|
||||
|
||||
do-install:
|
||||
# plugin
|
||||
@${MKDIR} ${STAGEDIR}${PREFIX}/${GIMP_PLUGIN_DIR}
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} \
|
||||
${STAGEDIR}${PREFIX}/${GIMP_PLUGIN_DIR}
|
||||
#
|
||||
## l10n
|
||||
#
|
||||
.if ${PORT_OPTIONS:MNLS}
|
||||
|
||||
do-install-NLS-on:
|
||||
.for language in ${LANGUAGES}
|
||||
@${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/${language}/LC_MESSAGES/
|
||||
${INSTALL_DATA} ${WRKSRC}/po/${language}.mo \
|
||||
${STAGEDIR}${PREFIX}/share/locale/${language}/LC_MESSAGES/gimp20-${PORTNAME}-plug-in.mo
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user