diff options
-rw-r--r-- | x11-apps/xfs/xfs-1.0.1.ebuild | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/x11-apps/xfs/xfs-1.0.1.ebuild b/x11-apps/xfs/xfs-1.0.1.ebuild index 956976ebcbea..665ad45ac153 100644 --- a/x11-apps/xfs/xfs-1.0.1.ebuild +++ b/x11-apps/xfs/xfs-1.0.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-apps/xfs/xfs-1.0.1.ebuild,v 1.1 2005/12/23 10:38:45 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xfs/xfs-1.0.1.ebuild,v 1.2 2006/01/10 02:19:39 vapier Exp $ # Must be before x-modular eclass is inherited #SNAPSHOT="yes" @@ -8,15 +8,16 @@ inherit x-modular DESCRIPTION="X.Org xfs application" -KEYWORDS="~amd64 ~arm ~mips ~s390 ~sparc ~x86" + +KEYWORDS="~amd64 ~arm ~mips ~s390 ~sh ~sparc ~x86" IUSE="ipv6" + RDEPEND="x11-libs/libFS x11-libs/libXfont" DEPEND="${RDEPEND} x11-proto/fontsproto" -CONFIGURE_OPTIONS="$(use_enable ipv6) - --libdir=/etc" +CONFIGURE_OPTIONS="$(use_enable ipv6) --libdir=/etc" pkg_setup() { enewgroup xfs 33 @@ -28,7 +29,7 @@ src_unpack() { x-modular_patch_source sed -i -e "s:^configdir =.*:configdir = \$(sysconfdir)/X11/fs:g" \ - ${S}/Makefile.am + "${S}"/Makefile.am x-modular_reconf_source } @@ -37,7 +38,7 @@ 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 + newins "${FILESDIR}"/xfs.config config + newinitd "${FILESDIR}"/xfs.start xfs + newconfd "${FILESDIR}"/xfs.conf.d xfs } |