summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'x11-misc/ipager/ipager-1.1.0-r1.ebuild')
-rw-r--r--x11-misc/ipager/ipager-1.1.0-r1.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/x11-misc/ipager/ipager-1.1.0-r1.ebuild b/x11-misc/ipager/ipager-1.1.0-r1.ebuild
deleted file mode 100644
index 6727bc321a0c..000000000000
--- a/x11-misc/ipager/ipager-1.1.0-r1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="A themable desktop pager for fluxbox and other window managers"
-HOMEPAGE="http://www.useperl.ru/ipager/index.en.html"
-SRC_URI="http://www.useperl.ru/ipager/src/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="xinerama"
-
-RDEPEND="media-libs/imlib2[X]
- x11-libs/libXmu
- xinerama? ( x11-libs/libXinerama )"
-DEPEND="${RDEPEND}
- dev-util/scons"
-
-PATCHES=( "${FILESDIR}/${P}-scons_imlib2.patch"
- "${FILESDIR}/${P}-scons_flags.patch"
- "${FILESDIR}/${P}-gcc43.patch"
- "${FILESDIR}/${P}-gcc47.patch" )
-
-src_compile() {
- CONFIG_OPTS="xinerama=false"
- use xinerama && CONFIG_OPTS="${CONFIG_OPTS} xinerama=true"
- # FYI: Passing debug=true only adds -ggdb inside the SConstruct
-
- scons \
- --cache-disable \
- PREFIX="/usr" \
- ${CONFIG_OPTS} \
- || die "scons configure failed"
-}
-
-src_install() {
- scons \
- --cache-disable \
- PREFIX="/usr" \
- DESTDIR="${D}" \
- install \
- || die "scons install failed"
- dodoc ToDo ChangeLog README
- dodoc themes/*.conf
-}