diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2005-10-20 00:45:25 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2005-10-20 00:45:25 +0000 |
commit | ecfee4b4a1cb45aaf1c8c5764d75f268a6f75ed0 (patch) | |
tree | 8c53c4b6318835a68c005ac7d33ba46ac08a548c /x11-apps/xfs | |
parent | Update SRC_URI to look in 7.0 RC1 location first, then RC0. Also only active ... (diff) | |
download | historical-ecfee4b4a1cb45aaf1c8c5764d75f268a6f75ed0.tar.gz historical-ecfee4b4a1cb45aaf1c8c5764d75f268a6f75ed0.tar.bz2 historical-ecfee4b4a1cb45aaf1c8c5764d75f268a6f75ed0.zip |
Bump for 7.0 RC1.
Package-Manager: portage-2.0.53_rc5
Diffstat (limited to 'x11-apps/xfs')
-rw-r--r-- | x11-apps/xfs/ChangeLog | 7 | ||||
-rw-r--r-- | x11-apps/xfs/files/digest-xfs-0.99.1 | 1 | ||||
-rw-r--r-- | x11-apps/xfs/xfs-0.99.1.ebuild | 43 |
3 files changed, 50 insertions, 1 deletions
diff --git a/x11-apps/xfs/ChangeLog b/x11-apps/xfs/ChangeLog index e0c23a49c3ed..98c52930a13f 100644 --- a/x11-apps/xfs/ChangeLog +++ b/x11-apps/xfs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-apps/xfs # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xfs/ChangeLog,v 1.7 2005/09/09 07:07:27 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xfs/ChangeLog,v 1.8 2005/10/20 00:45:22 spyderous Exp $ + +*xfs-0.99.1 (20 Oct 2005) + + 20 Oct 2005; Donnie Berkholz <spyderous@gentoo.org>; +xfs-0.99.1.ebuild: + Bump for 7.0 RC1. 09 Sep 2005; Donnie Berkholz <spyderous@gentoo.org>; +metadata.xml: Add metadata. diff --git a/x11-apps/xfs/files/digest-xfs-0.99.1 b/x11-apps/xfs/files/digest-xfs-0.99.1 new file mode 100644 index 000000000000..1791f180d2b1 --- /dev/null +++ b/x11-apps/xfs/files/digest-xfs-0.99.1 @@ -0,0 +1 @@ +MD5 3813c88fbd5ba67a412b9447e1e7508b xfs-0.99.1.tar.bz2 139098 diff --git a/x11-apps/xfs/xfs-0.99.1.ebuild b/x11-apps/xfs/xfs-0.99.1.ebuild new file mode 100644 index 000000000000..a3b2421bc540 --- /dev/null +++ b/x11-apps/xfs/xfs-0.99.1.ebuild @@ -0,0 +1,43 @@ +# 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.1.ebuild,v 1.1 2005/10/20 00:45:22 spyderous 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) + --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 +} |