summaryrefslogtreecommitdiff
path: root/dev-cpp/cppgir/cppgir-2.0_p20240928.ebuild
diff options
context:
space:
mode:
authorEsteve Varela Colominas <esteve.varela@gmail.com>2025-08-17 23:49:12 +0200
committerYixun Lan <dlan@gentoo.org>2025-08-18 01:20:40 +0000
commitccd2609f1492068c3c1db1cd09e2e091ea4a590a (patch)
tree364763c06b752234f6c362ba1d85a0f8e8d9ab3a /dev-cpp/cppgir/cppgir-2.0_p20240928.ebuild
parent18f9df4fe9adcba5a7d904ffcaf86e4b2a8fe34b (diff)
downloadgentoo-ccd2609f1492068c3c1db1cd09e2e091ea4a590a.tar.gz
gentoo-ccd2609f1492068c3c1db1cd09e2e091ea4a590a.tar.bz2
gentoo-ccd2609f1492068c3c1db1cd09e2e091ea4a590a.zip
dev-cpp/cppgir: Drop old
Signed-off-by: Esteve Varela Colominas <esteve.varela@gmail.com> Signed-off-by: Yixun Lan <dlan@gentoo.org>
Diffstat (limited to 'dev-cpp/cppgir/cppgir-2.0_p20240928.ebuild')
-rw-r--r--dev-cpp/cppgir/cppgir-2.0_p20240928.ebuild46
1 files changed, 0 insertions, 46 deletions
diff --git a/dev-cpp/cppgir/cppgir-2.0_p20240928.ebuild b/dev-cpp/cppgir/cppgir-2.0_p20240928.ebuild
deleted file mode 100644
index a155a15ef8f3..000000000000
--- a/dev-cpp/cppgir/cppgir-2.0_p20240928.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic
-
-DESCRIPTION="GObject-Introspection C++ binding wrapper generator"
-HOMEPAGE="https://gitlab.com/mnauw/cppgir"
-
-MY_PV="c8bb1c6017a6f7f2e47bd10543aea6b3ec69a966"
-SRC_URI="https://gitlab.com/mnauw/cppgir/-/archive/${MY_PV}/cppgir-${MY_PV}.tar.bz2 -> ${P}.tar.bz2"
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
- dev-libs/boost:=
- dev-libs/libfmt:=
-"
-DEPEND="${RDEPEND}
- dev-cpp/expected-lite
-"
-BDEPEND="
- doc? ( app-text/ronn-ng )
- test? ( dev-libs/glib )
-"
-
-src_configure() {
- local mycmakeargs=(
- -DBUILD_DOC=$(usex doc)
- -DBUILD_TESTING=$(usex test)
- -DBUILD_EXAMPLES=no
- -DINTERNAL_EXPECTED=no
- )
-
- append-cppflags \
- -UDEFAULT_GIRPATH \
- -DDEFAULT_GIRPATH="${EPREFIX}/usr/share:${EPREFIX}/usr/local/share"
-
- cmake_src_configure
-}