mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-14 07:43:06 +00:00
b97da74ba1
- Add state support - Convert LIB_DEPENDS to new style, adjust USE_QT4 components, etc. Approved by: portmgr (blanket approval)
33 lines
716 B
Makefile
33 lines
716 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= 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
|
|
|
|
USES= qmake
|
|
USE_BZIP2= yes
|
|
USE_QT4= gui moc_build
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/portrac ${STAGEDIR}${PREFIX}/bin && \
|
|
${MKDIR} ${STAGEDIR}${DATADIR} && \
|
|
${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/*.png ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|