File: sawfish-1.11.90.ebuild

package info (click to toggle)
sawfish 1%3A1.11.90-1.2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, trixie
  • size: 26,204 kB
  • sloc: lisp: 30,914; ansic: 14,583; sh: 11,203; makefile: 562; python: 91; perl: 7
file content (67 lines) | stat: -rw-r--r-- 1,462 bytes parent folder | download | duplicates (3)
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
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

# This is *not* an official ebuild of any distributions.
# After the configure script is run, required package versions are
# filled in. But other than that, there's no guarantee this is a
# correct ebuild.

inherit eutils

DESCRIPTION="Extensible window manager using a Lisp-based scripting language"
HOMEPAGE="http://sawfish.wikia.com/"
SRC_URI="mirror://sourceforge/sawmill/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
IUSE="gnome nls pango imlib"

RDEPEND=">=x11-libs/rep-gtk-0.90.7
	>=dev-libs/librep-0.92.3
	>=x11-libs/gtk+-2.24.0
	imlib? <=x11-libs/imlib-1.9
	pango? >=x11-libs/pango-1.8.0
	nls? ( sys-devel/gettext )"

DEPEND="${RDEPEND}
	>=dev-util/pkgconfig-0.12.0"

src_compile() {

	if use gnome; then
		set -- "$@" \
			--with-gnome-prefix=/usr
	fi

	if ! use pango; then
		set -- "$@" \
			--without-pango
	fi

	if ! use nls; then
		set -- "$@" \
			--disable-nls

	fi

	if use imlib; then
		set -- "$@" \
			--without-gdk-pixbuf
	else	set -- "$@" \
			--with-gdk-pixbuf
	fi

	econf "$@" || die "configure failed"

	emake || die "make failed"

}

src_install() {

	emake DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS ChangeLog FAQ doc/NEWS README TODO doc/OPTIONS README.IMPORTANT doc/KEYBINDINGS doc/USERDOC COPYING COPYING.SOUNDS doc/AUTOSTART doc/XSettings

}