- Update MASTER_SITES to unbreak the port

- Update to 2.10.1.13

PR:	215817
Submitted by:	Stephen Dennis <brazilofmux@gmail.com>
This commit is contained in:
Alex Kozlov 2017-03-25 23:25:25 +00:00
parent 6f3ec7089e
commit 5cc7ad73a0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=436923
3 changed files with 5 additions and 29 deletions

View File

@ -3,9 +3,8 @@
PORTNAME= tinymux
PORTVERSION= 2.10.1.${PATCHLEVEL}
PORTREVISION= 1
CATEGORIES= games net
MASTER_SITES= GOOGLE_CODE
MASTER_SITES= ftp://ftp.tinymux.org/tinymux-2.10/${PATCHLEVEL}/
DISTNAME= mux-${PORTVERSION}.unix
MAINTAINER= ports@FreeBSD.org
@ -14,17 +13,13 @@ COMMENT= Multi-Player FreeForm adventure Program
LICENSE= ART10
LICENSE_FILE= ${WRKSRC}/copyright.h
BROKEN= Unfetchable (google code has gone away)
DEPRECATED= Unfetchable for more than six months (google code has gone away)
EXPIRATION_DATE= 2017-04-30
WRKSRC= ${WRKDIR}/mux2.10/src
USES= gmake
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
PATCHLEVEL= 12
PATCHLEVEL= 13
PORTDOCS= *

View File

@ -1,2 +1,3 @@
SHA256 (mux-2.10.1.12.unix.tar.gz) = fe7d7b25723a7fc618a3ff6c15d274a107839d5e9797911d142cbc9d25ce51e8
SIZE (mux-2.10.1.12.unix.tar.gz) = 1303734
TIMESTAMP = 1490483828
SHA256 (mux-2.10.1.13.unix.tar.gz) = 33bd24048b5590f47a7dd4b6f027f169dfe60bd7eeaadc65e2d8fedf9ad96bff
SIZE (mux-2.10.1.13.unix.tar.gz) = 1305491

View File

@ -1,20 +0,0 @@
--- player.cpp.orig 2012-07-12 05:25:51 UTC
+++ player.cpp
@@ -422,7 +422,7 @@ void ChangePassword(dbref player, const
s_Pass(player, pEncodedPassword);
}
-#ifdef UNIX_DIGEST
+#if defined(UNIX_DIGEST) && !defined(OPENSSL_NO_SHA0)
const UTF8 *p6h_xx_crypt(const UTF8 *szPassword)
{
// Calculate SHA-0 Hash.
@@ -598,7 +598,7 @@ const UTF8 *mux_crypt(const UTF8 *szPass
case CRYPT_CLEARTEXT:
return szPassword;
-#ifdef UNIX_DIGEST
+#if defined(UNIX_DIGEST) && !defined(OPENSSL_NO_SHA0)
case CRYPT_P6H_XX:
return p6h_xx_crypt(szPassword);
#endif