diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-11 19:05:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-11 19:05:11 +0000 |
commit | 1c6e387b1b38117bcfd50ba84afd78f367d82e76 (patch) | |
tree | 72d7c892412bc0e2c66c5e1ab83482b24576ea12 /sys-apps/initng/initng-0.6.7.ebuild | |
parent | arm/hppa/ppc64/s390/sh love (diff) | |
download | gentoo-2-1c6e387b1b38117bcfd50ba84afd78f367d82e76.tar.gz gentoo-2-1c6e387b1b38117bcfd50ba84afd78f367d82e76.tar.bz2 gentoo-2-1c6e387b1b38117bcfd50ba84afd78f367d82e76.zip |
Version bump #135904 by Thomas Kear.
(Portage version: 2.1)
Diffstat (limited to 'sys-apps/initng/initng-0.6.7.ebuild')
-rw-r--r-- | sys-apps/initng/initng-0.6.7.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/sys-apps/initng/initng-0.6.7.ebuild b/sys-apps/initng/initng-0.6.7.ebuild new file mode 100644 index 000000000000..55436130ae8c --- /dev/null +++ b/sys-apps/initng/initng-0.6.7.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/initng/initng-0.6.7.ebuild,v 1.1 2006/06/11 19:05:11 vapier Exp $ + +DESCRIPTION="A next generation init replacement" +HOMEPAGE="http://initng.org/" +SRC_URI="http://download.initng.org/initng/v${PV:0:3}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +IUSE="" + +RDEPEND="" +DEPEND="${RDEPEND} + >=dev-util/cmake-2.1" + +plugin_warning() { + if [[ -z ${INITNG_PLUGINS} ]] ; then + einfo "If you want to customize the list of initng plugins, please" + einfo "set the INITNG_PLUGINS variable in your make.conf." + einfo "See http://www.initng.org/wiki/Documents_Plugins for a list of" + einfo "valid plugins for you to choose from." + fi +} + +pkg_setup() { + plugin_warning +} + +src_compile() { + local x default_opts valid_opts cmake_opts="" + valid_opts=$(sed -n '/^OPTION/ s:.*(\([[:alpha:]_]*\).*:\1:p' CMakeLists.txt) + default_opts=$(sed -n '/^OPTION(.*ON)$/ s:.*(\([[:alpha:]_]*\).*:\1:p' CMakeLists.txt) + INITNG_PLUGINS=$(echo ${INITNG_PLUGINS} | tr '[:lower:]' '[:upper:]') + INITNG_PLUGINS=${INITNG_PLUGINS:-${default_opts}} + for x in ${valid_opts} ; do + if hasq ${x} ${INITNG_PLUGINS} || hasq ${x#BUILD_} ${INITNG_PLUGINS} ; then + cmake_opts="${cmake_opts} -D${x}=ON" + else + cmake_opts="${cmake_opts} -D${x}=OFF" + fi + done + cmake -DCMAKE_INSTALL_PREFIX=/ ${cmake_opts} || die + emake || die +} + +src_install() { + emake install DESTDIR="${D}" || die + find "${D}" -name '*.a' -exec rm "{}" \; + dodoc AUTHORS ChangeLog NEWS README TODO +} + +pkg_postinst() { + plugin_warning + einfo "Remember to add init=/sbin/initng in your grub or lilo config" + einfo " in order to use initng. Happy testing!" +} |