summaryrefslogtreecommitdiff
path: root/app-mobilephone
diff options
context:
space:
mode:
authorktrace <coyote@bks.tv>2018-01-23 15:20:55 +0300
committerMichał Górny <mgorny@gentoo.org>2018-03-22 17:17:31 +0100
commitdc665a9c4f792b5d5fb544471a0bb4e5516fbfe3 (patch)
tree14a76ed45e18515ad7f5df241db20efea94cf29b /app-mobilephone
parentdf4d8da6daa40321673155e46f99646822ef79c7 (diff)
downloadgentoo-dc665a9c4f792b5d5fb544471a0bb4e5516fbfe3.tar.gz
gentoo-dc665a9c4f792b5d5fb544471a0bb4e5516fbfe3.tar.xz
app-mobilephone/gammu: remove old 1.38.4
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-mobilephone')
-rw-r--r--app-mobilephone/gammu/Manifest1
-rw-r--r--app-mobilephone/gammu/gammu-1.38.4.ebuild63
2 files changed, 0 insertions, 64 deletions
diff --git a/app-mobilephone/gammu/Manifest b/app-mobilephone/gammu/Manifest
index fd86072a1cd..cc56d659cba 100644
--- a/app-mobilephone/gammu/Manifest
+++ b/app-mobilephone/gammu/Manifest
@@ -1,4 +1,3 @@
DIST gammu-1.33.0.tar.bz2 6535262 BLAKE2B 4a5c22dccfec22f1c4158ac3a98376c7c987769fb1a09e727d47ade735b2643d47a6b19aa43aa274be385fc0bbd8460443870211aee3b37bffc88780a607630b SHA512 42252a36c7ad5a2945fcf23fcb1b5bb0201d27e8830d3b4a7f4c36bf00f12f5a0f7797e17098bda8d526d4ddc3b1808c0786dfae0feef9424516fa68bf2f3f1e
DIST gammu-1.36.8.tar.bz2 2095289 BLAKE2B 1c04bc1add840c337499d15c2086155bfb122018cf5b1c6b4c9537a9491f59f57c67b0816c5d3d142fa1d68d6801d3d03468cbde0c228ebd6ebe6830e1f9099f SHA512 4ac86b783570db0105e18ef05fc9408e85d1234ab7de720a232a416ad867d3afbe89db7ed408c06d57f8bb38a2e272f86386f11a89e56f1d750da9e9b579ba09
-DIST gammu-1.38.4.tar.bz2 2132767 BLAKE2B 0780ff2694f7afbe63c5b4c9102005e5f0494932929b635c0252aed52c12e3a3158674b6c49db45459606e77abbe75d8ffb24d52d91ca215b8fae8ba927b7ea6 SHA512 1d4a8e34d3bbc7e4d9797db1acd9be2e92eaec57a87e856ebd168444228a1e89942e69baf1569a0e5645dadea6947338d9e55ae96f632885e95ec1ce74d121ff
DIST gammu-1.38.5.tar.bz2 2138742 BLAKE2B 7a72a7b67475f73dc3580d618dee379893dc82d7950599b41ed1f7efb5fecd80af3a42a0cc0742cb73d055a4a778eaa4d42037c5be74d9b61a4b53cfe827bd00 SHA512 89a6b3872dfd9b4ebaf8b0f51265fec7e7ef72a42178f85846c7f52d926e96b3087bbe6650c4246e66c2624822021c5803b1bb6ca8ac90f3e5c109a644c0ee80
diff --git a/app-mobilephone/gammu/gammu-1.38.4.ebuild b/app-mobilephone/gammu/gammu-1.38.4.ebuild
deleted file mode 100644
index a7afec787ad..00000000000
--- a/app-mobilephone/gammu/gammu-1.38.4.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils eutils
-
-DESCRIPTION="A tool to handle your cellular phone"
-HOMEPAGE="https://wammu.eu/gammu/"
-SRC_URI="https://dl.cihar.com/${PN}/releases/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="bluetooth curl dbi debug irda mysql nls odbc postgres usb"
-
-COMMON_DEPEND="
- dev-libs/glib:2=
- virtual/libgudev:=
- bluetooth? ( net-wireless/bluez:= )
- curl? ( net-misc/curl:= )
- dbi? ( >=dev-db/libdbi-0.8.3:= )
- mysql? ( virtual/mysql:= )
- postgres? ( dev-db/postgresql:= )
- usb? ( virtual/libusb:1= )
-"
-DEPEND="
- ${COMMON_DEPEND}
- irda? ( virtual/os-headers )
- nls? ( sys-devel/gettext )
- odbc? ( dev-db/unixODBC )
-"
-RDEPEND="
- ${COMMON_DEPEND}
- dev-util/dialog
- virtual/libiconv
-"
-PATCHES=(
- "${FILESDIR}/${P}-smsd.patch"
-)
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_BLUETOOTH=$(usex bluetooth)
- -DWITH_CURL=$(usex curl)
- -DWITH_Gettext=$(usex nls)
- -DWITH_Iconv=$(usex nls)
- -DWITH_IRDA=$(usex irda)
- -DWITH_LibDBI=$(usex dbi)
- -DWITH_MySQL=$(usex mysql)
- -DWITH_ODBC=$(usex odbc)
- -DWITH_Postgres=$(usex postgres)
- -DWITH_USB=$(usex usb)
- -DBUILD_SHARED_LIBS=ON
- -DINSTALL_DOC_DIR="share/doc/${PF}"
- )
- cmake-utils_src_configure
-}
-
-src_test() {
- addwrite "/run/lock/LCK..bar"
- MAKEOPTS+=" -j1" LD_LIBRARY_PATH="${BUILD_DIR}/libgammu" cmake-utils_src_test
-}