summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-09-13 20:45:10 +0200
committerManuel Rüger <mrueg@gentoo.org>2015-09-13 20:45:10 +0200
commite826118cc130de2a7e56d75431823f6d1ca2f17e (patch)
tree135a4e25d92b23bec1635fa811806e8421190dba /x11-misc
parentx11-misc/sw-notify-send: Remove old (diff)
downloadgentoo-e826118cc130de2a7e56d75431823f6d1ca2f17e.tar.gz
gentoo-e826118cc130de2a7e56d75431823f6d1ca2f17e.tar.bz2
gentoo-e826118cc130de2a7e56d75431823f6d1ca2f17e.zip
x11-misc/xcb: Remove old
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/xcb/xcb-2.4.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/x11-misc/xcb/xcb-2.4.ebuild b/x11-misc/xcb/xcb-2.4.ebuild
deleted file mode 100644
index f3fdf2a246c6..000000000000
--- a/x11-misc/xcb/xcb-2.4.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=2
-inherit toolchain-funcs
-
-DESCRIPTION="Marc Lehmann's improved X Cut Buffers"
-HOMEPAGE="http://oldhome.schmorp.de/marc/xcb.html"
-SRC_URI="http://oldhome.schmorp.de/marc/data/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 ~ppc x86"
-IUSE="motif"
-
-RDEPEND="x11-libs/libX11
- x11-libs/libXt
- x11-libs/libXaw
- x11-libs/libXext"
-DEPEND="${RDEPEND}
- x11-proto/xproto
- motif? ( >=x11-libs/motif-2.3:0 )"
-
-src_compile() {
- local gui libs
-
- if use motif; then
- gui="-DMOTIF"
- libs="-lXm -lXt -lX11"
- else
- gui="-DATHENA"
- libs="-lXaw -lXt -lXext -lX11"
- fi
-
- tc-export CC
- emake -f Makefile.std xcb Xcb.ad \
- CFLAGS="${CFLAGS} ${gui}" \
- GUI="${gui}" \
- LIBS="${libs}" \
- || die "emake failed"
-}
-
-src_install() {
- dobin xcb || die "dobin failed"
- newman xcb.man xcb.1
- insinto /usr/share/X11/app-defaults
- newins Xcb.ad Xcb || die "newins failed"
-}