36 lines
766 B
Makefile
36 lines
766 B
Makefile
# Created by: 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
|
|
|
|
NO_STAGE= yes
|
|
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>
|