dd8bf5ad76
GKrellMPC is a GKrellm plugin that allows you to control your MPD music daemon from within gkrellm.
16 lines
406 B
Makefile
16 lines
406 B
Makefile
# $NetBSD: options.mk,v 1.1 2021/11/27 10:37:24 pho Exp $
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.gkrellmpc
|
|
PKG_SUPPORTED_OPTIONS= nls
|
|
PKG_SUGGESTED_OPTIONS= nls
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mnls)
|
|
USE_TOOLS+= gmake msgfmt
|
|
MAKE_FLAGS+= enable_nls=1
|
|
post-install:
|
|
${GMAKE} -C "${WRKSRC}/po" \
|
|
${MAKE_FLAGS} \
|
|
LOCALEDIR="${DESTDIR}${PREFIX}/${PKGLOCALEDIR}/locale" \
|
|
install
|
|
.endif
|