diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-05-10 13:24:24 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-05-10 13:24:24 +0000 |
commit | 3c6f117af8d7932c6d002257b19b06ad23a78a94 (patch) | |
tree | 6ccefa11cbe308da4c1d38580b3238c5bad1a8fa /sys-cluster/corosync/corosync-1.3.1.ebuild | |
parent | Drop xvmc support same as upstream did in git. (diff) | |
download | historical-3c6f117af8d7932c6d002257b19b06ad23a78a94.tar.gz historical-3c6f117af8d7932c6d002257b19b06ad23a78a94.tar.bz2 historical-3c6f117af8d7932c6d002257b19b06ad23a78a94.zip |
Cleanup and use eapi4.
Package-Manager: portage-2.2.0_alpha32/cvs/Linux x86_64
Diffstat (limited to 'sys-cluster/corosync/corosync-1.3.1.ebuild')
-rw-r--r-- | sys-cluster/corosync/corosync-1.3.1.ebuild | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys-cluster/corosync/corosync-1.3.1.ebuild b/sys-cluster/corosync/corosync-1.3.1.ebuild index 311788b7c5dc..dcef3c125cea 100644 --- a/sys-cluster/corosync/corosync-1.3.1.ebuild +++ b/sys-cluster/corosync/corosync-1.3.1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/corosync-1.3.1.ebuild,v 1.1 2011/04/29 09:53:24 ultrabug Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/corosync/corosync-1.3.1.ebuild,v 1.2 2011/05/10 13:24:24 scarabeus Exp $ -EAPI=3 +EAPI=4 inherit base autotools @@ -29,7 +29,7 @@ PATCHES=( "${FILESDIR}/${PN}-docs.patch" ) -DOCS=( "README.recovery" "README.devmap" "SECURITY" "TODO" "AUTHORS" ) +DOCS=( README.recovery README.devmap SECURITY TODO AUTHORS ) src_prepare() { base_src_prepare @@ -38,7 +38,7 @@ src_prepare() { src_configure() { # appends lib to localstatedir automatically - # FIXME: install both static and shared libs + # FIXME: install just shared libs --disable-static does not work econf \ --localstatedir=/var \ --docdir=/usr/share/doc/${PF} \ @@ -48,11 +48,11 @@ src_configure() { } src_install() { - base_src_install - newinitd "${FILESDIR}"/${PN}.initd ${PN} || die + default + newinitd "${FILESDIR}"/${PN}.initd ${PN} insinto /etc/logrotate.d - newins "${FILESDIR}"/${PN}.logrotate ${PN} || die + newins "${FILESDIR}"/${PN}.logrotate ${PN} keepdir /var/lib/corosync } |