blob: a68b8fb331ab31598d2a71e1e89d457a770dd78d (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/sms/sms-1.9.2l.ebuild,v 1.2 2004/06/06 00:12:12 dragonheart Exp $
DESCRIPTION="Command line program for sending SMS to Polish GSM mobile phone users"
HOMEPAGE="http://ceti.pl/~miki/komputery/sms.html"
SRC_URI="http://ceti.pl/~miki/komputery/download/sms/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="virtual/glibc
sys-libs/gdbm"
DEPEND="${RDEPEND}
sys-devel/gcc"
S=${WORKDIR}/${PN}
src_compile() {
emake || die
}
src_install() {
rm -rf contrib/CVS
emake INSTALL_PREFIX=${D}/usr INSTALL_DOC=${D}/usr/share/doc/${PF} INSTALL_MAN=${D}/usr/share/man install
}
|