# New ports collection makefile for: wolf3d # Date created: 13 Jan 2004 # Whom: Travis Poppe # # $FreeBSD$ # PORTNAME= wolf3d PORTVERSION= 20011028 PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.icculus.org/wolf3d/:wolf \ http://www.liquidx.org/distfiles/:wolfdata DISTFILES= wolf3d-20011028.tar.gz:wolf wolfdata.tar.gz:wolfdata MAINTAINER= tlp@liquidx.org COMMENT= "Wolfenstein 3D Linux" by Steven Fuller (1992) USE_SDL= yes USE_GZIP= yes USE_X_PREFIX= yes USE_REINPLACE= yes post-patch: @${REINPLACE_CMD} -e 's|gcc|${CC}|' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|sdl-config|sdl11-config|' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|OBJS += sd_null.o|#OBJS += sd_null.o|' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|#OBJS += sd_oss.o fmopl.o|OBJS += sd_oss.o fmopl.o|' ${WRKSRC}/Makefile @${REINPLACE_CMD} -e 's|/usr/X11R6/lib|${X11BASE}/lib|' ${WRKSRC}/Makefile @${CAT} ${FILESDIR}/wolf3d.in | ${SED} -e 's,%%PREFIX%%,${PREFIX},g' > ${WRKDIR}/wolf3d do-install: ${MKDIR} ${PREFIX}/libexec/wolf3d ${INSTALL_SCRIPT} ${WRKDIR}/wolf3d ${PREFIX}/bin/wolf3d ${INSTALL_PROGRAM} ${WRKSRC}/sdlwolf3d ${PREFIX}/libexec/wolf3d/sdlwolf3d ${INSTALL_DATA} ${WRKDIR}/wolfdata/* ${PREFIX}/libexec/wolf3d .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} ${MKDIR} ${DOCSDIR}/docs ${INSTALL_DATA} ${WRKSRC}/docs/* ${DOCSDIR}/docs ${INSTALL_DATA} ${WRKSRC}/IDEAS ${DOCSDIR}/IDEAS ${INSTALL_DATA} ${WRKSRC}/NOTES ${DOCSDIR}/NOTES ${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}/README ${INSTALL_DATA} ${WRKSRC}/TODO ${DOCSDIR}/TODO .endif post-install: @${CAT} ${PKGMESSAGE} .include assets/elliptic-6.5.3 Tangerine full node (https://github.com/tangerine-network/go-tangerine)
aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* event: address review issues (multiple commits)Felix Lange2017-02-033-16/+93
* rpc: send nil on subscription Err channel when Client is closedFelix Lange2017-01-261-1/+4
* event: add new Subscription type and related utilitiesFelix Lange2017-01-269-7/+1144
* event: deprecate TypeMux and related typesFelix Lange2017-01-256-41/+31
* eth/downloader: improve deliverNodeData (#3588)Felix Lange2017-01-241-72/+52
* Merge pull request #3599 from karalabe/docker-alpine-cacertsPéter Szilágyi2017-01-244-28/+24
|\
| * containers/docker: update ubuntu images to build, not pullPéter Szilágyi2017-01-232-24/+20
| * containers/docker: update to alpine 3.5, add CA certificatesPéter Szilágyi2017-01-232-4/+4
* | core/types: make Transaction zero value printable (#3595)Felix Lange2017-01-241-14/+18
|/
* crypto/secp256k1: sign with deterministic K (rfc6979) (#3561)Felix Lange2017-01-232-8/+22
* cmd/evm: added debug flag (back) (#3554)Martin Holst Swende2017-01-231-0/+2
* accounts/abi/bind, internal/ethapi: binary search gas estimation (#3587)Péter Szilágyi2017-01-213-9/+100
* types: bugfix invalid V derivation on tx json unmarshal (#3594)bas-vk2017-01-212-2/+3
* internal/guide: initial test suite to ensure guide snippets run ok (#3582)Péter Szilágyi2017-01-202-0/+118
* travis: Install Android NDK explicitly, removed from gomobile (#3593)Péter Szilágyi2017-01-202-2/+10
* eth/downloader: fix mutex regression causing panics on fail (#3591)Péter Szilágyi2017-01-201-1/+2
* Merge pull request #3584 from obscuren/dead-codePéter Szilágyi2017-01-181-3/+0
|\
| * core: removal of dead-codeJeffrey Wilcke2017-01-181-3/+0
|/
* Merge pull request #3579 from bas-vk/natspecPéter Szilágyi2017-01-178-23/+3
|\
| * cmd,eth,les,internal: remove natspec supportBas van Kervel2017-01-178-23/+3
* | core/blockchain: Made logging of reorgs more structured (#3573)Martin Holst Swende2017-01-171-6/+13
* | Merge pull request #3581 from karalabe/accounts-polishPéter Szilágyi2017-01-173-8/+8
|\ \
| * | accounts, mobile: make account manager API a bit more uniformPéter Szilágyi2017-01-173-8/+8
| |/
* / cmd/geth, core: add support for recording SHA3 preimages (#3543)Nick Johnson2017-01-1729-46/+156
|/
* params, VERSION: 1.5.8 unstableFelix Lange2017-01-162-5/+5
* params: stable 1.5.7v1.5.7Felix Lange2017-01-161-4/+4
* les: fixed transaction sending deadlock (#3568)Felföldi Zsolt2017-01-161-1/+0
* Merge pull request #3570 from fjl/hexutil-zero-fixPéter Szilágyi2017-01-163-13/+4
|\
| * common/hexutil: fix EncodeBig, Big.MarshalJSONFelix Lange2017-01-163-13/+4
* | Merge pull request #3560 from karalabe/ci-misspellPéter Szilágyi2017-01-133-4/+35
|\ \ | |/ |/|
| * appveyor, build: fix review requestsPéter Szilágyi2017-01-132-25/+31
| * build: spellcheck individual packages (Windows path limits)Péter Szilágyi2017-01-131-7/+9
| * accounts/abi: fix comment spelling errorPéter Szilágyi2017-01-131-1/+1
| * travis, appveyor, build: add source spell checkingPéter Szilágyi2017-01-133-3/+26
* | common/hexutil: allow empty strings when decoding JSON (#3559)Felix Lange2017-01-132-5/+5
|/
* eth: accept leading zeros for nonce parameter of submitWork (#3558)Felix Lange2017-01-134-6/+8
* crypto/secp256k1: update to github.com/bitcoin-core/secp256k1 @ 9d560f9 (#3544)Felix Lange2017-01-1379-1998/+8229
* internal: update web3.js to 0.18.1, embed deps with go-bindata (#3545)Péter Szilágyi2017-01-136-327/+774
* Merge pull request #3555 from obscuren/unskip-testPéter Szilágyi2017-01-121-1/+1
|\
| * tests: unskip testJeffrey Wilcke2017-01-121-1/+1
* | Merge pull request #3553 from bas-vk/rm-olympic-supportPéter Szilágyi2017-01-126-62/+15
|\ \
| * | core: remove support for Olympic networkBas van Kervel2017-01-126-62/+15
|/ /
* | Merge pull request #3551 from fjl/core-import-log-alignPéter Szilágyi2017-01-112-10/+8
|\ \
| * | core: improve import log alignmentFelix Lange2017-01-112-10/+8
| |/
* | ethdb: Implement interface for prefixed operations to the DB (#3536)Nick Johnson2017-01-111-0/+52
* | internal/ethapi: fix duration parameter of personal_unlockAccount (#3542)Felix Lange2017-01-111-5/+8
* | Merge pull request #3546 from fjl/deps-updatePéter Szilágyi2017-01-11130-1030/+14047
|\ \
| * | vendor: update all dependencies except Azure SDKFelix Lange2017-01-11130-1030/+14047
| |/
* | Merge pull request #3548 from fjl/geth-fix-bootnodesPéter Szilágyi2017-01-111-4/+4
|\ \ | |/ |/|
| * cmd/utils: fix comma-separated --bootnodesFelix Lange2017-01-111-4/+4
|/
* Merge pull request #3535 from fjl/all-ineffassignPéter Szilágyi2017-01-1034-186/+110
|\
| * all: fix ineffectual assignments and remove uses of crypto.Sha3Felix Lange2017-01-0931-103/+108
| * generators: delete dead codeFelix Lange2017-01-091-81/+0
| * build, node: fix go vet nitsFelix Lange2017-01-092-2/+2
* | Merge pull request #3538 from karalabe/cycle-1.5.7Péter Szilágyi2017-01-092-5/+5
|\ \
| * | params, VERSION: start 1.5.7 release cyclePéter Szilágyi2017-01-092-5/+5
|/ /
* | Merge pull request #3537 from karalabe/release-1.5.6v1.5.6Péter Szilágyi2017-01-091-4/+4
|\ \
| * | params: stable version 1.5.6Péter Szilágyi2017-01-091-4/+4
|/ /
* | Merge pull request #3519 from zsfelfoldi/light-topic5Péter Szilágyi2017-01-0911-137/+290
|\ \
| * | light: fixed data race in TestTxPoolZsolt Felfoldi2017-01-061-16/+19
| * | les: fixed selectPeer deadlock, improved request distributionZsolt Felfoldi2017-01-0610-121/+271
* | | Merge pull request #3534 from bas-vk/writemipmapracePéter Szilágyi2017-01-091-0/+6
|\ \ \
| * | | core: fix race condition in WriteMipmapBloomBas van Kervel2017-01-091-0/+6
* | | | cmd/swarm: uploader uses HTTP PUT for directories (#3488)Viktor Trón2017-01-091-26/+56
| |_|/ |/| |
* | | Merge pull request #3529 from fjl/console-error-fixPéter Szilágyi2017-01-091-12/+5
|\ \ \ | |/ / |/| |
| * | console: fix error message in faux JSON-RPC responsesFelix Lange2017-01-081-12/+5
* | | Merge pull request #3533 from karalabe/modum-io-develop-2Péter Szilágyi2017-01-094-17/+93
|\ \ \
| * | | accounts/abi: fixed broken types slice testcasesThomas Bocek2017-01-092-14/+19
| * | | accounts/abi: fixed commentsJeffrey Wilcke2017-01-092-5/+5
| * | | accounts/abi: added testcase to unpack []uint32tbocek2017-01-091-0/+24
| * | | accounts/abi: support custom int slice typesThomas Bocek2017-01-092-4/+51
|/ / /
* | | node: fix pointer dereference issue in StartRPC (#3532)Victor Farazdagi2017-01-081-1/+1
* | | cmd/disasm: fix array-out-of-bounds error (#3491)Valentin Wüstholz2017-01-081-4/+8
|/ /
* | Merge pull request #3526 from karalabe/misspellPéter Szilágyi2017-01-0740-65/+65
|\ \
| * | all: fix spelling errorsPéter Szilágyi2017-01-07