diff options
author | Michael Januszewski <spock@gentoo.org> | 2006-01-07 17:56:32 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2006-01-07 17:56:32 +0000 |
commit | b38b4430775eea60d51515796308f5e871a54e1d (patch) | |
tree | aba1f20a5609ea93368aa7e092710e33662c15af | |
parent | Added a simple hack to make adplug compile with libbinio 1.4+. (diff) | |
download | gentoo-2-b38b4430775eea60d51515796308f5e871a54e1d.tar.gz gentoo-2-b38b4430775eea60d51515796308f5e871a54e1d.tar.bz2 gentoo-2-b38b4430775eea60d51515796308f5e871a54e1d.zip |
Version bump.
(Portage version: 2.1_pre3-r1)
-rw-r--r-- | dev-cpp/libbinio/ChangeLog | 9 | ||||
-rw-r--r-- | dev-cpp/libbinio/files/digest-libbinio-1.4 | 1 | ||||
-rw-r--r-- | dev-cpp/libbinio/libbinio-1.4.ebuild | 21 |
3 files changed, 29 insertions, 2 deletions
diff --git a/dev-cpp/libbinio/ChangeLog b/dev-cpp/libbinio/ChangeLog index 6bafd57905b2..ac35ebd15142 100644 --- a/dev-cpp/libbinio/ChangeLog +++ b/dev-cpp/libbinio/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-cpp/libbinio -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libbinio/ChangeLog,v 1.10 2005/09/19 21:36:59 halcy0n Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libbinio/ChangeLog,v 1.11 2006/01/07 17:56:32 spock Exp $ + +*libbinio-1.4 (07 Jan 2006) + + 07 Jan 2006; Michał Januszewski <spock@gentoo.org> +libbinio-1.4.ebuild: + Version bump. 19 Sep 2005; Mark Loeser <halcy0n@gentoo.org> metadata.xml: Adding to cpp herd. diff --git a/dev-cpp/libbinio/files/digest-libbinio-1.4 b/dev-cpp/libbinio/files/digest-libbinio-1.4 new file mode 100644 index 000000000000..a20afce723f5 --- /dev/null +++ b/dev-cpp/libbinio/files/digest-libbinio-1.4 @@ -0,0 +1 @@ +MD5 517ded8c7ce9b3de0f84b1db74a2ebda libbinio-1.4.tar.bz2 307664 diff --git a/dev-cpp/libbinio/libbinio-1.4.ebuild b/dev-cpp/libbinio/libbinio-1.4.ebuild new file mode 100644 index 000000000000..9e7272a29f41 --- /dev/null +++ b/dev-cpp/libbinio/libbinio-1.4.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libbinio/libbinio-1.4.ebuild,v 1.1 2006/01/07 17:56:32 spock Exp $ + +DESCRIPTION="Binary I/O stream class library" +HOMEPAGE="http://libbinio.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64 ~sparc" +IUSE="" +DEPEND="virtual/libc" + +src_compile() { + econf || die + emake || die "emake failed" +} + +src_install() { + make DESTDIR=${D} install || die +} |