]> Pileus Git - ~andy/sunrise/commitdiff
app-cdr/qlscribe: New Ebuild for bug 263236 thx to David Pyke for Bug Squashing
authorMario Fetka <mario.fetka@gmail.com>
Tue, 2 Feb 2010 21:56:23 +0000 (21:56 +0000)
committerMario Fetka <mario.fetka@gmail.com>
Tue, 2 Feb 2010 21:56:23 +0000 (21:56 +0000)
svn path=/sunrise/; revision=9972

app-cdr/qlscribe/ChangeLog [new file with mode: 0644]
app-cdr/qlscribe/Manifest [new file with mode: 0644]
app-cdr/qlscribe/metadata.xml [new file with mode: 0644]
app-cdr/qlscribe/qlscribe-0.14.ebuild [new file with mode: 0644]

diff --git a/app-cdr/qlscribe/ChangeLog b/app-cdr/qlscribe/ChangeLog
new file mode 100644 (file)
index 0000000..cc1aa68
--- /dev/null
@@ -0,0 +1,8 @@
+# ChangeLog for app-cdr/qlscribe
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  02 Feb 2010; Mario Fetka <mario.fetka@gmail.com> +qlscribe-0.14.ebuild,
+  +metadata.xml:
+  New Ebuild for bug 263236 thx to David Pyke for Bug Squashing
+
diff --git a/app-cdr/qlscribe/Manifest b/app-cdr/qlscribe/Manifest
new file mode 100644 (file)
index 0000000..6762f30
--- /dev/null
@@ -0,0 +1,4 @@
+DIST qlscribe-0.14.tar.gz 92656 RMD160 03bb5c74eadfc42bb2f0896621c1f37252c778c3 SHA1 f376bd24586e50706bf9f06769aef16e1f0db5b9 SHA256 3452a792bc03791d5d68720d7962173c0970f98467aa994ce6ad386f5fb8848d
+EBUILD qlscribe-0.14.ebuild 661 RMD160 50c634d3671100ef76550c1b461740a1fc02ec7d SHA1 d86b77e01e0cb17c19fe9b800dfb95dc84b32d0e SHA256 fc2ffd6f7f5641ddf7b378fccf8fcd0221cdd083b0d49e12c6bb23f245f96dcd
+MISC ChangeLog 273 RMD160 73456482f0b627abbbd6bbb428260b778cacf859 SHA1 8db9f49c45c933a0fc37c613e23217c7072d3b6f SHA256 56bc044ec2732f7dbd89f8de114990cccca9af2444c6846ba0fe1cb02a9c6734
+MISC metadata.xml 170 RMD160 645927a396fdc21cdeb089fe42c5397332420ea6 SHA1 ac7f48a14fec325926f9ce1be8fbf1f311b4f2e4 SHA256 d797a2ec6f9dc516c9f9c1a758ee87ad3e8c43101b5dc76c2f872d5bd4639b42
diff --git a/app-cdr/qlscribe/metadata.xml b/app-cdr/qlscribe/metadata.xml
new file mode 100644 (file)
index 0000000..7e32869
--- /dev/null
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>maintainer-wanted</herd>
+</pkgmetadata>
diff --git a/app-cdr/qlscribe/qlscribe-0.14.ebuild b/app-cdr/qlscribe/qlscribe-0.14.ebuild
new file mode 100644 (file)
index 0000000..381f5a2
--- /dev/null
@@ -0,0 +1,28 @@
+# 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
+}