diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-09-28 20:48:58 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-09-28 20:48:58 +0000 |
commit | 6bb1db85ebcbd0d8a240f902a2d65f4128e888b9 (patch) | |
tree | e691199e07f8eba19b340934b9c5d818281edc43 /app-emulation/lib765 | |
parent | Revbump due to last change. As correctly pointed out on -dev. (diff) | |
download | gentoo-2-6bb1db85ebcbd0d8a240f902a2d65f4128e888b9.tar.gz gentoo-2-6bb1db85ebcbd0d8a240f902a2d65f4128e888b9.tar.bz2 gentoo-2-6bb1db85ebcbd0d8a240f902a2d65f4128e888b9.zip |
Version bump. Respect LDFLAGS (bug #337311).
(Portage version: 2.2_rc86/cvs/Linux i686)
Diffstat (limited to 'app-emulation/lib765')
-rw-r--r-- | app-emulation/lib765/ChangeLog | 9 | ||||
-rw-r--r-- | app-emulation/lib765/lib765-0.4.2.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/app-emulation/lib765/ChangeLog b/app-emulation/lib765/ChangeLog index 53324b5ce012..e8cf26cfb64b 100644 --- a/app-emulation/lib765/ChangeLog +++ b/app-emulation/lib765/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emulation/lib765 -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/lib765/ChangeLog,v 1.8 2006/09/02 16:10:11 blubb Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/lib765/ChangeLog,v 1.9 2010/09/28 20:48:58 jer Exp $ + +*lib765-0.4.2 (28 Sep 2010) + + 28 Sep 2010; Jeroen Roovers <jer@gentoo.org> +lib765-0.4.2.ebuild: + Version bump. Respect LDFLAGS (bug #337311). 02 Sep 2006; <blubb@gentoo.org> lib765-0.3.1.1.ebuild: stable on amd64 diff --git a/app-emulation/lib765/lib765-0.4.2.ebuild b/app-emulation/lib765/lib765-0.4.2.ebuild new file mode 100644 index 000000000000..ce9de3363753 --- /dev/null +++ b/app-emulation/lib765/lib765-0.4.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/lib765/lib765-0.4.2.ebuild,v 1.1 2010/09/28 20:48:58 jer Exp $ + +EAPI="2" + +inherit autotools + +DESCRIPTION="Floppy controller emulator" +HOMEPAGE="http://www.seasip.demon.co.uk/Unix/LibDsk/" +SRC_URI="http://www.seasip.demon.co.uk/Unix/LibDsk/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +IUSE="" +KEYWORDS="~amd64 ~ppc ~x86" + +DEPEND="app-emulation/libdsk" + +src_prepare() { + eautoreconf +} + +src_configure() { + econf --with-libdsk || die +} + +src_install() { + make install DESTDIR=${D} || die + dodoc ChangeLog doc/765.txt +} |