Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Gentoo-xeffects EOL
View unanswered posts
View posts from last 24 hours

Goto page Previous  1, 2, 3  
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
krigstask
n00b
n00b


Joined: 27 Feb 2007
Posts: 30
Location: Rampova, Inkerimaa, Venämaa

PostPosted: Thu Jan 31, 2008 1:30 pm    Post subject: Reply with quote

...and via layman, if you have dev-util/git installed (-:E
Back to top
View user's profile Send private message
billydv
l33t
l33t


Joined: 22 Dec 2006
Posts: 818
Location: Mount Vernon, NY

PostPosted: Thu Jan 31, 2008 8:18 pm    Post subject: Reply with quote

New ebuilds include some more plugins and the ebuilds are updated for kde4. GREAT!!!!!
_________________
Billy DeVincentis
Back to top
View user's profile Send private message
pwaller
n00b
n00b


Joined: 03 Sep 2007
Posts: 25

PostPosted: Sun Feb 03, 2008 5:40 pm    Post subject: Reply with quote

I'm not seeing desktop-effects on layman?
Back to top
View user's profile Send private message
Slimm
n00b
n00b


Joined: 15 Dec 2004
Posts: 14

PostPosted: Mon Feb 04, 2008 2:29 am    Post subject: Reply with quote

pwaller wrote:
I'm not seeing desktop-effects on layman?


try
Code:
layman -ka desktop-effects
Back to top
View user's profile Send private message
pwaller
n00b
n00b


Joined: 03 Sep 2007
Posts: 25

PostPosted: Mon Feb 04, 2008 9:23 am    Post subject: Reply with quote

Worked, thanks.

Why doesn't it show up on layman -L? Why is --nocheck required?
Back to top
View user's profile Send private message
karsten_s
n00b
n00b


Joined: 19 Jan 2006
Posts: 33
Location: Berlin, Germany

PostPosted: Mon Feb 04, 2008 12:30 pm    Post subject: Reply with quote

i found it after krigstask's post with layman --list and it's still there now. dunno...

And I've had compiz-fusion back for almost a week now. I love it so much that I put my mouse in the upper-left corner to switch tasks at work and get ticked off when it doesn't work... ;) thanks for a great way to manage great software on a great distribution of a great operating system. you guys are the greatest.

7<arsten
_________________
Quote:
This time it was right, it would work, and no one would have to get nailed to anything.

Sadly, however, before she could get to a phone to tell anyone about it, a terribly stupid catastrophe occurred, and the idea was lost forever.
Back to top
View user's profile Send private message
Arteal
n00b
n00b


Joined: 05 Mar 2006
Posts: 6
Location: Brno.CZ

PostPosted: Sun Feb 10, 2008 7:08 pm    Post subject: Reply with quote

Hi, i have problem :)
Code:
git.eclass: can't update from git://anongit.freedesktop.org/git/xorg/app/compiz

Does anybody know what to do whit this? :)
Back to top
View user's profile Send private message
billydv
l33t
l33t


Joined: 22 Dec 2006
Posts: 818
Location: Mount Vernon, NY

PostPosted: Mon Feb 11, 2008 3:29 am    Post subject: Reply with quote

Yeah, theres currently a problem, I had it this afternoon, I would wait until tomorrow. But if you cant, use this ebuild and manifest

ebuild

Code:
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/compiz/compiz-0.5.0.ebuild,v 1.1 2007/04/24 01:51:02 hanno Exp $

EAPI="1"

inherit autotools git

EGIT_REPO_URI="git://git.compiz-fusion.org/compiz"

DESCRIPTION="3D composite- and windowmanager"
HOMEPAGE="http://www.compiz.org/"
SRC_URI=""

LICENSE="GPL-2 LGPL-2.1 MIT"
SLOT="0"
KEYWORDS=""
IUSE="dbus fuse gnome gtk kde kde4 svg xcb"

