Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-cpp/rudiments
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/rudiments/ChangeLog,v 1.12 2008/04/04 01:10:49 halcy0n Exp $
*rudiments-0.31 (04 Apr 2008)
04 Apr 2008; Mark Loeser
-rudiments-0.26.3.ebuild, -rudiments-0.27.ebuild, -rudiments-0.29.ebuild,
+rudiments-0.31.ebuild:
Version bump and a bit of a cleanup; bug #212613
*rudiments-0.30 (26 May 2007)
26 May 2007; MATSUU Takuto
Version bumped.
22 Feb 2007; Piotr Jaroszyński
Transition to Manifest2.
18 Oct 2006; Tiziano Müller
Version bump. Ebuild cleanup: new dependencies, USE-flags debug,ssl and pcre
added.
20 Feb 2006; Mark Loeser
rudiments-0.27.ebuild:
Remove DEPEND on virtual/libc
19 Sep 2005; Mark Loeser
Adding to cpp herd.
*rudiments-0.27 (01 Jan 2005)
01 Jan 2005; MATSUU Takuto
Version bumped.
17 Jul 2004; David Holm
Added to ~ppc.
*rudiments-0.26.3 (17 Jul 2004)
17 Jul 2004; MATSUU Takuto
Version bumped.
Added to ~amd64.
Fixed some problems.
13 Mar 2004; Michael Sterrett
rudiments-0.25.1.ebuild:
Don't assign default to S; header fix
*rudiments-0.25.1 (19 Oct 2003)
19 Oct 2003; Lisa Seelye
Add this package, to satisify bug 20780
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
DIST rudiments-0.30.tar.gz 615266 RMD160 7b3e2482d6558330c82bcb8b33e3a38d5328591b SHA1 49a599eae53db62e131f6d5ddb3350a3dd078c36 SHA256 b3a565b86f5fb7e5b4ea5268e21ee8ea5955a9d2f0536d58e1820d0b897f1868
DIST rudiments-0.31.tar.gz 834376 RMD160 ed47a6da6a2dd56e6b11799a62836f3729fe46dd SHA1 df999cdcd29697627937c3202681fe2879a65bb5 SHA256 c35b69e918bad831e17edbab866c22eff11d083531bf0e15dafddb003f9c16d2
EBUILD rudiments-0.30.ebuild 1012 RMD160 6b82b22474208a874a8616d545246613817fbce9 SHA1 2b72bd12e2b81ede0ccab20b44b5d56326d7d821 SHA256 28930de4b78338f3b179b10e0f04fa4017f7e7f402536dd03b13ea0d2d5c9e91
EBUILD rudiments-0.31.ebuild 1013 RMD160 1da17b93a3f17678e40fa1889f4c0cca0e3540fe SHA1 89411374aba290bfd14ba74753f237449e11b132 SHA256 7371acc2c869306c9ffc0d50dcae74f87808020c88a5625937a89d3dac0678b9
MISC ChangeLog 1701 RMD160 e3e11a9ac942a96fe65a5fa40e730c09395100ef SHA1 8d3e43ca8c9de461ce27b00cc2026918a33746fe SHA256 5a09db53339e19898a8338543672d05391a707fedf1e5deb2b5121f4af4a9530
MISC metadata.xml 499 RMD160 bd58147e4c17dde7c776c387b006536336e3c44b SHA1 daf0a088a9fe1b82ba41e5fdc535d4f5086af10e SHA256 2c53b462a5e326173cad13db9d76277e572dcb39ce04190dc632504d0dccd541
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.9 (GNU/Linux)
iEYEARECAAYFAkf1gCEACgkQCRZPokWLroSRLgCdFH8sr+2S5tUI/TEYgtHETouw
0/sAn12ckslshBnD6ywCe7bEUL/R59Zx
=Bf02
-----END PGP SIGNATURE-----
Rudiments is an Open Source C++ class library providing base classes
for things such as daemons, clients and servers, and wrapper classes
for the standard C functions for things like such as regular
expressions, semaphores and signal handling.
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/rudiments/rudiments-0.30.ebuild,v 1.1 2007/05/26 02:01:34 matsuu Exp $
DESCRIPTION="C++ class library for daemons, clients and servers"
HOMEPAGE="http://rudiments.sourceforge.net/"
SRC_URI="mirror://sourceforge/rudiments/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE="debug pcre ssl"
DEPEND="pcre? ( dev-libs/libpcre )
ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}"
src_compile() {
# It's a buggy configure-script
# We can only disable, but not enable
local options
use pcre || options="${options} --disable-pcre"
use ssl || options="${options} --disable-ssl"
econf \
$(use_enable debug) \
${options} \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" docdir="${D}/usr/share/doc/${PF}/html" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/rudiments/rudiments-0.31.ebuild,v 1.1 2008/04/04 01:10:49 halcy0n Exp $
DESCRIPTION="C++ class library for daemons, clients and servers"
HOMEPAGE="http://rudiments.sourceforge.net/"
SRC_URI="mirror://sourceforge/rudiments/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~x86 ~amd64 ~ppc"
IUSE="debug pcre ssl"
DEPEND="pcre? ( dev-libs/libpcre )
ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}"
src_compile() {
# It's a buggy configure-script
# We can only disable, but not enable
local options
use pcre || options="${options} --disable-pcre"
use ssl || options="${options} --disable-ssl"
econf \
$(use_enable debug) \
${options} \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" docdir="${D}/usr/share/doc/${PF}/html" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README TODO
}