mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
9c2f65e395
Review by: bapt, David Naylor (kde team)
40 lines
830 B
Makefile
40 lines
830 B
Makefile
# New ports collection makefile for: portrac
|
|
# Date created: 12 Sep 2009
|
|
# Whom: mgp
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= portrac
|
|
PORTVERSION= 0.4
|
|
PORTREVISION= 1
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= http://e-soul.org/distfiles/ \
|
|
http://home.e-soul.org/~mgp/distfiles/
|
|
|
|
MAINTAINER= mgp@e-soul.org
|
|
COMMENT= A simple GUI tool for tracking port updates
|
|
|
|
LICENSE= BSD
|
|
|
|
PLIST_FILES= bin/portrac \
|
|
share/portrac/portrac.png \
|
|
share/portrac/up-to-date.png \
|
|
share/portrac/updates-available.png
|
|
|
|
PLIST_DIRS= share/portrac
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_QT4= gui moc_build qmake_build
|
|
|
|
do-configure:
|
|
@cd ${WRKDIR}/${DISTNAME} && ${QMAKE} portrac.pro
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/portrac ${PREFIX}/bin && \
|
|
${MKDIR} ${DATADIR} && \
|
|
${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/*.png ${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|