summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2022-12-18 12:20:35 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2022-12-18 16:49:51 +0100
commiteaa9003fed83c285eadb515d7fa8108fd6f6fc47 (patch)
tree565fc860f2ed5ff7e83484c729d5c46ba49823c0
parentdev-lang/python-exec: Bump to 2.4.10 (diff)
downloadgentoo-eaa9003fed83c285eadb515d7fa8108fd6f6fc47.tar.gz
gentoo-eaa9003fed83c285eadb515d7fa8108fd6f6fc47.tar.bz2
gentoo-eaa9003fed83c285eadb515d7fa8108fd6f6fc47.zip
app-mobilephone/gammu: drop 1.41.0
Closes: https://bugs.gentoo.org/886633 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--app-mobilephone/gammu/Manifest1
-rw-r--r--app-mobilephone/gammu/gammu-1.41.0.ebuild61
2 files changed, 0 insertions, 62 deletions
diff --git a/app-mobilephone/gammu/Manifest b/app-mobilephone/gammu/Manifest
index 471863d305f6..6a177effc321 100644
--- a/app-mobilephone/gammu/Manifest
+++ b/app-mobilephone/gammu/Manifest
@@ -1,2 +1 @@
-DIST gammu-1.41.0.tar.bz2 2167233 BLAKE2B 4b0bf77246cc6a07a52457cff2bae44e63ebfe2715cb0c0b7d89c3d6352bb2df4cd5e7fd9b62d316e316fb1e73108fe561e030b7444eccd601cd0d2541b9f0e9 SHA512 f2c2534d3827216bf015607431938e0cf2524d5f2c670a5f76bb5ab7928962d22de981bbbf2dfa7af833c7903b60a775242048210bac6c35b1a9ee7668db4543
DIST gammu-1.42.0.tar.bz2 2193946 BLAKE2B 074f870624efbd28aaf9ecb445063ff7ec070cd1498c00a2e93a8842ed2afd5a0bc6475d950885eec883bed158528dda0588809c2d55ef78c83f0eed3e1b4aff SHA512 f440df357578ce7f5ddd17f2f0f6405b4dacbca3e5da65a469f3f1e92c71bf899a7ef0977438c803ed9b1d7d15324d4a43bd9d97d986119a522243e2e6304971
diff --git a/app-mobilephone/gammu/gammu-1.41.0.ebuild b/app-mobilephone/gammu/gammu-1.41.0.ebuild
deleted file mode 100644
index 67a45a3dae6a..000000000000
--- a/app-mobilephone/gammu/gammu-1.41.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-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"
-
-DEPEND="
- dev-libs/glib:2=
- dev-libs/libgudev:=
- virtual/libiconv
- bluetooth? ( net-wireless/bluez:= )
- curl? ( net-misc/curl:= )
- dbi? ( >=dev-db/libdbi-0.8.3:= )
- irda? ( virtual/os-headers )
- mysql? ( dev-db/mysql-connector-c:= )
- nls? ( sys-devel/gettext )
- odbc? ( dev-db/unixODBC )
- postgres? ( dev-db/postgresql:= )
- usb? ( virtual/libusb:1= )
-"
-
-RDEPEND="
- ${DEPEND}
- dev-util/dialog
-"
-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)
- -DINSTALL_DOC_DIR="share/doc/${PF}"
- )
- cmake_src_configure
-}
-
-src_test() {
- addwrite "/run/lock/LCK..bar"
- LD_LIBRARY_PATH="${BUILD_DIR}/libgammu" cmake_src_test -j1
-}
-
-src_install() {
- cmake_src_install
- docompress -x /usr/share/doc/${PF}/examples/
-}