diff options
author | 2004-04-12 11:18:49 +0000 | |
---|---|---|
committer | 2004-04-12 11:18:49 +0000 | |
commit | b4e9de91dcce5fe6e858a4a89c38de8b56bd0bb1 (patch) | |
tree | 6a1f7caa499c485163296fb6e3d230fb68e79c04 /net-dialup/gammu/gammu-0.94.4.ebuild | |
parent | Added to ~ppc (diff) | |
download | historical-b4e9de91dcce5fe6e858a4a89c38de8b56bd0bb1.tar.gz historical-b4e9de91dcce5fe6e858a4a89c38de8b56bd0bb1.tar.bz2 historical-b4e9de91dcce5fe6e858a4a89c38de8b56bd0bb1.zip |
Upgrade to 0.94.4 and removed the older files
Diffstat (limited to 'net-dialup/gammu/gammu-0.94.4.ebuild')
-rw-r--r-- | net-dialup/gammu/gammu-0.94.4.ebuild | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/net-dialup/gammu/gammu-0.94.4.ebuild b/net-dialup/gammu/gammu-0.94.4.ebuild new file mode 100644 index 000000000000..85c040c6f676 --- /dev/null +++ b/net-dialup/gammu/gammu-0.94.4.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/gammu/gammu-0.94.4.ebuild,v 1.1 2004/04/12 11:18:49 st_lim Exp $ + +inherit eutils + +DESCRIPTION="a fork of the gnokii project, a tool to handle your cellular phone" +SRC_URI="http://www.mwiacek.com/zips/gsm/gammu/older/${P}.tar.gz" +HOMEPAGE="http://www.mwiacek.com/gsm/gammu/gammu.html" + +IUSE="nls bluetooth irda mysql" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86" +S=$WORKDIR/${P} + +RDEPEND="irda? ( sys-kernel/linux-headers ) + mysql? ( dev-db/mysql ) + ssl? ( >=dev-libs/openssl-0.9.7d ) + bluetooth? ( net-wireless/bluez-libs )" + +DEPEND="${RDEPEND} + nls? ( sys-devel/gettext )" + +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}-LastCalendar.patch +} + +src_compile() { + local myconf + use bluetooth && myconf="${myconf} --with-bluedir=/usr/lib" + use irda || myconf="${myconf} --disable-irdaat --disable-irdaphonet" + econf \ + `use_enable nls` \ + --prefix=/usr \ + --enable-cb \ + --enable-7110incoming \ + --enable-6210calendar \ + ${myconf} || die "configure failed" + + sed -e 's:-lz -pthread:-lz -lpthread -lssl:g' \ + -i ${S}/cfg/Makefile.cfg + emake || die "make failed" +} + +src_install () { + make DESTDIR=${D} installlib || die "install failed" + doman docs/docs/english/gammu.1 + mv ${D}/usr/share/doc/${PN} ${D}/usr/share/doc/${P} +} |