711754561f
PR: 204288 Submitted by: Torsten Zuehlsdorff <ports@toco-domains.de> Approved by: alexander.pohoyda@gmx.net (maintainer timeout)
37 lines
923 B
Makefile
37 lines
923 B
Makefile
# Created by: Alexander Matey <matey@cis.ohio-state.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= xxkb
|
|
PORTVERSION= 1.11.1
|
|
CATEGORIES= x11
|
|
MASTER_SITES= SF
|
|
MASTER_SITES= SF/${PORTNAME}/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
MAINTAINER= alexander.pohoyda@gmx.net
|
|
COMMENT= XKB keyboard layout indicator and switcher
|
|
|
|
LICENSE= ART10
|
|
|
|
USES= iconv imake pkgconfig
|
|
USE_XORG= xext xpm xt
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
PORTDOCS= README CHANGES.ru README.ru
|
|
|
|
OPTIONS_DEFINE= LIBRSVG2 DOCS
|
|
|
|
LIBRSVG2_LIB_DEPENDS= librsvg-2.so:${PORTSDIR}/graphics/librsvg2
|
|
LIBRSVG2_VARS= XMKMF_ARGS=-DWITH_SVG_SUPPORT
|
|
|
|
post-build:
|
|
# Convert Russian language docs from archaic KOI8-R to modern UTF-8
|
|
.for f in CHANGES README
|
|
iconv -f koi8-r -t utf-8 ${WRKSRC}/${f}.koi8 > ${WRKSRC}/${f}.ru
|
|
.endfor
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|