fd7660d73e
git-svn-id: https://svn.disconnected-by-peer.at/svn/linamh/trunk/lightscribe@1929 6952d904-891a-0410-993b-d76249ca496b
29 lines
661 B
Bash
29 lines
661 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
EAPI=2
|
|
inherit cmake-utils
|
|
|
|
DESCRIPTION="OS lightScribe labeler"
|
|
HOMEPAGE="http://sourceforge.net/projects/qlscribe/"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="x11-libs/qt-gui:4[dbus]
|
|
dev-libs/liblightscribe
|
|
amd64? ( app-emulation/emul-linux-x86-baselibs )"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
"-DDBUS_SYSTEM_POLICY_DIR=/etc/dbus-1/system.d"
|
|
"-DDBUS_SYSTEM_SERVICE_DIR=/usr/share/dbus-1/system-services" )
|
|
|
|
cmake-utils_src_configure
|
|
}
|