mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
7ae3f48312
links that were added in r374303 to prevent massive PORTREVISION bumps. Bump dependent ports that have not been bumped since.
43 lines
1.1 KiB
Makefile
43 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dboxfe
|
|
PORTVERSION= 0.1.3
|
|
PORTREVISION= 7
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= SF/${PORTNAME}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Qt4 based configuration manager for DOSBox
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.GPL
|
|
|
|
RUN_DEPENDS= dosbox:emulators/dosbox
|
|
|
|
USE_QT4= corelib 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>
|