mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-01 01:17:02 +00:00
d65a9d294b
licensed under GNU GPL v3. WWW: http://www.jezra.net/projects/heybuddy PR: ports/156402 Submitted by: Beni Keller <navigium at grindcore.ch>
37 lines
804 B
Makefile
37 lines
804 B
Makefile
# New ports collection makefile for: heybuddy
|
|
# Date created: 14 April 2011
|
|
# Whom: Beni Keller <navigium@grindcore.ch>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= heybuddy
|
|
PORTVERSION= 0.2.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://launchpad.net/${PORTNAME}/0.2/${PORTVERSION}/+download/ \
|
|
http://freebsd.grindcore.ch/distfiles/
|
|
|
|
MAINTAINER= navigium@grindcore.ch
|
|
COMMENT= Heybuddy is a supposedly light, feature free identi.ca client
|
|
|
|
FETCH_ARGS= -Fpr
|
|
|
|
LICENSE= GPLv3
|
|
|
|
USE_PYTHON= yes
|
|
USE_GETTEXT= yes
|
|
USE_GNOME= pygtk2
|
|
|
|
do-build:
|
|
${PYTHON_CMD} -mcompileall ${WRKSRC}
|
|
|
|
do-install:
|
|
${MKDIR} ${DATADIR}
|
|
cd ${WRKSRC} && ${COPYTREE_SHARE} . ${DATADIR}
|
|
${LN} -s ${DATADIR}/${PORTNAME}.py ${PREFIX}/bin/${PORTNAME}
|
|
|
|
post-install:
|
|
${RM} ${DATADIR}/*.txt ${DATADIR}/ChangeLog
|
|
|
|
.include <bsd.port.mk>
|