One of the sed lines silently fails. Here's the patch: codewarrior bittornado # diff -u bittornado-0.0.1-r1.ebuild /usr/portage/net-p2p/bittornado/bittornado-0.0.1.ebuild --- bittornado-0.0.1-r1.ebuild 2004-03-18 12:20:56.297428173 -0500 +++ /usr/portage/net-p2p/bittornado/bittornado-0.0.1.ebuild 2004-03-18 01:15:14.000000000 -0500 @@ -33,7 +33,7 @@ unpack ${A} sed -i "s:os.path.abspath(os.path.dirname(sys.argv\[0\])):\"${PIXMAPLOC}/\":" ${S}/btdownloadgui.py || die "sed failure 1" sed -i "s:BitTorrent\.version:BitTornado.version:g" ${S}/setup.py || die "sed failure 2" - sed -i 's:packages = \["BitTornado"\],:packages = \["BitTornado","BitTornado.BT1"\],:g' ${S}/setup.py || die "sed failure 3" + sed -i 's:packages = ["BitTornado"],:packages = ["BitTornado","BitTornado.BT1"]:g' ${S}/setup.py || die "sed failure 3" } src_install() {
Damnit, did the diff backwards, here's the correct one. codewarrior bittornado # diff -u /usr/portage/net-p2p/bittornado/bittornado-0.0.1.ebuild ./bittornado-0.0.1-r1.ebuild --- /usr/portage/net-p2p/bittornado/bittornado-0.0.1.ebuild 2004-03-18 01:15:14.000000000 -0500 +++ ./bittornado-0.0.1-r1.ebuild 2004-03-18 12:20:56.000000000 -0500 @@ -33,7 +33,7 @@ unpack ${A} sed -i "s:os.path.abspath(os.path.dirname(sys.argv\[0\])):\"${PIXMAPLOC}/\":" ${S}/btdownloadgui.py || die "sed failure 1" sed -i "s:BitTorrent\.version:BitTornado.version:g" ${S}/setup.py || die "sed failure 2" - sed -i 's:packages = ["BitTornado"],:packages = ["BitTornado","BitTornado.BT1"]:g' ${S}/setup.py || die "sed failure 3" + sed -i 's:packages = \["BitTornado"\],:packages = \["BitTornado","BitTornado.BT1"\],:g' ${S}/setup.py || die "sed failure 3" } src_install() {
thanks for the note... it's fixed in cvs now...