diff options
Diffstat (limited to 'razorqt-base/razorqt-notifications/razorqt-notifications-0.5.1.ebuild')
-rw-r--r-- | razorqt-base/razorqt-notifications/razorqt-notifications-0.5.1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/razorqt-base/razorqt-notifications/razorqt-notifications-0.5.1.ebuild b/razorqt-base/razorqt-notifications/razorqt-notifications-0.5.1.ebuild new file mode 100644 index 000000000000..8b08b5fcdcde --- /dev/null +++ b/razorqt-base/razorqt-notifications/razorqt-notifications-0.5.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/razorqt-base/razorqt-notifications/razorqt-notifications-0.5.1.ebuild,v 1.1 2012/10/24 11:37:14 yngwin Exp $ + +EAPI=4 +inherit cmake-utils + +DESCRIPTION="Razor-qt notification daemon" +HOMEPAGE="http://razor-qt.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-2 + EGIT_REPO_URI="git://github.com/Razor-qt/razor-qt.git" + EGIT_BRANCH="master" + KEYWORDS="" +else + SRC_URI="https://github.com/downloads/Razor-qt/razor-qt/razorqt-${PV}.tar.bz2" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/razorqt-${PV}" +fi + +LICENSE="LGPL-2.1+" +SLOT="0" +IUSE="" + +DEPEND="razorqt-base/razorqt-libs" +RDEPEND="${DEPEND} + razorqt-base/razorqt-data" + +src_configure() { + local mycmakeargs=( + -DSPLIT_BUILD=On + -DMODULE_NOTIFICATIOND=On + ) + cmake-utils_src_configure +} |