mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
bbab7f59e9
- Remove all references to defunct ARCH arm - Remove all references to defunct ARCH sparc64 - Remove x11-drivers/xf86-video-sunffb which requires defunct sparc64 ARCH - Remove sysutils/afbinit requires defunct sparc64 ARCH - Remove all references to bktr driver - Remove all references to defunct FreeBSD_12 - Remove all references to OSVERSION/OSREL corresponding to 12 - Remove conditionals in Mk/Uses/cabal.mk - Remove sparc reference from Mk/Uses/qt-dist.mk - Remove BROKEN_sparc64/NOT_FOR_ARCH=sparc64 - Remove BROKEN_FreeBSD_12* from: - Remove OpenSSL patches from: - Remove conditional flags for OSVERSION >= 1300000 to fixed flags. Also move conditional flags for non sparc64/arm ARCH to fixed flags. Reviewed by: brooks, jbeich, rene, salvadore Differential Revision: https://reviews.freebsd.org/D42068
46 lines
1001 B
Makefile
46 lines
1001 B
Makefile
PORTNAME= adom
|
|
PORTVERSION= 3.0.6
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://www.adom.de/home/download/old/${PORTVERSION}/
|
|
DISTNAME= ${PORTNAME}_freebsd_${ARCH_BITS}_${PORTVERSION}
|
|
|
|
MAINTAINER= arcade@b1t.name
|
|
COMMENT= Rogue-like advanced rpg with color support (binary port)
|
|
WWW= https://www.adom.de
|
|
|
|
LICENSE= UNKNOWN
|
|
LICENSE_NAME= The ADOM License
|
|
LICENSE_FILE= ${WRKSRC}/docs/readme1st.txt
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror
|
|
|
|
LIB_DEPENDS+= libncursesw.so.8:misc/compat12x
|
|
|
|
NO_CDROM= Copy of CD must be sent to author
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
|
|
NO_BUILD= yes
|
|
|
|
WRKSRC= ${WRKDIR}/adom
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == amd64
|
|
ARCH_BITS= 64
|
|
.elif ${ARCH} == i386
|
|
ARCH_BITS= 32
|
|
.endif
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/adom ${STAGEDIR}${PREFIX}/bin
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for docs in adomfaq.txt manual.txt credits.txt
|
|
${INSTALL_DATA} ${WRKSRC}/docs/${docs} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|