accel-manager: version bump

git-svn-id: http://svn.sabayonlinux.org/overlay@2682 d7aec97c-591d-0410-af39-a8856400b30a
This commit is contained in:
lxnay
2008-12-16 16:52:12 +00:00
parent 9eb2e766c8
commit 3f2a4540ee
2 changed files with 67 additions and 0 deletions
+1
View File
@@ -1,2 +1,3 @@
EBUILD accel-manager-1.4.9-r1.ebuild 1441 RMD160 bc68e340a87436fcdc16bcf29e06139af1658f43 SHA1 d8dbb78832601464582a8f931a0749e4173c6085 SHA256 88f98226a79c76f4b872ee0237d801bfb80220d968c33909fdf816d2731aa3df
EBUILD accel-manager-1.5.0.ebuild 1441 RMD160 bc68e340a87436fcdc16bcf29e06139af1658f43 SHA1 d8dbb78832601464582a8f931a0749e4173c6085 SHA256 88f98226a79c76f4b872ee0237d801bfb80220d968c33909fdf816d2731aa3df
EBUILD accel-manager-9999-r1.ebuild 1261 RMD160 59524ae0a6bc94b04cbbf39ac9bf5eb5ac5aa5da SHA1 236e499d704543e350ccdc5c3fc010bf95950776 SHA256 1c094deba012d55b2655f258294be29847b465b35078b891bf383eafa5826d07
@@ -0,0 +1,66 @@
# Copyright 2006 SabayonLinux
# Distributed under the terms of the GNU General Public License v2
inherit eutils subversion qt4
DESCRIPTION="Acceleration Manager for AIGLX/XGL on SabayonLinux"
HOMEPAGE="http://www.sabayonlinux.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc ~ppc64"
IUSE=""
ESVN_REPO_URI="http://svn.sabayonlinux.org/projects/${PN}/tags/${PV}"
RDEPEND="
x11-libs/qt-core:4
x11-misc/desktop-acceleration-helpers
x11-libs/gksu
"
DEPEND="${RDEPEND}"
src_unpack() {
subversion_src_unpack
}
src_compile () {
cd ${S}
addwrite "${QTDIR}/etc/settings"
qmake ${PN}.pro
emake || die "make failed"
mv accel-manager accel-manager-bin
}
src_install () {
cd ${S}
dodir /usr/share/accel-manager
exeinto /usr/sbin
doexe accel-manager-bin
doexe utils/accel-manager
exeinto /usr/share/accel-manager
doexe utils/desktop-accel-selector
exeinto /usr/share/accel-manager
doexe utils/accel-server-handler
exeinto /usr/share/accel-manager
doexe utils/accel-manager-session
insinto /usr/share/accel-manager
doins pics/accelicon.png
doins pics/black.png
insinto /usr/share/pixmaps
doins pics/accel-manager.png
insinto /usr/share/applications
doins utils/accel-manager.desktop
insinto /usr/share/xsessions
doins utils/accel-server.desktop
}