48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: gonvert
|
|
# Date created: Apr 9, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gonvert
|
|
PORTVERSION= 0.2.15
|
|
CATEGORIES= misc python gnome
|
|
MASTER_SITES= http://www.unihedron.com/projects/gonvert/downloads/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A conversion utility that allows conversion between many units
|
|
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gnomehier pygtk2
|
|
USE_PYTHON= yes
|
|
NO_BUILD= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|#!/usr/bin/python|#!/usr/bin/env python|g ; \
|
|
s|gtk.mainloop|gtk.main|g' ${WRKSRC}/gonvert
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/gonvert ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/gonvert.desktop \
|
|
${PREFIX}/share/gnome/applications
|
|
${INSTALL_DATA} ${WRKSRC}/pixmaps/gonvert.png \
|
|
${PREFIX}/share/gnome/pixmaps
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/gonvert.glade ${DATADIR}
|
|
@${MKDIR} ${DATADIR}/pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/pixmaps/gonvert_picture.png \
|
|
${DATADIR}/pixmaps
|
|
@${MKDIR} ${PREFIX}/share/locale/pl/LC_MESSAGES
|
|
${INSTALL_DATA} ${WRKSRC}/i18n/pl_messages.gmo \
|
|
${PREFIX}/share/locale/pl/LC_MESSAGES/gonvert.mo
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in CHANGELOG FAQ README THANKS TODO
|
|
${INSTALL_DATA} ${WRKSRC}/doc/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|