diff options
author | 2014-11-04 02:58:51 +0000 | |
---|---|---|
committer | 2014-11-04 02:58:51 +0000 | |
commit | 1cc8c3f6a1c279ec701c3c4c4874d2dfde92d10b (patch) | |
tree | 0e8a16414cfda5aac6a06236ae4e62b977d3f6dd /dev-libs/libhome | |
parent | Fix repoman warnings and upgrade EAPI to something sane (diff) | |
download | gentoo-2-1cc8c3f6a1c279ec701c3c4c4874d2dfde92d10b.tar.gz gentoo-2-1cc8c3f6a1c279ec701c3c4c4874d2dfde92d10b.tar.bz2 gentoo-2-1cc8c3f6a1c279ec701c3c4c4874d2dfde92d10b.zip |
More cleanups
(Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-libs/libhome')
-rw-r--r-- | dev-libs/libhome/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libhome/libhome-0.10.2-r1.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/dev-libs/libhome/ChangeLog b/dev-libs/libhome/ChangeLog index d1c483c24b77..b5edf491da54 100644 --- a/dev-libs/libhome/ChangeLog +++ b/dev-libs/libhome/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libhome # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhome/ChangeLog,v 1.16 2014/11/04 02:56:32 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhome/ChangeLog,v 1.17 2014/11/04 02:58:51 patrick Exp $ + + 04 Nov 2014; Patrick Lauer <patrick@gentoo.org> libhome-0.10.2-r1.ebuild: + More cleanups *libhome-0.10.2-r1 (04 Nov 2014) diff --git a/dev-libs/libhome/libhome-0.10.2-r1.ebuild b/dev-libs/libhome/libhome-0.10.2-r1.ebuild index 4b61a0dd39ab..cf7d413c5d54 100644 --- a/dev-libs/libhome/libhome-0.10.2-r1.ebuild +++ b/dev-libs/libhome/libhome-0.10.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhome/libhome-0.10.2-r1.ebuild,v 1.1 2014/11/04 02:56:32 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhome/libhome-0.10.2-r1.ebuild,v 1.2 2014/11/04 02:58:51 patrick Exp $ EAPI=5 @@ -37,7 +37,7 @@ src_prepare() { eautoreconf } -src_compile() { +src_configure() { econf --without-db3 \ $(use_with berkdb db4 $(db_includedir)) \ $(use_with ldap) \ @@ -45,6 +45,9 @@ src_compile() { $(use_with pam) \ $(use_with postgres pgsql) \ || die "econf failed" +} + +src_compile() { emake || die "emake failed" } |