freebsd-ports/deskutils/q4wine/Makefile
Rusmir Dusko 8c1dfa355a - Update to 1.0.r3
- Change maintainership to submitter
- Add license (GPLv3
- USES cmake desktop-file-utils
- Add DOCS and NLS Options
- Support STAGEDIR and add OPTIONS_SUB
- Change pkg-message

PR:		ports/172141
Submitted by:	nemysis (self)
Approved by:	wg (mentor)
2013-10-18 00:56:10 +00:00

66 lines
1.6 KiB
Makefile

# Created by: Sergey V. Dyatko <sergey.dyatko@gmail.com>
# $FreeBSD$
PORTNAME= q4wine
PORTVERSION= 1.0r3
CATEGORIES= deskutils emulators
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20$${PORTVERSION:S/r/-r/}/
DISTNAME= ${PORTNAME}-${PORTVERSION:S/r/-r/}
MAINTAINER= nemysis@FreeBSD.org
COMMENT= QT4 front-end for WINE
LICENSE= GPLv3
BUILD_DEPENDS= icotool:${PORTSDIR}/graphics/icoutils
RUN_DEPENDS= sudo:${PORTSDIR}/security/sudo \
wget:${PORTSDIR}/ftp/wget \
cabextract:${PORTSDIR}/archivers/cabextract \
icotool:${PORTSDIR}/graphics/icoutils
USES= cmake desktop-file-utils
CMAKE_ARGS+= -DMANPAGE_ENTRY_PATH=${MANPREFIX}/man
USE_LDCONFIG= yes
INSTALLS_ICONS= yes
USE_QT4= qmake_build rcc_build moc_build uic_build \
linguist_build corelib gui sql network
ONLY_FOR_ARCHS= i386 amd64
#SUB_FILES= pkg-message
PORTDOCS= AUTHORS ChangeLog README TODO
OPTIONS_DEFINE= DOCS NLS DBUS
OPTIONS_DEFAULT= DBUS
OPTIONS_SUB= yes
NLS_CONFIGURE_ENABLE= nls
NLS_USES= gettext
DBUS_CMAKE_ON= -DWITH_DBUS:BOOL=ON
DBUS_CMAKE_OFF= -DWITH_DBUS:BOOL=OFF
.include <bsd.port.options.mk>
.if ${ARCH} == "i386"
RUN_DEPENDS+= wine:${PORTSDIR}/emulators/wine-devel
.endif
.if ${PORT_OPTIONS:MDBUS}
USE_QT4+= dbus
.endif
post-patch:
@${REINPLACE_CMD} -e 's|^Categories=.*|Categories=Qt;System;Emulator;Utility;Game;|' \
${WRKSRC}/${PORTNAME}.desktop
.if ! ${PORT_OPTIONS:MNLS}
@${REINPLACE_CMD} -e 's|install(FILES|#install(FILES|' \
${WRKSRC}/src/i18n/CMakeLists.txt
.endif
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>