ssuominen 14/05/12 09:32:14 Modified: davl-1.2.4.ebuild ChangeLog Log: Convert from EAPI1 to EAPI5 and respect CC from environment instead of using plain "cc" (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Revision Changes Path 1.2 sys-fs/davl/davl-1.2.4.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/davl/davl-1.2.4.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/davl/davl-1.2.4.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/davl/davl-1.2.4.ebuild?r1=1.1&r2=1.2 Index: davl-1.2.4.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-fs/davl/davl-1.2.4.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- davl-1.2.4.ebuild 14 Jan 2012 18:24:19 -0000 1.1 +++ davl-1.2.4.ebuild 12 May 2014 09:32:14 -0000 1.2 @@ -1,9 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/davl/davl-1.2.4.ebuild,v 1.1 2012/01/14 18:24:19 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/davl/davl-1.2.4.ebuild,v 1.2 2014/05/12 09:32:14 ssuominen Exp $ -EAPI=1 -inherit eutils +EAPI=5 +inherit eutils toolchain-funcs DESCRIPTION="Visualizes the fragmentation status of ext2/3 filesystems" HOMEPAGE="http://davl.sourceforge.net/" @@ -16,16 +16,18 @@ RDEPEND=">=x11-libs/gtk+-2.6:2" DEPEND="${RDEPEND} ->=sys-fs/e2fsprogs-1.38" + >=sys-fs/e2fsprogs-1.38" -src_unpack() { - unpack ${A} - cd "${S}" +src_prepare() { epatch "${FILESDIR}"/${PN}-1.2.1-asneeded.patch } +src_compile() { + emake CC="$(tc-getCC)" +} + src_install() { - dobin src/cdavl/cdavl src/gdavl/gdavl + dobin src/{cdavl/cdavl,gdavl/gdavl} dodoc README doman doc/*.8 } 1.7 sys-fs/davl/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/davl/ChangeLog?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/davl/ChangeLog?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/davl/ChangeLog?r1=1.6&r2=1.7 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-fs/davl/ChangeLog,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- ChangeLog 14 Jan 2012 18:24:19 -0000 1.6 +++ ChangeLog 12 May 2014 09:32:14 -0000 1.7 @@ -1,6 +1,10 @@ # ChangeLog for sys-fs/davl -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/davl/ChangeLog,v 1.6 2012/01/14 18:24:19 armin76 Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/davl/ChangeLog,v 1.7 2014/05/12 09:32:14 ssuominen Exp $ + + 12 May 2014; Samuli Suominen <[email protected]> davl-1.2.4.ebuild: + Convert from EAPI1 to EAPI5 and respect CC from environment instead of using + plain "cc" *davl-1.2.4 (14 Jan 2012) @@ -24,4 +28,3 @@ +davl-1.2.1.ebuild: Initial import, bug 120182, thanks to Paul Bredbury <brebs at sent dot com> for the initial ebuild -
