blob: 4bbbbec9b829cc5529842f98ae87f11025665e14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit eutils qt4-r2
DESCRIPTION="Tool for sending SMS and sending/receiving JackSMS-Message-Service"
HOMEPAGE="http://www.jacksms.it/"
SRC_URI="http://sulmonalug.it/files/mrfree/${P}.tar.gz"
### Original upstream unversioned tarball
# MY_P=${PN}_${PV}
# SRC_URI="http://download.opensuse.org/repositories/home:/grisson/xUbuntu_10.04/${MY_P}.orig.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug"
DEPEND="dev-util/ticpp
x11-libs/qt-gui:4"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${P/_beta?/}
src_install() {
dobin QtJackSMS || die
doicon ${PN}.png|| die
make_desktop_entry QtJackSMS \
"JackSMS Desktop" \
${PN} \
"Application;Network;"
}
|