2009-05-02 21:03:32 +00:00
|
|
|
# Template file for 'OpenRC'
|
|
|
|
pkgname=OpenRC
|
2009-12-04 04:50:12 +00:00
|
|
|
version=0.5.3
|
2009-12-05 02:37:44 +00:00
|
|
|
revision=1
|
2009-06-20 06:18:13 +00:00
|
|
|
wrksrc=openrc-${version}
|
|
|
|
distfiles="http://roy.marples.name/downloads/openrc/openrc-$version.tar.bz2"
|
2009-05-02 21:03:32 +00:00
|
|
|
build_style=gnu_makefile
|
|
|
|
short_desc="Universal init system"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2009-12-04 04:50:12 +00:00
|
|
|
checksum=1e3120906d93fb1746f00355eb42b2ee510daafdad79d7c0dea2eb48eea3ad43
|
2009-05-02 21:03:32 +00:00
|
|
|
long_desc="
|
|
|
|
OpenRC is a dependency based init system that works with the system
|
|
|
|
provided init program, normally /sbin/init. It is not a replacement for
|
|
|
|
/sbin/init. OpenRC is 100% compatible with Gentoo init scripts, which
|
|
|
|
means you can probably find one for the daemons you want to start in the
|
|
|
|
Gentoo Portage Tree. OpenRC also provides an init script that runs BSD
|
|
|
|
rc.d style scripts too, making it easy to port your BSD system to OpenRC."
|
|
|
|
|
2009-10-17 01:12:48 +00:00
|
|
|
keep_empty_dirs=yes
|
2009-05-02 21:03:32 +00:00
|
|
|
conf_files="/etc/rc.conf /etc/conf.d/bootmisc /etc/conf.d/consolefont
|
|
|
|
/etc/conf.d/dmesg /etc/conf.d/fsck /etc/conf.d/hostname /etc/conf.d/hwclock
|
2009-10-10 06:39:39 +00:00
|
|
|
/etc/conf.d/keymaps /etc/conf.d/local /etc/conf.d/locale
|
|
|
|
/etc/conf.d/localmount /etc/conf.d/modules /etc/conf.d/network
|
2009-10-21 12:08:44 +00:00
|
|
|
/etc/conf.d/urandom /etc/conf.d/staticroute /etc/inittab"
|
2009-12-05 02:37:44 +00:00
|
|
|
subpackages="$pkgname-devel"
|
2009-05-02 21:03:32 +00:00
|
|
|
|
|
|
|
Add_dependency full glibc
|
|
|
|
Add_dependency full psmisc
|
2009-05-04 23:09:01 +00:00
|
|
|
Add_dependency full sysvinit
|
2009-05-02 21:34:49 +00:00
|
|
|
|
2009-10-21 09:26:13 +00:00
|
|
|
pre_build()
|
2009-05-02 21:34:49 +00:00
|
|
|
{
|
2009-05-07 16:09:01 +00:00
|
|
|
# Install the "locale" service
|
|
|
|
cp ${FILESDIR}/locale.rc ${wrksrc}/init.d/locale.in
|
|
|
|
|
2009-05-02 21:46:06 +00:00
|
|
|
# Fix path for kbd stuff.
|
|
|
|
for f in init.d/consolefont.in conf.d/consolefont; do
|
2009-10-05 16:20:40 +00:00
|
|
|
sed -i -e "s|/usr/share|/lib/kbd|g" ${wrksrc}/${f}
|
2009-05-02 21:46:06 +00:00
|
|
|
done
|
2009-05-02 21:34:49 +00:00
|
|
|
}
|
2009-05-04 23:09:01 +00:00
|
|
|
|
|
|
|
post_install()
|
|
|
|
{
|
2009-05-07 12:08:56 +00:00
|
|
|
install -D -m755 ${wrksrc}/support/sysvinit/inittab \
|
|
|
|
${DESTDIR}/etc/inittab
|
2009-10-05 16:20:40 +00:00
|
|
|
install -D -m644 ${FILESDIR}/$pkgname.logrotate \
|
|
|
|
${DESTDIR}/etc/logrotate.d/OpenRC
|
2009-10-10 06:39:39 +00:00
|
|
|
install -D -m644 ${FILESDIR}/locale.confd \
|
|
|
|
${DESTDIR}/etc/conf.d/locale
|
2009-11-27 02:35:43 +00:00
|
|
|
#
|
|
|
|
# Create a fake rc.d directory with links to mimic old sysvinit
|
|
|
|
# runlevel stuff.
|
|
|
|
install -d ${DESTDIR}/etc/init.d/fake-rc.d
|
|
|
|
for f in 0 1 2 3 4 5 6; do
|
|
|
|
cd ${DESTDIR}/etc/init.d && ln -s fake-rc.d rc${f}.d
|
|
|
|
done
|
2009-05-04 23:09:01 +00:00
|
|
|
}
|