Portage is a package management system used by Gentoo Linux
# ChangeLog for app-mobilephone/obex-data-server
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obex-data-server/ChangeLog,v 1.5 2008/04/18 10:48:49 jer Exp $
18 Apr 2008; Jeroen Roovers
Marked ~hppa too.
*obex-data-server-0.3 (26 Feb 2008)
26 Feb 2008; Petteri Räty
+obex-data-server-0.3.ebuild:
Version bump.
10 Feb 2008; Gilles Dartiguelongue
obex-data-server-0.1.ebuild:
Add ~amd64 wrt #209224
08 Feb 2008; Raúl Porcel
obex-data-server-0.1.ebuild:
Add ~sparc wrt #209224
*obex-data-server-0.1 (07 Feb 2008)
07 Feb 2008; Petteri Räty
+obex-data-server-0.1.ebuild:
Initial addition. Ebuild written by me. Needed for
>=net-wireless/bluez-gnome-0.16.
DIST obex-data-server-0.1.tar.gz 137128 RMD160 6966a668d0a66a6f9f96fada94bc37b469769f1c SHA1 ea32302a62142c53f05b3e530b10f39a8a592c5f SHA256 7d7f9905bd19677ea66e7ff45d1e660b0cd305046971c7c589649a98e31a5cf2
DIST obex-data-server-0.3.tar.gz 141190 RMD160 a3b3e1bbffc8845c1e64fa7262f5f21f8f3902e3 SHA1 799bd645c9d814ded5f74dd9e09cad7baa8c1f20 SHA256 6bcf8ab06d4ac76125edc02e639056252c32d06aa32b5c0967d72c31339f581d
EBUILD obex-data-server-0.1.ebuild 714 RMD160 fbfe20fff4a672f27722db2219e47982a8ea570b SHA1 aa46b3e51f06212f7f0398ca1be4800bf2f83354 SHA256 52893a4ba5193ffb1977311e81bc3bb9b03aefb3f65e1886a0ac5e75b18142ad
EBUILD obex-data-server-0.3.ebuild 826 RMD160 92b5d6ba880d5101c3016008d73c570086092cf0 SHA1 851163ea32afdef1686271ec3f0967bc1ffc88ae SHA256 52249030bf103cd0ea45b80d77ea06da136f806ca6e0dd32bbceef5834bc5fca
MISC ChangeLog 913 RMD160 806130fd128a3416501c68949d8e838f0b179b9a SHA1 c7615c1f9db908270daa82635fafb3d9a9e9c09c SHA256 cf417aa69a2b2b815b44f6192880b60c54fe249aa91cf2b6ce3fc2cd65509595
MISC metadata.xml 717 RMD160 164ecbbfe51637eeb9dc8e03cfe4c7cd61c76a31 SHA1 f77b0d4e6e0ca39b726db8c029c57b8768be12ba SHA256 4ffd4af8dd2480f5e6d50c306e5dd7f730649fd50f8497eb99b338e40d125623
A DBus service providing easy to use API for using OBEX protocol
(both client and server wise). Current implementation supports OPP
(Object Push Profile) and FTP (File Transfer Profile). This means
that you can have FTP server running on your Bluetooth adapter with
several lines of python, you can also do all client operations without
having to use openobex directly or knowing any of low-level OBEX stuff.
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obex-data-server/obex-data-server-0.1.ebuild,v 1.3 2008/02/10 11:50:21 eva Exp $
EAPI=1
DESCRIPTION="a DBus service providing easy to use API for using OBEX"
HOMEPAGE="http://tadas.dailyda.com/blog/"
SRC_URI="http://tadas.dailyda.com/software/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86"
IUSE=""
RDEPEND="
dev-libs/glib:2
>=dev-libs/dbus-glib-0.7
>=net-wireless/bluez-libs-3.13
>=dev-libs/openobex-1.3"
DEPEND="
dev-util/pkgconfig
${RDEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/obex-data-server/obex-data-server-0.3.ebuild,v 1.2 2008/04/18 10:48:49 jer Exp $
EAPI=1
DESCRIPTION="a DBus service providing easy to use API for using OBEX"
HOMEPAGE="http://tadas.dailyda.com/blog/category/obex-data-server/"
SRC_URI="http://tadas.dailyda.com/software/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~sparc ~x86"
IUSE="debug"
RDEPEND="
dev-libs/glib:2
>=dev-libs/dbus-glib-0.7
>=net-wireless/bluez-libs-3.13
>=dev-libs/openobex-1.3"
DEPEND="
dev-util/pkgconfig
${RDEPEND}"
src_compile() {
econf $(use_enable debug)
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}