diff options
author | 2013-05-18 17:58:19 +0000 | |
---|---|---|
committer | 2013-05-18 17:58:19 +0000 | |
commit | f70c495010096a5efdadc63c20c1abbd76f44c51 (patch) | |
tree | 4ab51b454290c34959b324a4461ddb471c4aa451 /app-misc/sleepyhead | |
parent | Remove old versions. (diff) | |
download | gentoo-2-f70c495010096a5efdadc63c20c1abbd76f44c51.tar.gz gentoo-2-f70c495010096a5efdadc63c20c1abbd76f44c51.tar.bz2 gentoo-2-f70c495010096a5efdadc63c20c1abbd76f44c51.zip |
Bump, remove upstreamed patches.
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key 0x08C170DE55EC123A)
Diffstat (limited to 'app-misc/sleepyhead')
-rw-r--r-- | app-misc/sleepyhead/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/sleepyhead/sleepyhead-0.9.3.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/app-misc/sleepyhead/ChangeLog b/app-misc/sleepyhead/ChangeLog index ab542b0e8a8a..8a0b3ea8eaf3 100644 --- a/app-misc/sleepyhead/ChangeLog +++ b/app-misc/sleepyhead/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/sleepyhead # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/sleepyhead/ChangeLog,v 1.8 2013/03/02 19:31:33 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/sleepyhead/ChangeLog,v 1.9 2013/05/18 17:58:19 rich0 Exp $ + +*sleepyhead-0.9.3 (18 May 2013) + + 18 May 2013; Richard Freeman <rich0@gentoo.org> +sleepyhead-0.9.3.ebuild: + Bump, remove upstreamed patches. 02 Mar 2013; Markos Chandras <hwoarang@gentoo.org> sleepyhead-0.9.2.2-r1.ebuild, sleepyhead-0.9.2.2.ebuild, diff --git a/app-misc/sleepyhead/sleepyhead-0.9.3.ebuild b/app-misc/sleepyhead/sleepyhead-0.9.3.ebuild new file mode 100644 index 000000000000..5ddecebf634c --- /dev/null +++ b/app-misc/sleepyhead/sleepyhead-0.9.3.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/sleepyhead/sleepyhead-0.9.3.ebuild,v 1.1 2013/05/18 17:58:19 rich0 Exp $ + +EAPI=4 +inherit eutils qt4-r2 +DESCRIPTION="Software used to analyze data from CPAP machines." +HOMEPAGE="https://sourceforge.net/apps/mediawiki/sleepyhead/index.php?title=Main_Page" + +# Point to any required sources; these will be automatically downloaded by +# Portage. +SRC_URI="https://github.com/rich0/rich0-sleepyhead/tarball/${PV} -> ${P}.tgz" +LICENSE="GPL-2" +SLOT="0" + +KEYWORDS="~amd64" + +IUSE="" + +DEPEND="virtual/opengl + x11-libs/libX11 + dev-qt/qtcore:4 + dev-qt/qtgui:4 + dev-qt/qtopengl:4 + dev-qt/qtwebkit:4" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/rich0-rich0-sleepyhead-34e0b92" + +src_unpack() { + unpack ${A} + cd "${S}" +} + +src_prepare() { +# qt4_src_prepare + cd "{$S}" + epatch "${FILESDIR}/common_gui.patch" + +# sed -i '1i#define OF(x) x' quazip/ioapi.h quazip/unzip.c quazip/unzip.h \ +# quazip/zip.c quazip/zip.h quazip/zlib.h + eqmake4 SleepyHeadQT.pro +} + +src_install() { + cd "{$S}" + dobin SleepyHead || die + dodoc README || die + dodoc docs/* || die +} |