|
我把0.4.3的cp了一个0.5.0的但是有问题:
- >>> Install iptux-0.5.0 into /var/tmp/portage/net-misc/iptux-0.5.0/image/ category net-misc
- Making install in src
- make[1]: Entering directory `/var/tmp/portage/net-misc/iptux-0.5.0/work/iptux-0.5.0/src'
- Making install in uninstall
- make[2]: Entering directory `/var/tmp/portage/net-misc/iptux-0.5.0/work/iptux-0.5.0/src/uninstall'
- make[3]: Entering directory `/var/tmp/portage/net-misc/iptux-0.5.0/work/iptux-0.5.0/src/uninstall'
- test -z "/usr/bin" || /bin/mkdir -p "/usr/bin"
- /usr/bin/install -c 'ihateiptux' '/usr/bin/ihateiptux'
- ACCESS DENIED open_wr: /usr/bin/ihateiptux
- /usr/bin/install: cannot create regular file `/usr/bin/ihateiptux': Permission denied
- make[3]: *** [install-binPROGRAMS] Error 1
- make[3]: Leaving directory `/var/tmp/portage/net-misc/iptux-0.5.0/work/iptux-0.5.0/src/uninstall'
- make[2]: *** [install-am] Error 2
- make[2]: Leaving directory `/var/tmp/portage/net-misc/iptux-0.5.0/work/iptux-0.5.0/src/uninstall'
- make[1]: *** [install-recursive] Error 1
- make[1]: Leaving directory `/var/tmp/portage/net-misc/iptux-0.5.0/work/iptux-0.5.0/src'
- make: *** [install-recursive] Error 1
- * ERROR: net-misc/iptux-0.5.0 failed:
- * einstall failed
- *
- * Call stack:
- * ebuild.sh, line 49: Called src_install
- * environment, line 205: Called einstall
- * ebuild.sh, line 589: Called die
- * The specific snippet of code:
- * ${MAKE:-make} prefix="${D}usr" \
- * datadir="${D}usr/share" \
- * infodir="${D}usr/share/info" \
- * localstatedir="${D}var/lib" \
- * mandir="${D}usr/share/man" \
- * sysconfdir="${D}etc" \
- * ${LOCAL_EXTRA_EINSTALL} \
- * ${MAKEOPTS} ${EXTRA_EMAKE} -j1 \
- * "$@" install || die "einstall failed"
- *
- * If you need support, post the output of 'emerge --info =net-misc/iptux-0.5.0',
- * the complete build log and the output of 'emerge -pqv =net-misc/iptux-0.5.0'.
- * This ebuild is from an overlay named 'gentoo-china': '/usr/local/portage/layman/gentoo-china/'
- * The complete build log is located at '/var/tmp/portage/net-misc/iptux-0.5.0/temp/build.log'.
- * The ebuild environment file is located at '/var/tmp/portage/net-misc/iptux-0.5.0/temp/environment'.
- * S: '/var/tmp/portage/net-misc/iptux-0.5.0/work/iptux-0.5.0'
- --------------------------- ACCESS VIOLATION SUMMARY ---------------------------
- LOG FILE "/var/log/sandbox/sandbox-6601.log"
- VERSION 1.0
- FORMAT: F - Function called
- FORMAT: S - Access Status
- FORMAT: P - Path as passed to function
- FORMAT: A - Absolute Path (not canonical)
- FORMAT: R - Canonical Path
- FORMAT: C - Command Line
- F: open_wr
- S: deny
- P: /usr/bin/ihateiptux
- A: /usr/bin/ihateiptux
- R: /usr/bin/ihateiptux
- C: /usr/bin/install -c ihateiptux /usr/bin/ihateiptux
- --------------------------------------------------------------------------------
复制代码
似乎编译通过了,只是最后安装的问题?!
- # Copyright 1999-2008 Gentoo Foundation
- # Distributed under the terms of the GNU General Public License v2
- # $Header: $
- DESCRIPTION="Iptux is a ipmsg client in linux"
- HOMEPAGE="http://code.google.com/p/iptux/"
- SRC_URI="http://iptux.googlecode.com/files/${P}.tar.gz"
- LICENSE="GPL-2"
- SLOT="0"
- KEYWORDS="~x86 ~amd64"
- IUSE=""
- DEPEND="gnome-base/gconf
- >=x11-libs/gtk+-2.10.14"
- RDEPEND="${DEPEND}"
- RESTRICT="mirror" #for overlay
- src_install() {
- einstall
- }
复制代码 |
|