x11-misc/tint2: Remove old
authorHarri Nieminen <moikkis@gmail.com>
Tue, 28 Mar 2017 18:23:52 +0000 (21:23 +0300)
committerDavid Seifert <soap@gentoo.org>
Sat, 1 Apr 2017 10:22:51 +0000 (12:22 +0200)
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4319

x11-misc/tint2/Manifest
x11-misc/tint2/metadata.xml
x11-misc/tint2/tint2-0.12.3.ebuild [deleted file]

index 7a6660f32aa0ca9be058f2edfbb2deab6a8b81fb..77ae5af232ecc8c682eda803162ef0c91bff372b 100644 (file)
@@ -1,2 +1 @@
 DIST tint2-0.12.12.tar.gz 469724 SHA256 e4c6ffb67eb1242f19d94037b072602bc751ac71ca61352dea3465168e643450 SHA512 10a1f42df6a66f6e092d69cd0ea3d900dcef57b06391206d950a1d7f576a880829bb44d00828a030d3172184db238a22f205169c12cc32cf42c6321d61929a8c WHIRLPOOL 197b92a93eb0368708824159bde41bd81143d0423a1f9ab83b2af4a11b3e3055a40481b9746f095e10cca84f7d772237a92d06bf267761021be308c0b3b5d553
-DIST tint2-0.12.3.tar.gz 251977 SHA256 655cde38f4d358d69f3628f722c7da7768e193769ac876cc24b59f328bcd3d6c SHA512 8022895617905446bc01e548ece9df63d32ae1ef3bafc2de2c79fb2c0e91ab78d036e8c9165ea4d4224dd70edb510266bbea47baf382abbf27a275b60b7d1465 WHIRLPOOL 057ba74074d5e013d9c882a6cbef1bd75f80b1eba857bda933c5936511b1d2b9a519c770b1a2f31360774232e03962ca47dea73ad5f4ef21bcd6530d2c123662
index 25ea024dffb48819299d2bd9179f96ce6ee370d3..3187164d5a913c4889646ee70e7ab8f0949d3d61 100644 (file)
@@ -5,7 +5,6 @@
                <email>amynka@gentoo.org</email>
        </maintainer>
        <use>
-               <flag name="examples">Install tint2rc examples</flag>
                <flag name="battery">Enable battery status plugin</flag>
                <flag name="tint2conf">Build/Install tint2conf as well</flag>
        </use>
diff --git a/x11-misc/tint2/tint2-0.12.3.ebuild b/x11-misc/tint2/tint2-0.12.3.ebuild
deleted file mode 100644 (file)
index 8f076c0..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit cmake-utils gnome2-utils
-
-DESCRIPTION="tint2 is a lightweight panel/taskbar for Linux."
-HOMEPAGE="https://gitlab.com/o9000/tint2"
-SRC_URI="https://gitlab.com/o9000/${PN}/repository/archive.tar.gz?ref=v${PV} -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="battery examples svg startup-notification tint2conf"
-
-DEPEND="
-       dev-libs/glib:2
-       svg? ( gnome-base/librsvg:2 )
-       >=media-libs/imlib2-1.4.2[X,png]
-       x11-libs/cairo
-       x11-libs/pango[X]
-       tint2conf? ( x11-libs/gtk+:2 )
-       x11-libs/libX11
-       x11-libs/libXcomposite
-       x11-libs/libXdamage
-       x11-libs/libXinerama
-       >=x11-libs/libXrandr-1.3
-       x11-libs/libXrender
-       startup-notification? ( x11-libs/startup-notification )
-       "
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${PN}-v${PV}"
-
-PATCHES=( "${FILESDIR}/${PV}-no-hardcode-update-icon-cache.patch" )
-
-src_unpack() {
-       default
-       # Chop off the SHA1 gitlab's automated tarballs inject
-       mv "${PN}-v${PV}-"* "${PN}-v${PV}"
-}
-
-src_configure() {
-       local mycmakeargs=(
-               $(cmake-utils_use_enable battery BATTERY)
-               $(cmake-utils_use_enable examples EXAMPLES)
-               $(cmake-utils_use_enable tint2conf TINT2CONF)
-               $(cmake-utils_use_enable startup-notification SN)
-               $(cmake-utils_use_enable svg RSVG)
-       )
-
-       cmake-utils_src_configure
-}
-
-src_install() {
-       cmake-utils_src_install
-}
-
-pkg_postinst() {
-       gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-       gnome2_icon_cache_update
-}