diff options
author | glewis <glewis@FreeBSD.org> | 2013-07-10 09:31:18 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2013-07-10 09:31:18 +0800 |
commit | b3ce4127304ec22aec8f0b6e4efe7333b0b7a192 (patch) | |
tree | 179da53219ba96177e42d9290f7e1e2dd711e376 /games/nethack33 | |
parent | 69b32b33b2990c3a7c0320105de6bcd3e9bd9ac7 (diff) | |
download | freebsd-ports-gnome-b3ce4127304ec22aec8f0b6e4efe7333b0b7a192.tar.gz freebsd-ports-gnome-b3ce4127304ec22aec8f0b6e4efe7333b0b7a192.tar.zst freebsd-ports-gnome-b3ce4127304ec22aec8f0b6e4efe7333b0b7a192.zip |
. Remove the vestiges of support for the expired QT2 port.
. Convert Makefile header.
. NOPORTDOCS -> PORT_OPTIONS:MDOCS.
PR: 180273
Submitted by: rene@
Diffstat (limited to 'games/nethack33')
-rw-r--r-- | games/nethack33/Makefile | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/games/nethack33/Makefile b/games/nethack33/Makefile index 3ac3fd1790b6..a2dc6ba17f06 100644 --- a/games/nethack33/Makefile +++ b/games/nethack33/Makefile @@ -1,9 +1,5 @@ -# New ports collection makefile for: nethack -# Date created: 27 March 1995 -# Whom: asami -# +# Created by: asami # $FreeBSD$ -# PORTNAME= nethack PORTVERSION= 3.3.1 @@ -47,16 +43,13 @@ USE_GNOME= gnomelibs GRAPHICS= GNOME_GRAPHICS .elif ${PKGNAMESUFFIX} == "-nox11" GRAPHICS= # none -.elif ${PKGNAMESUFFIX} == "-qt" -USE_QT_VER= 2 -MAKE_ENV+= QTCPPFLAGS="${QTCPPFLAGS}" QTCFGLIBS="${QTCFGLIBS}" \ - MOC="${MOC}" LIBQT="-l${QTNAME}" -GRAPHICS= QT_GRAPHICS .endif .endif .include <bsd.port.pre.mk> +.include <bsd.port.options.mk> + .if !exists(${PREFIX}/bin/${HACKLINK}) && ${HACKNAME} != ${HACKLINK} PLIST_SUB+= HACKLINK="" .else @@ -64,7 +57,7 @@ PLIST_SUB+= HACKLINK="@comment " .endif pre-everything:: -.if defined(WITH_GNOME_GRAPHICS) || defined(WITH_QT_GRAPHICS) \ +.if defined(WITH_GNOME_GRAPHICS) \ || defined(WITH_TTY_GRAPHICS) || defined(WITHOUT_X11) @${ECHO_MSG} "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" @${ECHO_MSG} " You cannot install nethack and ${PKGBASE} in parallel " @@ -76,7 +69,6 @@ pre-everything:: @${ECHO_MSG} "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!" @${ECHO_MSG} " You may use the following build options: " @${ECHO_MSG} " WITH_GNOME_GRAPHICS=yes build with GNOME GUI " - @${ECHO_MSG} " WITH_QT_GRAPHICS=yes build with Qt GUI " @${ECHO_MSG} " WITH_TTY_GRAPHICS=yes build with no GUI " @${ECHO_MSG} " WITHOUT_X11=yes same as above " @${ECHO_MSG} " " @@ -114,7 +106,7 @@ post-install: @${LN} -s -f ${PREFIX}/bin/${HACKNAME} ${PREFIX}/bin/${HACKLINK} .endif @cd ${WRKSRC}/doc; ${SETENV} ${MAKE_ENV} ${MAKE} manpages -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} @${MKDIR} ${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/doc/Guidebook.txt ${DOCSDIR} .endif |