2010-01-19 10:53:14 +01:00
|
|
|
# Copyright 1999-2010 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
# $Header: $
|
|
|
|
|
|
|
|
EAPI="2"
|
2010-02-02 07:52:00 +01:00
|
|
|
inherit cmake-utils
|
2010-01-19 10:53:14 +01:00
|
|
|
|
|
|
|
DESCRIPTION="Qt lightScribe - OS labeler for Linux"
|
|
|
|
HOMEPAGE="http://sourceforge.net/projects/qlscribe/"
|
|
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
2010-02-02 07:52:00 +01:00
|
|
|
IUSE=""
|
2010-01-19 10:53:14 +01:00
|
|
|
|
2010-02-02 07:52:00 +01:00
|
|
|
RDEPEND="x11-libs/qt-core:4
|
|
|
|
x11-libs/qt-dbus:4
|
|
|
|
x11-libs/qt-gui:4
|
2010-01-19 10:53:14 +01:00
|
|
|
app-cdr/liblightscribe
|
|
|
|
amd64? ( app-emulation/emul-linux-x86-baselibs )"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
dev-util/cmake[qt4]"
|
|
|
|
|
2010-01-20 07:07:40 +01:00
|
|
|
|
|
|
|
src_configure() {
|
2010-02-02 07:52:00 +01:00
|
|
|
mycmakeargs="-DDBUS_SYSTEM_POLICY_DIR=/etc/dbus-1/system.d \
|
2010-01-20 07:07:40 +01:00
|
|
|
-DDBUS_SYSTEM_SERVICE_DIR=/usr/share/dbus-1/system-services"
|
|
|
|
|
|
|
|
cmake-utils_src_configure
|
|
|
|
}
|
2010-01-19 10:53:14 +01:00
|
|
|
|
|
|
|
src_install() {
|
|
|
|
cmake-utils_src_install
|
|
|
|
}
|
2010-01-20 07:07:40 +01:00
|
|
|
|