blob: e4d21c4ff390846b12cbfdd8661e9b971e90f728 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/xosd/xosd-2.2.14-r1.ebuild,v 1.17 2007/10/07 15:54:46 dirtyepic Exp $
WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit eutils autotools
DESCRIPTION="Library for overlaying text/glyphs in X-Windows X-On-Screen-Display plus binary for sending text from command line"
HOMEPAGE="https://sourceforge.net/projects/libxosd/"
SRC_URI="mirror://debian/pool/main/x/xosd/${PN}_${PV}.orig.tar.gz
mirror://debian/pool/main/x/xosd/${PN}_${PV}-1.diff.gz
http://digilander.libero.it/dgp85/gentoo/${PN}-gentoo-m4-1.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
IUSE="xinerama"
DEPEND="x11-libs/libX11
x11-libs/libXt
x11-proto/xextproto
x11-libs/libXext
x11-proto/xproto
xinerama? ( x11-proto/xineramaproto )"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-m4.patch
epatch "${DISTDIR}"/${PN}_${PV}-1.diff.gz
AT_M4DIR="${WORKDIR}/m4" eautoreconf
}
src_compile() {
econf \
$(use_enable xinerama) \
--disable-new-xmms \
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS COPYING README TODO
}
|