blob: b59c99d78e29209007859ffa7eb67d3311361a09 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/mkxf86config/mkxf86config-0.9.2.ebuild,v 1.1 2005/11/30 22:23:44 wolf31o2 Exp $
inherit eutils
IUSE=""
DESCRIPTION="xorg-x11 configuration builder for Gentoo"
SRC_URI="http://dev.gentoo.org/~wolf31o2/sources/${PN}/${P}.tar.bz2"
HOMEPAGE="http://www.gentoo.org"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND=""
RDEPEND="sys-apps/hwsetup
virtual/libc"
src_install() {
insinto /etc/X11
doins xorg.conf.in
exeinto /usr/sbin
doexe mkxf86config.sh
newinitd ${FILESDIR}/mkxf86config-init mkxf86config
}
|