summaryrefslogtreecommitdiff
path: root/app-mobilephone/sobexsrv
diff options
context:
space:
mode:
authorAndrew Savchenko <bircoph@gentoo.org>2018-11-12 13:40:51 +0300
committerAndrew Savchenko <bircoph@gentoo.org>2018-11-12 13:41:34 +0300
commit352ff55a1404ddec200a3e853540e12caa1ad781 (patch)
tree9ed8c86623b3a439d3cada5a38a321a6a679c716 /app-mobilephone/sobexsrv
parent7fade7242b38879e5d3d4a9312076cb9e2c0b662 (diff)
downloadgentoo-352ff55a1404ddec200a3e853540e12caa1ad781.tar.gz
gentoo-352ff55a1404ddec200a3e853540e12caa1ad781.tar.xz
app-mobilephone/sobexsrv: remove old version
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'app-mobilephone/sobexsrv')
-rw-r--r--app-mobilephone/sobexsrv/sobexsrv-1.0.1-r1.ebuild93
1 files changed, 0 insertions, 93 deletions
diff --git a/app-mobilephone/sobexsrv/sobexsrv-1.0.1-r1.ebuild b/app-mobilephone/sobexsrv/sobexsrv-1.0.1-r1.ebuild
deleted file mode 100644
index 14cde193148..00000000000
--- a/app-mobilephone/sobexsrv/sobexsrv-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1 toolchain-funcs user
-
-MY_P="${P/_pre/pre}"
-
-DESCRIPTION="Scripting/Secure OBEX Server (for BlueZ Linux)"
-SRC_URI="http://www.mulliner.org/bluetooth/${MY_P}.tar.gz
- https://dev.gentoo.org/~joker/${P}-fix64.patch"
-HOMEPAGE="http://www.mulliner.org/bluetooth/sobexsrv.php"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86"
-IUSE="gtk"
-
-DEPEND="
- dev-libs/openobex
- net-wireless/bluez
- gtk? ( ${PYTHON_DEPS} )"
-RDEPEND="${DEPEND}
- gtk? (
- ${PYTHON_DEPS}
- >=dev-python/pygtk-2.2
- )"
-REQUIRED_USE="
- gtk? ( ${PYTHON_REQUIRED_USE} )"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${DISTDIR}/${P}"-fix64.patch
- "${FILESDIR}/${P}"-openobex16.patch
-)
-
-pkg_setup() {
- use gtk && python-single-r1_pkg_setup
-
- enewgroup sobexsrv
- enewuser sobexsrv -1 -1 /var/spool/sobexsrv sobexsrv
-}
-
-src_prepare() {
- default
-
- sed -e 's:/usr/man/man8:/usr/share/man/man8:' \
- -e 's/install: all/install:/' \
- -i Makefile || die
-
- sed -e 's/^CFLAGS =/CFLAGS +=/' \
- -e 's/^CC =/CC ?=/' \
- -e 's/$(CC) $(CFLAGS)/$(CC) $(LDFLAGS) $(CFLAGS)/' \
- -i src/Makefile || die
-}
-
-src_compile() {
- tc-export CC
- emake -C src
-}
-
-src_install() {
- default
- dodoc AUTHOR CONFIG SECURITY THANKS
-
- if use gtk; then
- python_doscript "${D}/usr/bin/sobexsrv_handler"
- newdoc "${S}/scripts/test" sobexsrv_handler.sample_script
- else
- rm "${D}/usr/bin/sobexsrv_handler" || die
- fi
-
- newinitd "${FILESDIR}/init.d_sobexsrv" sobexsrv
- newconfd "${FILESDIR}/conf.d_sobexsrv" sobexsrv
-
- keepdir /var/spool/sobexsrv
- fowners sobexsrv:sobexsrv /var/spool/sobexsrv
-}
-
-pkg_postinst() {
- elog
- elog "/usr/bin/sobexsrv is *NOT* installed set-uid root by"
- elog "default. suid is required for the chroot option (-R)."
- elog
- elog "Execute the following commands to enable suid:"
- elog
- elog "chown root:sobexsrv /usr/bin/sobexsrv"
- elog "chmod 4710 /usr/bin/sobexsrv"
- elog
-}