blob: 1f195ba1d4b272ef71f7f7be546cf26563be018d (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-apps/xfs/xfs-0.99.0-r1.ebuild,v 1.4 2005/10/19 03:00:44 geoman Exp $
# Must be before x-modular eclass is inherited
SNAPSHOT="yes"
inherit x-modular
DESCRIPTION="X.Org xfs application"
KEYWORDS="~arm ~mips ~s390 ~sparc ~x86"
IUSE="ipv6"
RDEPEND="x11-libs/libFS
x11-libs/libXfont"
DEPEND="${RDEPEND}
x11-proto/fontsproto"
CONFIGURE_OPTIONS="$(use_enable ipv6)"
pkg_setup() {
enewgroup xfs 33
enewuser xfs 33 -1 /etc/X11/fs xfs
}
src_unpack() {
x-modular_unpack_source
x-modular_patch_source
sed -i -e "s:^configdir =.*:configdir = \$(sysconfdir)/X11/fs:g" \
${S}/Makefile.am
x-modular_reconf_source
}
src_install() {
x-modular_src_install
insinto /etc/X11/fs
newins ${FILESDIR}/xfs.config config
newinitd ${FILESDIR}/xfs.start xfs
newconfd ${FILESDIR}/xfs.conf.d xfs
}
|