www-misc/remwharead: Delete old ebuild.
This commit is contained in:
parent
e33bd31927
commit
0b3af759cc
|
@ -1,2 +1 @@
|
|||
DIST remwharead-0.10.0.tar.gz 58104 BLAKE2B 2c63ec71578c5073af14f0925e3a7dcf7750ff95f8e6ba521dddf6608624404ab5d15d43fb3070ac3a47b4cd7783a82aa0cd50cc5fe6c2b9028f2d198265bfdf SHA512 4759c8b4a2d44968ede3ef2e89f9942eac51ec01ec266959a32ffdde8d429fb0f5e618ebb0a8fd8eb9358aeeff7e93ebec5a2e1c886dfb37941b9dfb232c164e
|
||||
DIST remwharead-0.9.2.tar.gz 56663 BLAKE2B 07892a147b4a09292932f2359d3546cd1c7653909a0e912ab48cceb8bd6490c4d8d8a587b46aa46db0d6e13573c590d906e7cdc0d097565c9717e36d75eded38 SHA512 ff10f40c0aee2ccfd0e0db802c49cd69250161f91b24e0a001bb69d2aee14e16819dfda191cdd7d453052a2e1df5cf546d815e9f7de6b007a9aa4fd41534a6fc
|
||||
|
|
|
@ -1,81 +0,0 @@
|
|||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit cmake
|
||||
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
inherit git-r3
|
||||
fi
|
||||
|
||||
DESCRIPTION="Saves URIs of things you want to remember in a database."
|
||||
HOMEPAGE="https://schlomp.space/tastytea/remwharead"
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
EGIT_REPO_URI="https://schlomp.space/tastytea/remwharead.git"
|
||||
else
|
||||
SRC_URI="https://schlomp.space/tastytea/remwharead/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
fi
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
if [[ "${PV}" == "9999" ]]; then
|
||||
KEYWORDS=""
|
||||
else
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
fi
|
||||
IUSE="doc +firefox rofi test"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-cpp/curlpp-0.8.1
|
||||
dev-libs/libxdg-basedir
|
||||
dev-db/vsqlite++
|
||||
dev-libs/icu
|
||||
rofi? ( x11-misc/rofi )
|
||||
"
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
dev-util/cmake
|
||||
app-text/asciidoc
|
||||
dev-cpp/popl
|
||||
test? ( dev-cpp/catch )
|
||||
doc? ( app-doc/doxygen )
|
||||
"
|
||||
|
||||
if [[ "${PV}" != "9999" ]]; then
|
||||
S="${WORKDIR}/${PN}"
|
||||
fi
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs=(
|
||||
-DWITH_TESTS="$(usex test)"
|
||||
-DWITH_MOZILLA="$(usex firefox)"
|
||||
)
|
||||
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cmake_src_compile
|
||||
|
||||
if use doc; then
|
||||
./build_doc.sh || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_install() {
|
||||
if use doc; then
|
||||
HTML_DOCS="doc/html/*"
|
||||
fi
|
||||
|
||||
use rofi && dobin scripts/remwharead-rofi || die
|
||||
|
||||
cmake_src_install
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
if use firefox; then
|
||||
elog "The firefox useflag only installs the wrapper needed for the" \
|
||||
"extension, not the extension itself."
|
||||
fi
|
||||
}
|
Reference in New Issue
Block a user