summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Shapovalov <george@gentoo.org>2002-07-18 01:55:11 +0000
committerGeorge Shapovalov <george@gentoo.org>2002-07-18 01:55:11 +0000
commitd4a77aed1d7daef1ca66cfd7bcfe3897720394b1 (patch)
treee6a3665f585ddcf0cc528d9dff39e271cc93919c /app-misc
parentnew package: website meta language (wml) (diff)
downloadgentoo-2-d4a77aed1d7daef1ca66cfd7bcfe3897720394b1.tar.gz
gentoo-2-d4a77aed1d7daef1ca66cfd7bcfe3897720394b1.tar.bz2
gentoo-2-d4a77aed1d7daef1ca66cfd7bcfe3897720394b1.zip
new package obexftp: "File transfer over OBEX for Siemens mobile phones"
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/obexftp/ChangeLog14
-rw-r--r--app-misc/obexftp/files/digest-obexftp-0.9.21
-rw-r--r--app-misc/obexftp/obexftp-0.9.2.ebuild33
3 files changed, 48 insertions, 0 deletions
diff --git a/app-misc/obexftp/ChangeLog b/app-misc/obexftp/ChangeLog
new file mode 100644
index 000000000000..f210ace7e04f
--- /dev/null
+++ b/app-misc/obexftp/ChangeLog
@@ -0,0 +1,14 @@
+# ChangeLog for app-misc/obexftp
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/obexftp/ChangeLog,v 1.1 2002/07/18 01:55:11 george Exp $
+
+*obexftp-0.9.2.ebuild (17 July 2002)
+
+ 17 July 2002; George Shapovalov <george@gentoo.org> obexftp-0.9.2.ebuild, files/digest-obexftp-0.9.2, ChangeLog :
+
+ Inital release,
+ obexftp is a package that gives users of Siemens x45 series phones access to
+ their phone's FlexMemory, an area in memory for data storage, which can be used
+ to upload bitmaps, ringtones and other files.
+
+ ebuild submitted by Leigh Dyer <lsd@linuxgamers.net>
diff --git a/app-misc/obexftp/files/digest-obexftp-0.9.2 b/app-misc/obexftp/files/digest-obexftp-0.9.2
new file mode 100644
index 000000000000..2d881505264e
--- /dev/null
+++ b/app-misc/obexftp/files/digest-obexftp-0.9.2
@@ -0,0 +1 @@
+MD5 7233cd026d29c5d6d3098f64c6b2aac9 obexftp-0.9.2.tar.gz 194026
diff --git a/app-misc/obexftp/obexftp-0.9.2.ebuild b/app-misc/obexftp/obexftp-0.9.2.ebuild
new file mode 100644
index 000000000000..a55451679c7e
--- /dev/null
+++ b/app-misc/obexftp/obexftp-0.9.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/app-misc/obexftp/obexftp-0.9.2.ebuild,v 1.1 2002/07/18 01:55:11 george Exp $
+
+S=${WORKDIR}/${P}
+
+DESCRIPTION="File transfer over OBEX for Siemens mobile phones"
+
+SRC_URI="http://triq.net/obexftp/${P}.tar.gz"
+HOMEPAGE="http://triq.net/obexftp.html"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="x86"
+
+DEPEND=">=dev-libs/glib-1.2
+ >=dev-libs/openobex-0.9.8"
+RDEPEND="${DE{END}"
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+
+ dodoc AUTHORS ChangeLog README* THANKS TODO
+}