mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
15945f8122
to GCC 4.8.3. Part II, Bump PORTREVISIONs. PR: 192025 Tested by: antoine (-exp runs) Approved by: portmgr (implicit)
41 lines
1.1 KiB
Makefile
41 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dboxfe
|
|
PORTVERSION= 0.1.3
|
|
PORTREVISION= 6
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ${MASTER_SITE_BERLIOS}
|
|
MASTER_SITE_SUBDIR=${PORTNAME}
|
|
|
|
MAINTAINER= makc@FreeBSD.org
|
|
COMMENT= Qt4 based configuration manager for DOSBox
|
|
|
|
RUN_DEPENDS= dosbox:${PORTSDIR}/emulators/dosbox
|
|
|
|
USE_QT4= gui network xml uic_build moc_build qmake_build rcc_build
|
|
USES= qmake tar:bzip2
|
|
|
|
PLIST_FILES= bin/dboxfe \
|
|
bin/dboxfetray \
|
|
share/pixmaps/dboxfe.png
|
|
|
|
DESKTOP_ENTRIES= "DBoxFE" "DOSBox configuration manager" \
|
|
"${PREFIX}/share/pixmaps/dboxfe.png" \
|
|
"dboxfe" "Utility;Qt;" true \
|
|
"DBoxFEtray" "DBoxFE systray icon" \
|
|
"${PREFIX}/share/pixmaps/dboxfe.png" \
|
|
"dboxfetray" "Utility;Qt;TrayIcon;" true
|
|
|
|
post-build:
|
|
@(cd ${WRKSRC}/dboxfetray && \
|
|
${SETENV} ${QMAKE_ENV} ${QMAKE} ${QMAKE_ARGS} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE})
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/dboxfe ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/dboxfetray ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/dboxfetray/res/dboxfetray.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps/dboxfe.png
|
|
|
|
.include <bsd.port.mk>
|