diff options
author | 2008-03-10 02:05:13 +0000 | |
---|---|---|
committer | 2008-03-10 02:05:13 +0000 | |
commit | aa1721f9edf25704c626fd86c073d0152410b051 (patch) | |
tree | 28b587bfec83ad4213e105d95192d4179546249c /x11-apps/xfs | |
parent | Drop to ~mips due to unstable deps (diff) | |
download | historical-aa1721f9edf25704c626fd86c073d0152410b051.tar.gz historical-aa1721f9edf25704c626fd86c073d0152410b051.tar.bz2 historical-aa1721f9edf25704c626fd86c073d0152410b051.zip |
Bump.
Package-Manager: portage-2.1.4.4
Diffstat (limited to 'x11-apps/xfs')
-rw-r--r-- | x11-apps/xfs/ChangeLog | 5 | ||||
-rw-r--r-- | x11-apps/xfs/xfs-1.0.6.ebuild | 45 |
2 files changed, 49 insertions, 1 deletions
diff --git a/x11-apps/xfs/ChangeLog b/x11-apps/xfs/ChangeLog index 3e8d345e4369..cc3d0e0311cd 100644 --- a/x11-apps/xfs/ChangeLog +++ b/x11-apps/xfs/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-apps/xfs # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xfs/ChangeLog,v 1.50 2008/01/31 03:46:00 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xfs/ChangeLog,v 1.51 2008/03/10 01:57:30 dberkholz Exp $ + + 10 Mar 2008; Donnie Berkholz <dberkholz@gentoo.org>; ChangeLog: + Bump. 31 Jan 2008; Donnie Berkholz <dberkholz@gentoo.org>; -xfs-1.0.4.ebuild, -xfs-1.0.4-r1.ebuild: diff --git a/x11-apps/xfs/xfs-1.0.6.ebuild b/x11-apps/xfs/xfs-1.0.6.ebuild new file mode 100644 index 000000000000..6cf3bf2fbf48 --- /dev/null +++ b/x11-apps/xfs/xfs-1.0.6.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xfs/xfs-1.0.6.ebuild,v 1.1 2008/03/10 01:57:30 dberkholz Exp $ + +# Must be before x-modular eclass is inherited +#SNAPSHOT="yes" + +inherit x-modular + +DESCRIPTION="X font server" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="ipv6" + +RDEPEND="x11-apps/ttmkfdir + x11-libs/libFS + x11-libs/libXfont" +DEPEND="${RDEPEND} + x11-proto/fontsproto" + +CONFIGURE_OPTIONS="$(use_enable ipv6) --libdir=/etc" + +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 +} |