summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarri Nieminen <moikkis@gmail.com>2017-02-13 12:19:18 +0200
committerDavid Seifert <soap@gentoo.org>2017-02-13 14:00:48 +0100
commit75c0151cca5479de4ddc11aa2a9296cd94c4820b (patch)
tree3ce730ee157aca777126d26aa6d0413633f1f167 /x11-misc/sprop
parentx11-misc/sselp: EAPI bump 0 -> 6 and update live ebuild (diff)
downloadgentoo-75c0151cca5479de4ddc11aa2a9296cd94c4820b.tar.gz
gentoo-75c0151cca5479de4ddc11aa2a9296cd94c4820b.tar.bz2
gentoo-75c0151cca5479de4ddc11aa2a9296cd94c4820b.zip
x11-misc/sprop: Drop old
Package-Manager: Portage-2.3.3, Repoman-2.3.1 Closes: https://github.com/gentoo/gentoo/pull/3945
Diffstat (limited to 'x11-misc/sprop')
-rw-r--r--x11-misc/sprop/sprop-0.1.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/x11-misc/sprop/sprop-0.1.ebuild b/x11-misc/sprop/sprop-0.1.ebuild
deleted file mode 100644
index 655dcb7bc8c4..000000000000
--- a/x11-misc/sprop/sprop-0.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit toolchain-funcs
-
-DESCRIPTION="a simple X property utility"
-HOMEPAGE="http://tools.suckless.org/x/sprop"
-SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
- x11-libs/libX11
-"
-DEPEND="
- ${RDEPEND}
- x11-proto/xproto
-"
-src_prepare() {
- sed -i \
- -e '/^CC/d' \
- -e '/^CFLAGS/s| =| +=|;s| -Os||g' \
- -e '/^LDFLAGS/s|= -s|+=|g' \
- config.mk || die
-
- sed -i \
- -e 's|@${CC}|$(CC)|g' \
- Makefile || die
-
- tc-export CC
-}
-
-src_compile() { emake sprop; }
-
-src_install() {
- dobin ${PN}
- doman ${PN}.1
-}