add ebuilds from work's overlay

This commit is contained in:
Sergey Popov 2011-09-10 14:55:41 +04:00
parent 739f47081b
commit 7dab561009
5 changed files with 85 additions and 0 deletions

2
app-misc/empty/Manifest Normal file
View File

@ -0,0 +1,2 @@
DIST empty-0.6.18b.tgz 16166 RMD160 8c49eb2d2da2388386bd801f495b6645ee93298c SHA1 29f1ecda248bdec7998d7211bf3866d62ce93e06 SHA256 8ea08afd6b637c49125b2fa6f0b571fd72b3aa8547a8834266fcbf0302d1efd3
EBUILD empty-0.6.18b.ebuild 581 RMD160 6df632d35408c61542004f76e81b051fbf01c344 SHA1 b705bd7bce811fcbc1ecf82da67e63c2636e5784 SHA256 e9474aa979f14fa637c181e7b67d67cb23a812726462c91662bab366bb3e32b0

View File

@ -0,0 +1,29 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit eutils
DESCRIPTION="small shell-tool similar to expect(1)"
HOMEPAGE="http://empty.sourceforge.net"
SRC_URI="mirror://sourceforge/empty/${P}.tgz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="examples"
DEPEND=""
RDEPEND="virtual/logger"
src_install() {
cd ${WORKDIR}/${P}
dobin empty
dodoc README
doman empty.1
if use examples; then
dodir usr/share/doc/${P}/examples/
insinto usr/share/doc/${P}/examples/
doins examples/*
fi
}

View File

@ -0,0 +1,3 @@
AUX cmake-fix.patch 786 RMD160 3f2558345d81780815739532055d67aadf445818 SHA1 ade8f17e0722868c036ecdeea0be373c893a58f4 SHA256 f976b34a9b8d83e414135f2bc363d1386c02c1e6d303268766311b2b243bf269
DIST plasma-widget-kbstate_2.0~svn906377.orig.tar.gz 36397 RMD160 de55d109e656ba3ab139cb57d97c02847fe07648 SHA1 1dfaf6ec95d7b1c2311f8aa73133265c1a4cab93 SHA256 6d54f710bcecc3c085f81953805d1e6b61a2849034ee3af40aa26ad698baa29a
EBUILD plasma-widget-kbstate-2.0_p906377.ebuild 672 RMD160 d1b535e8d9d70de817276b39e2f5f0d46cb6755a SHA1 9fc0c5692e6f760c39a712335d686aa562ec1f72 SHA256 83514444c60a575f43eb24a69831c51b59df9d4ce46e07c6e15400f7c087c6a1

View File

@ -0,0 +1,20 @@
--- CMakeLists.txt.orig 2008-11-05 10:40:46.000000000 +0300
+++ CMakeLists.txt 2011-07-13 10:26:13.000000000 +0400
@@ -1,12 +1,16 @@
project(plasma-kbstate)
find_package(X11 REQUIRED)
+find_package(KDE4 REQUIRED)
+find_package(Qt4 REQUIRED)
+
+include (${QT_USE_FILE})
include_directories(X11_INCLUDE_DIR)
set(kbstate_SRCS kbstateapplet.cpp)
kde4_add_plugin(plasma_applet_kbstate ${kbstate_SRCS})
-target_link_libraries(plasma_applet_kbstate ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${X11_LIBRARIES})
+target_link_libraries(plasma_applet_kbstate ${KDE4_PLASMA_LIBS} ${KDE4_KDEUI_LIBS} ${X11_LIBRARIES} ${QT_LIBRARIES})
install(TARGETS plasma_applet_kbstate DESTINATION ${PLUGIN_INSTALL_DIR})
install(FILES plasma-applet-kbstate.desktop DESTINATION ${SERVICES_INSTALL_DIR})

View File

@ -0,0 +1,31 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit kde4-base
SVN_VER="2.0~svn906377"
DESCRIPTION="http://plasma-widget-kbstate.sourcearchive.com/"
HOMEPAGE="http://www.kde-look.org/content/show.php/cpuload?content=79476"
SRC_URI="http://plasma-widget-kbstate.sourcearchive.com/downloads/${SVN_VER}/${PN}_${SVN_VER}.orig.tar.gz"
LICENSE="GPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE=""
RDEPEND="
$(add_kdebase_dep plasma-workspace)
"
S="${WORKDIR}/plasmoid-kbstate-${SVN_VER}"
CMAKE_IN_SOURCE_BUILD=1
src_prepare() {
epatch "${FILESDIR}/cmake-fix.patch"
kde4-base_src_prepare
}