DEPEND="
   >=media-libs/mesa-6.5.1-r1
   >=media-libs/glitz-0.5.6
   >=x11-base/xorg-server-1.1.1-r1
   x11-libs/libXdamage
   x11-libs/libXrandr
   x11-libs/libXcomposite
   x11-libs/libXinerama
   x11-proto/damageproto
   media-libs/libpng
   x11-libs/libxcb
   >=x11-libs/gtk+-2.0
   x11-libs/startup-notification
   gnome? ( >=x11-libs/libwnck-2.16.1
      gnome-base/gconf
      >=gnome-base/control-center-2.16.1 )
   svg? ( gnome-base/librsvg )
   dbus? ( >=sys-apps/dbus-1.0 )
   kde? (
      || ( kde-base/kwin:3.5
         kde-base/kdebase:3.5 )
      dev-libs/dbus-qt3-old )
   kde4? (
      || (
         >=kde-base/kwin-4.0.1:kde-4
         >=kde-base/kdebase-4.0.1:kde-4
         kde-base/kwin:kde-svn
         kde-base/kdebase:kde-svn
      ) )
   fuse? ( sys-fs/fuse )"

RDEPEND="${DEPEND}
   x11-apps/mesa-progs
   x11-apps/xvinfo"

pkg_setup() {
   if use xcb && ! built_with_use "x11-libs/libX11" "xcb" ; then
      eerror "Compiz now requires libX11 to be built with xcb."
      eerror "Please build libX11 with USE=\"xcb\""
      ewarn "Be warned that building libX11 with xcb support will break Java."
      die "Build libX11 with USE=\"xcb\""
   fi
}

src_unpack() {
   git_src_unpack
   cd "${S}"

   use gnome || epatch "${FILESDIR}"/${PN}-no-gconf.patch
   use xcb || epatch "${FILESDIR}"/${PN}-drop-xcb.patch

   eautoreconf || die "eautoreconf failed"
   intltoolize --copy --force || die "intltoolize failed"
   glib-gettextize --copy --force || die "glib-gettextize failed"
}

src_compile() {
   econf \
      --with-default-plugins \
      $(use_enable gtk) \
      $(use_enable gnome gconf) \
      $(use_enable gnome) \
      $(use_enable gnome metacity) \
      $(use_enable kde) \
      $(use_enable kde4) \
      $(use_enable svg librsvg) \
      $(use_enable dbus) \
      $(use_enable dbus dbus-glib) \
      $(use_enable fuse) || die "econf failed"

   emake || die "emake failed"
}

src_install() {
   emake DESTDIR="${D}" install || die "make install failed"

   # Install compiz-manager
   dobin "${FILESDIR}/compiz-manager" || die "dobin failed"

   # Create gentoo's config file
   dodir /etc/xdg/compiz

   cat <<- EOF > "${D}/etc/xdg/compiz/compiz-manager"
   COMPIZ_BIN_PATH="/usr/bin/"
   PLUGIN_PATH="/usr/$(get_libdir)/compiz/"
   LIBGL_NVIDIA="/usr/$(get_libdir)/opengl/xorg-x11/libGL.so.1.2"
   LIBGL_FGLRX="/usr/$(get_libdir)/opengl/xorg-x11/libGL.so.1.2"
   KWIN="$(type -p kwin)"
   METACITY="$(type -p metacity)"
   SKIP_CHECKS="yes"
   EOF

   dodoc AUTHORS ChangeLog NEWS README TODO || die "dodoc failed"
}






manifest


