blob: de565960fe9b192dd85b090a798d49b019570c0c (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-wm/sawfish/sawfish-1.3.20060816.ebuild,v 1.1 2006/08/16 08:08:07 truedfx Exp $
# detect cvs snapshots; fex. 1.3.20040120
[[ $PV == *.[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9] ]]
(( snapshot = !$? ))
inherit eutils
DESCRIPTION="Extensible window manager using a Lisp-based scripting language"
HOMEPAGE="http://sawmill.sourceforge.net/"
if (( snapshot )); then
SRC_URI="mirror://gentoo/${P}.tar.bz2"
else
SRC_URI="mirror://sourceforge/sawmill/${P}.tar.gz"
fi
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"
IUSE="gnome esd nls audiofile pango"
DEPEND=">=dev-util/pkgconfig-0.12.0
>=x11-libs/rep-gtk-0.17
>=dev-libs/librep-0.16
>=x11-libs/gtk+-2.0.8
audiofile? ( >=media-libs/audiofile-0.2.3 )
esd? ( >=media-sound/esound-0.2.23 )
nls? ( sys-devel/gettext )"
RDEPEND="${DEPEND}"
if (( snapshot )); then
DEPEND="${DEPEND}
sys-devel/automake
sys-devel/autoconf"
S="${WORKDIR}/${PN}"
fi
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/libtool.patch"
# Fix configure warning about being unable
# to compile with <Xdbe.h> and <Xrandr.h>
epatch "${FILESDIR}"/sawfish-configure-warning.patch
# Fix utf8 with xft #121772
epatch "${FILESDIR}"/sawfish-xft-menu-utf8.patch
# Fix KDE menus
epatch "${FILESDIR}"/sawfish-kde-menus.patch
}
src_compile() {
# Make sure we include freetype2 headers before freetype1 headers,
# else Xft2 borks, <azarah@gentoo.org> (13 Dec 2002)
export C_INCLUDE_PATH="${C_INCLUDE_PATH}:/usr/include/freetype2"
export CPLUS_INCLUDE_PATH="${CPLUS_INCLUDE_PATH}:/usr/include/freetype2"
# If this is a snapshot then we need to create the autoconf stuff
if (( snapshot )); then
aclocal || die "aclocal failed"
autoconf || die "autoconf failed"
fi
set -- \
--disable-themer \
--with-gdk-pixbuf \
$(use_with audiofile) \
$(use_with esd) \
$(use_with pango)
if use gnome; then
set -- "$@" \
--with-gnome-prefix=/usr \
--enable-gnome-widgets \
--enable-capplet
else
set -- "$@" \
--disable-gnome-widgets \
--disable-capplet
fi
if ! use nls; then
# Use a space because configure script reads --enable-linguas="" as
# "install everything"
# Don't use --disable-linguas, because that means --enable-linguas="no",
# which means "install Norwegian translations"
set -- "$@" --enable-linguas=" "
elif [[ "${LINGUAS+set}" == "set" ]]; then
strip-linguas -i po
set -- "$@" --enable-linguas=" ${LINGUAS} "
else
set -- "$@" --enable-linguas=""
fi
econf "$@" || die "configure failed"
# The following two lines allow sawfish to compile with gcc 2.95
# (see bug 18294)
sed -i -e 's:REP_CFLAGS=:REP_CFLAGS=-I/usr/include/freetype2 :' Makedefs
# Parallel build doesn't work
emake -j1 || die "make failed"
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS BUGS ChangeLog DOC FAQ NEWS README THANKS TODO OPTIONS
newdoc src/ChangeLog ChangeLog.src
}
|