ChangeLog

# ChangeLog for dev-libs/argtable
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/ChangeLog,v 1.19 2008/06/08 10:59:03 angelos Exp $

08 Jun 2008; Christoph Mende -argtable-2.7.ebuild:
Removed old

*argtable-2.9 (14 May 2008)

14 May 2008; Christoph Mende +argtable-2.9.ebuild:
Version bump

09 Mar 2008; Ferris McCormick argtable-2.8.ebuild:
Add ~sparc for testing --- Bug #212857 --- thanks to Aaron Mavrinac.

06 Feb 2008; nixnut argtable-2.8.ebuild:
stable on ppc wrt bug #208427

02 Feb 2008; Christoph Mende
-files/argtable-2.4-fix-makefile.diff, -argtable-2.4.ebuild:
Remove old

01 Feb 2008; Christian Faulhammer argtable-2.8.ebuild:
stable x86, bug 208427

01 Feb 2008; Christoph Mende argtable-2.8.ebuild:
Stable on amd64, bug #208427

14 Jan 2008; Tobias Scherbaum argtable-2.7.ebuild:
ppc. stable

*argtable-2.8 (02 Jan 2008)

02 Jan 2008; Christoph Mende +argtable-2.8.ebuild:
Version bump

31 Aug 2007; Christoph Mende argtable-2.7.ebuild:
Stable on amd64

*argtable-2.7 (01 Aug 2007)

01 Aug 2007; Christoph Mende metadata.xml,
argtable-2.4.ebuild, +argtable-2.7.ebuild:
Taking over maintainership
Version bump to 2.7
argtable-2.4 stable on amd64

19 Mar 2007; Bryan Østergaard metadata.xml:
Remove ka0ttic from metadata.xml due to retirement.

04 Feb 2007; Diego Pettenò ChangeLog:
Regenerate digest in Manifest2 format.

01 Jan 2006; Luis Medinas argtable-2.4.ebuild:
Added ~amd64 keyword.

03 Jul 2005; Aaron Walker argtable-2.4.ebuild:
Fix LICENSE (should've been LGPL-2).

05 Jun 2005; Michael Hanselmann argtable-2.4.ebuild:
Stable on ppc.

06 May 2005; Aaron Walker argtable-2.4.ebuild:
Stable on x86.

04 May 2005; David Holm argtable-2.4.ebuild:
Added to ~ppc.

*argtable-2.4 (01 Feb 2005)

01 Feb 2005; Aaron Walker +metadata.xml,
+files/argtable-2.4-fix-makefile.diff, +argtable-2.4.ebuild:
Initial commit for bug 56504.

Manifest

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

DIST argtable2-8.tar.gz 3364556 RMD160 80956b43ea75fdb97b6644ca42a11b5f9e131a16 SHA1 099582467d3aca2fe7a03cd6e348cc6e88f5edbb SHA256 258f395f6fc6ea835b828ba1ab83008a201a3c261f1eb47e57f982e33b85d998
DIST argtable2-9.tar.gz 3364642 RMD160 22388af6d79ac98292d450ba8d3044de130fdafe SHA1 78cc8676ee90cfae3bbcf62a4427d42ffdc33acf SHA256 6d43739df542b1afe00e6792c32523465300db8fc9691389e68a9239b225d683
EBUILD argtable-2.8.ebuild 947 RMD160 6bada03a4e1e6a7e96d1bafefac324ec07bf24fb SHA1 e2aabb56781fffe7ffb5203eb5521275fb843356 SHA256 ec24ba44b603af97f08e71f796e506ca2eeecf932f4a7c001cff438ab04b95b8
EBUILD argtable-2.9.ebuild 951 RMD160 da56768b793999ebfb02a76007f7e5bc3fe03eaf SHA1 41560588e5dcdb701a1fa53af9d9aba79212421f SHA256 52b12a421f80a272f806cfa07a7f104e20ecce5f848207eebdebcfca4ce79c15
MISC ChangeLog 2408 RMD160 58c296f2560de4c301074e01801abd9a4383bb0e SHA1 fa3b06456082a4310ed1666326205c4fce96bdde SHA256 f7ed66419e4c046f28935716b62ca1166e85216f9b1de64136569a438673f3b6
MISC metadata.xml 258 RMD160 6d4c6c4e7c021a3fc82145a078f8e113eb6f521a SHA1 02004f2821b6ac3f69abfbfdafc9744008535258 SHA256 ee85021b7ae93a2e1442a570b114d3c9bf2e577c16b7b1b409914983d5d55485
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)

iEYEARECAAYFAkhLu74ACgkQKhnDs22gwa/sUACdHjqUyXjUcbA+KcRarB0PkgsD
15sAn0H2QqTaGGrsiHj/XdaD3zKY9RRo
=Cunn
-----END PGP SIGNATURE-----

argtable-2.8.ebuild

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/argtable-2.8.ebuild,v 1.5 2008/03/09 19:35:55 fmccor Exp $

inherit versionator

DESCRIPTION="An ANSI C library for parsing GNU-style command-line options with minimal fuss"
HOMEPAGE="http://argtable.sourceforge.net/"

MY_PV="$(replace_version_separator 1 '-')"
MY_P=${PN}${MY_PV}

SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE="doc debug examples"

S="${WORKDIR}/${MY_P}"

src_compile() {
econf $(use_enable debug) || die
emake || die
}

src_install() {
make DESTDIR="${D}" install || die

dodoc AUTHORS ChangeLog NEWS README

if use doc ; then
cd "${S}/doc"
dohtml *.html *.gif
dodoc *.pdf *.ps
fi

if use examples ; then
cd "${S}/example"
docinto examples
dodoc Makefile *.[ch] README.txt
fi
}

argtable-2.9.ebuild

# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/argtable/argtable-2.9.ebuild,v 1.1 2008/05/14 00:03:22 angelos Exp $

inherit versionator

DESCRIPTION="An ANSI C library for parsing GNU-style command-line options with minimal fuss"
HOMEPAGE="http://argtable.sourceforge.net/"

MY_PV="$(replace_version_separator 1 '-')"
MY_P=${PN}${MY_PV}

SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"

LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="doc debug examples"

S="${WORKDIR}/${MY_P}"

src_compile() {
econf $(use_enable debug) || die
emake || die
}

src_install() {
make DESTDIR="${D}" install || die

dodoc AUTHORS ChangeLog NEWS README

if use doc ; then
cd "${S}/doc"
dohtml *.html *.gif
dodoc *.pdf *.ps
fi

if use examples ; then
cd "${S}/example"
docinto examples
dodoc Makefile *.[ch] README.txt
fi
}

metadata.xml




no-herd

angelos@gentoo.org
Christoph Mende