Code:
AUX compiz-0.6.2-CVE-2007-3920.patch 1019 RMD160 024316c8213df5c68ceb39c404da4227cdfbf21f SHA1 adf6c10f0fa3de040704cd208d09d93b402667b8 SHA256 63b7dd520b4659f8124e3122ffeb0577c07d90539211f8383037eef744c0e5ee
AUX compiz-drop-xcb.patch 1310 RMD160 70c56b45843a37a4cdd58017a27d348ae35fdd1d SHA1 f0f1234a9f3e5f20ab1b271cd9e6ada8193ea363 SHA256 1510a0a4e76d4acd9853513bf8acdb721c6165fd2fba4593f34d8a9658711c98
AUX compiz-manager 9843 RMD160 d1a3d37bf65ea7a09b7e52046a31c7c2a349283c SHA1 c791ad4fc5a06edf38e982360c94bdd4f038bb55 SHA256 70642be2d99ba8ecbd194a0818d49fe624c819bc9e58ee4271518102e71e97af
AUX compiz-no-gconf.patch 630 RMD160 32b6990dff7baf7f3cb04f728ab04d1523f29c46 SHA1 ad1c0a38dcb83c4768031f0b87db4748b2c24b92 SHA256 87467fbe5d4e0d0bb8952f2d5b74d21046d92d49772543aeda137266e055aa67
AUX compiz-start 1122 RMD160 6e2e0db666a9fd7648e894d9f778dcb1c59bb6c0 SHA1 f710dcfbd6274ff7bed3f264d284a4dcecb27254 SHA256 04a944e8e39ef1a6226b350027a5865bb56b45230aa59eae9574cd6c75529fa4
DIST compiz-0.6.2.tar.gz 1784471 RMD160 6cc235570c3ac15573050b27198648045a85a804 SHA1 ab5ecad856049a12a803fe6c94c3e55cdfcb5f68 SHA256 89efc2daefd79d28e2421902a6d890145df29e804bf8508773ea5a6eedb53224
EBUILD compiz-0.6.2-r1.ebuild 2395 RMD160 36b5670410902539d82eef71273996dd32e8534c SHA1 059312940406ba85e12dbcb509656af9672df719 SHA256 deb3c4b3ba43b2857e19d3f816db781fb3e2b3531dfc0f3c4143b456c730ffed
EBUILD compiz-9999.ebuild 2848 RMD160 7a70c29d39c9335f01dd34e49059bda44434974d SHA1 7b6ccc3d3cec83d6ef89db0489f91777a48ba638 SHA256 42efc4b498677f0ffd245959b53e8d700cf745d2e214fe3d1a3ac345b2dacb81
MISC ChangeLog 3341 RMD160 19436d033d9fa8ed759ec059896d0de58f370bad SHA1 175344a284312f67a6fb6b6b4a0aa898df9de189 SHA256 3a17ccd368b0486aa21997a235871af442391d0af9c88d1018c678759f7bf538
MISC metadata.xml 570 RMD160 92a51a6eabcb5602a25a9e005796df442c27d449 SHA1 c5a039da1a524294ee34354f0cb82ef867f01d7f SHA256 6d598ca28587ec94550fed9e9772f160d29511b9897462f7ec30e9d198837f6c


Added tags to preserve formatting and layout. -- desultory
_________________
Billy DeVincentis
Back to top
View user's profile Send private message
xlordt
Apprentice
Apprentice


Joined: 18 Apr 2007
Posts: 178

PostPosted: Tue Feb 12, 2008 2:07 am    Post subject: Reply with quote

I tried getting the desktop-effects but no luck..
Code:

layman -a desktop-effects

* Running command "/usr/bin/git clone "git://git.overlays.gentoo.org/proj/desktop-effects.git/" "/usr/portage/local/layman/desktop-effects""...
Initialized empty Git repository in /usr/portage/local/layman/desktop-effects/.git/
git.overlays.gentoo.org[0: 66.219.59.40]: errno=Connection timed out
fatal: unable to connect a socket (Connection timed out)
fetch-pack from 'git://git.overlays.gentoo.org/proj/desktop-effects.git/' failed.
* Failed to add overlay "desktop-effects".
* Error was: Directory /usr/portage/local/layman/desktop-effects does not exist. Cannot remove the overlay!

any idea why? seems like the server is timing out.. also.. just in case it isn't a firewall issue.
_________________
Only The Strong Servives
Back to top
View user's profile Send private message
xlordt
Apprentice
Apprentice


Joined: 18 Apr 2007
Posts: 178

PostPosted: Tue Feb 12, 2008 8:37 pm    Post subject: Reply with quote

Sorry I don't mean to rush.. but I really would love to finish my gentoo installation. So if anyone has ever ran into this problem (top post) please let me know how to go by fixing it, currently I am not home to try it out again.. so I might be going a little ahead of my self. :?
_________________
Only The Strong Servives
Back to top
View user's profile Send private message
jonnevers
Veteran
Veteran


