zoukankan      html  css  js  c++  java
  • Make sure the Makefile and distinfo file(/usr/ports/lang/php5/distinfo) are up to date

    ....
    Make sure the Makefile and distinfo file(/usr/ports/lang/php5/distinfo)
    are up to date. If you are absolutely sure you want to overridethis
    check, type "make NO_CHECKSUM=yes [other args]".
    *** Error code 1
    ....

    FreeBSD中安装PHP5.4时报如上错误,解决办法如下:

    cd /usr/ports/lang/php5
    make distclean make checksum

    问题的原因是已存在的diskfile的checksum与该ports信息文件中的不一致,正常情况下删除/usr/ports/distfiles中的文件即可,以下是引自FreebsdBSD handbook中的例子:

    Checksum Mismatch

    Occasionally, a ports tarball will fail the md5 checksum test. A typical result of this would look like:

     >> Checksum mismatch for tightvnc-1.2.3_unixsrc.tar.bz2.
     Make sure the Makefile and distinfo file (/usr/ports/net/tightvnc/distinfo)
     are up to date.  If you are absolutely sure you want to override this
     check, type "make NO_CHECKSUM=yes [other args]".
     *** Error code 1
     
     Stop in /usr/ports/net/tightvnc.
     ** Command failed: make clean build
     ** Fix the problem and try again.
     ** The following packages were not installed or upgraded (*:skipped / !:failed)
             ! net/tightvnc  (checksum mismatch)
    

    This means that the checksum for the tarball does not match that contained in the port's distribution information file which is/usr/ports/net/tightvnc/distinfo in this case.

    The first step is to delete the tarball for the port in /usr/ports/distfiles and fetch the tarball again. This will usually take care of the problem.

    If the problem persists, the next step is to check the CVS Repository at http://www.freebsd.org/cgi/cvsweb.cgi/ to make sure that your ports Makefile and distinfo agree with the latest available. If not, then you need to update your ports tree.

    The following packages were not installed or upgraded (*:skipped / !:failed)
            ! ftp/gftp (gftp-gnome-2.0.15)  (unknown build error)
            ! math/gnumeric2 (gnumeric2-1.2.1_1)    (install error)
    

    manually upgraded and both worked fine.

    audacity-1.2.0 > succeeds port (port has 1.2.0.p3_2)

    # portupgrade audacity-1.2.0
    ** No need to upgrade 'audacity-1.2.0' (>= audacity-1.2.0.p3_2). (specify -f to force)
    
    (from CVS)
    FILE REMOVED 
    
    - Remove audio/audacity-devel, because it's now redundant after
      updating audio/audacity to the latest version.
    

    remove ports and install audio/audacity

  • 相关阅读:
    如何理解面向对象和面向过程
    IIS端口被占用
    SQL UNION操作符
    SQL(MSSQLSERVER)服务启动错误代码3414
    WCF学习之路(一)
    AJAX技术学习总结
    AJAX之XMLHttpRequest对象
    软考之汇编语言
    IP地址的分配
    数组偏移量
  • 原文地址:https://www.cnblogs.com/toby/p/2920248.html
Copyright © 2011-2022 走看看