mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
a2105d9f79
Approved by: portmgr (bdrewery)
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# Created by: Andrey Zakhvatov
|
|
# $FreeBSD$
|
|
# $MCom: ports/biology/gperiodic/Makefile,v 1.1 2006/09/29 23:42:13 ahze Exp $
|
|
|
|
PORTNAME= gperiodic
|
|
PORTVERSION= 2.0.10
|
|
PORTREVISION= 7
|
|
CATEGORIES= biology
|
|
MASTER_SITES= http://www.frantz.fi/software/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Displays a periodic table of the elements
|
|
|
|
USE_GNOME= gtk20
|
|
USES= gettext pkgconfig
|
|
|
|
LANGS= da fr gl it pl ru sv tr
|
|
|
|
PORTDOCS= AUTHORS ChangeLog README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
NO_STAGE= yes
|
|
do-build:
|
|
cd ${WRKSRC} && ${CC} ${CFLAGS} `pkg-config --cflags --libs gtk+-2.0` \
|
|
gperiodic.c -o gperiodic
|
|
.for lang in ${LANGS}
|
|
cd ${WRKSRC}/po && msgfmt -f -v -o ${lang}.mo ${lang}.po
|
|
.endfor
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gperiodic ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/gperiodic.desktop \
|
|
${PREFIX}/share/applications
|
|
${INSTALL_DATA} ${WRKSRC}/gperiodic.png \
|
|
${PREFIX}/share/pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/gperiodic-crystal.png \
|
|
${PREFIX}/share/pixmaps
|
|
.for lang in ${LANGS}
|
|
@${MKDIR} ${PREFIX}/share/locale/${lang}/LC_MESSAGES
|
|
${INSTALL_DATA} ${WRKSRC}/po/${lang}.mo \
|
|
${PREFIX}/share/locale/${lang}/LC_MESSAGES/${PORTNAME}.mo
|
|
.endfor
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|