Joined: 02 Jan 2003
Posts: 1584
Location: Gentoo64 land

PostPosted: Tue Feb 12, 2008 8:52 pm    Post subject: Reply with quote

Code:
user host~ $ layman -s desktop-effects
* Running command "cd "/usr/portage/local/layman/desktop-effects" && /usr/bin/git pull"...
Already up-to-date.
*
* Success:
* ------
*
* Successfully synchronized overlay "desktop-effects".

do you have an overzealous firewall or router blocking access to this protocol?
Back to top
View user's profile Send private message
xlordt
Apprentice
Apprentice


Joined: 18 Apr 2007
Posts: 178

PostPosted: Tue Feb 12, 2008 9:07 pm    Post subject: Reply with quote

jonnevers wrote:
Code:
user host~ $ layman -s desktop-effects
* Running command "cd "/usr/portage/local/layman/desktop-effects" && /usr/bin/git pull"...
Already up-to-date.
*
* Success:
* ------
*
* Successfully synchronized overlay "desktop-effects".

do you have an overzealous firewall or router blocking access to this protocol?

hmm what port is it using? I know that I opened all ports for this machines ip.. anyways.. I also didn't reboot my system at then.. so when I get home in a few I will check it out again.
I just needed to know if it was me or not... as I see that it should be down my way.
_________________
Only The Strong Servives
Back to top
View user's profile Send private message
NeddySeagoon
Administrator
Administrator


Joined: 05 Jul 2003
Posts: 27780
Location: 56N 3W

PostPosted: Tue Feb 12, 2008 9:42 pm    Post subject: Reply with quote

The xeffects overlay is End of Life (EOL)
Please read the first post in this thread
_________________
Regards,

NeddySeagoon

Computer users fall into two groups:-
those that do backups
those that have never had a hard drive fail.
Back to top
View user's profile Send private message
xlordt
Apprentice
Apprentice


Joined: 18 Apr 2007
Posts: 178

PostPosted: Tue Feb 12, 2008 9:53 pm    Post subject: Reply with quote

NeddySeagoon wrote:
The xeffects overlay is End of Life (EOL)
Please read the first post in this thread
hah? me? I didn't say anything about xeffect, as you can see I did try running
Code:
layman -a desktop-effects

and not the old xeffect way. Unless this the code above is what you mean.. anyways.. I will re read it just in case I did miss anything, even though I don't understand the meaning of your post.
_________________
Only The Strong Servives
Back to top
View user's profile Send private message
jonnevers
Veteran
Veteran


Joined: 02 Jan 2003
Posts: 1584
Location: Gentoo64 land

PostPosted: Tue Feb 12, 2008 9:57 pm    Post subject: Reply with quote

xlordt wrote:
Code:
layman -a desktop-effects

and not the old xeffect way.

desktop-effects it the currently maintained alternative to what was xeffects.

He may have been suggesting that you might get better support at the 'official' desktop-overlay thread at:
http://forums.gentoo.org/viewtopic-t-652604-highlight-.html
it may be checked more often then this older thread.
Back to top
View user's profile Send private message
xlordt
Apprentice
Apprentice


Joined: 18 Apr 2007
Posts: 178

PostPosted: Tue Feb 12, 2008 11:03 pm    Post subject: Reply with quote

jonnevers wrote:
xlordt wrote:
Code:
layman -a desktop-effects

and not the old xeffect way.

desktop-effects it the currently maintained alternative to what was xeffects.

He may have been suggesting that you might get better support at the 'official' desktop-overlay thread at:
http://forums.gentoo.org/viewtopic-t-652604-highlight-.html
it may be checked more often then this older thread.
ahh sorry.. ok.. maybe I should continue there.. thanx..
_________________
Only The Strong Servives
Back to top
View user's profile Send private message
tuxtor
n00b
n00b


Joined: 22 Apr 2007
Posts: 4
Location: Guatemala

PostPosted: Sun Feb 24, 2008 10:28 pm    Post subject: Reply with quote

I was trying many overlays

In the sabayon overlay is the xgl ebuild (if you need it you could use that overlay)
_________________
:D
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT
Goto page Previous  1, 2, 3
Page 3 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum