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: $
|
|
|
|
|
2010-02-03 06:50:24 +01:00
|
|
|
EAPI=2
|
2010-02-02 07:52:00 +01:00
|
|
|
inherit cmake-utils
|
2010-01-19 10:53:14 +01:00
|
|
|
|
2010-02-03 06:50:24 +01:00
|
|
|
DESCRIPTION="OS lightScribe labeler"
|
2010-01-19 10:53:14 +01:00
|
|
|
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 21:50:30 +01:00
|
|
|
RDEPEND="x11-libs/qt-gui:4[dbus]
|
2010-02-03 06:50:24 +01:00
|
|
|
dev-libs/liblightscribe
|
2010-01-19 10:53:14 +01:00
|
|
|
amd64? ( app-emulation/emul-linux-x86-baselibs )"
|
2010-02-02 21:50:30 +01:00
|
|
|
DEPEND="${RDEPEND}"
|
2010-01-19 10:53:14 +01:00
|
|
|
|
2010-01-20 07:07:40 +01:00
|
|
|
src_configure() {
|
2010-02-02 21:50:30 +01:00
|
|
|
local mycmakeargs=(
|
|
|
|
"-DDBUS_SYSTEM_POLICY_DIR=/etc/dbus-1/system.d"
|
|
|
|
"-DDBUS_SYSTEM_SERVICE_DIR=/usr/share/dbus-1/system-services" )
|
2010-01-20 07:07:40 +01:00
|
|
|
|
|
|
|
cmake-utils_src_configure
|
|
|
|
}
|