diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-11-16 17:25:13 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-12-01 19:44:24 +0100 |
commit | 78094cd9dade958d6edf81b94d8cfd1d751e74c9 (patch) | |
tree | 43929e34b2dea83e972adcf74666b2eed4084800 /trinity-apps | |
parent | 22633e5ad7fdc1cef19639752e8e08360468f755 (diff) | |
download | tde-packaging-gentoo-78094cd9dade958d6edf81b94d8cfd1d751e74c9.tar.gz tde-packaging-gentoo-78094cd9dade958d6edf81b94d8cfd1d751e74c9.zip |
trinity-apps/kscope: Various fixes
- General ebuild style
- Missing metadata.xml, Copyright
- Invalid SLOT value (due to need-trinity() in wrong place...)
- MissingPackageRevision
- Sort DEPENDs
- local mycmakeargs
Package-Manager: Portage-3.0.9, Repoman-3.0.2
RepoMan-Options: --force
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'trinity-apps')
-rw-r--r-- | trinity-apps/kscope/kscope-9999.ebuild | 29 | ||||
-rw-r--r-- | trinity-apps/kscope/metadata.xml | 4 |
2 files changed, 18 insertions, 15 deletions
diff --git a/trinity-apps/kscope/kscope-9999.ebuild b/trinity-apps/kscope/kscope-9999.ebuild index 9a9c38fc..75cd6196 100644 --- a/trinity-apps/kscope/kscope-9999.ebuild +++ b/trinity-apps/kscope/kscope-9999.ebuild @@ -1,34 +1,39 @@ +# Copyright 1999-2020 Gentoo Authors # Copyright 2020 The Trinity Desktop Project # Distributed under the terms of the GNU General Public License v2 EAPI="7" + TRINITY_MODULE_TYPE="applications" TRINITY_EXTRAGEAR_PACKAGING="yes" TRINITY_HANDBOOK="optional" TRINITY_LANGS="de zh_CN" - inherit trinity-base-2 -DESCRIPTION="A TDE front-end to Cscope" -HOMEPAGE="http://trinitydesktop.org/" +DESCRIPTION="TDE front-end to Cscope" +HOMEPAGE="https://trinitydesktop.org/" + +need-trinity + LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="${TRINITY_VER}" -RDEPEND="=trinity-base/kate-${PV} +RDEPEND=" media-gfx/graphviz + dev-util/cscope dev-util/ctags - dev-util/cscope" -DEPEND="${RDEPEND} + ~trinity-base/kate-${PV} +" +DEPEND="${RDEPEND}" +BDEPEND=" + sys-devel/bison sys-devel/flex - sys-devel/bison" - -need-trinity - -SLOT="${TRINITY_VER}" +" src_configure() { - mycmakeargs=( + local mycmakeargs=( -DBUILD_TRANSLATIONS=ON ) diff --git a/trinity-apps/kscope/metadata.xml b/trinity-apps/kscope/metadata.xml index 61b4108b..7a38bb90 100644 --- a/trinity-apps/kscope/metadata.xml +++ b/trinity-apps/kscope/metadata.xml @@ -1,7 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> <pkgmetadata> - <maintainer type="person"> - <name>Chris</name> - </maintainer> + <!-- maintainer-needed --> </pkgmetadata> |