Changeset - bcdd954dc9a6
[Not reviewed]
default
1 1 1
Nathan Brink (binki) - 15 years ago 2010-05-29 03:23:23
ohnobinki@ohnopublishing.net
Revbump to liblist-2.3.1.
(Portage version: 2.2_rc67-r7/hg/Linux x86_64)
(Signed Manifest commit)
2 files changed with 27 insertions and 7 deletions:
0 comments (0 inline, 0 general)
dev-libs/liblist/Manifest
Show inline comments
 
DIST liblist-2.2.1.tar.bz2 248527 RMD160 0a377943d0cfae441cb102a203a83a9a4e3c5c87 SHA1 3c850d1acfb8a98245fbabdde350652e4eea0648 SHA256 a899f22cd6fdbb7867cf658732e2d1042e1fe01989c0f4b0e0fdb148c1c0d7c6
 
EBUILD liblist-2.2.1.ebuild 1138 RMD160 d5742d2629c4e95016d2b3499b72698ff206b9bf SHA1 4e2541f8a147d88e9eb7cbb16e7d8226f2b94e6c SHA256 773c67156ed9b5a1baf5ebc6828cbd503366f29b1860d188787f11643f3aa443
 
-----BEGIN PGP SIGNED MESSAGE-----
 
Hash: SHA1
 

	
 
DIST liblist-2.3.1.tar.bz2 257253 RMD160 f42ea23c7a6ba46e8361e3c3fb06852308abc212 SHA1 377bb4a18ab04eae938265226c9d73ac24bb0876 SHA256 a956e9c48a5aadecafdc3916eacf2b6cff1eb23e1c40a3119bba2f2a1b4d82a3
 
EBUILD liblist-2.3.1.ebuild 1359 RMD160 a042064ab3ed2b4a9ae84357102e605abcf281d1 SHA1 30233374929ae6aee348752202dd33f1e17e0856 SHA256 5c0d1a2414a369b23e2eb8e0d5fb747ebf3d1ada8c465aa292ac79ce4287695b
 
EBUILD liblist-9999.ebuild 1231 RMD160 7a98a5ee9f636b08c2f14d49781da63535015c3a SHA1 682a874f9495d01e2adac08cf1c39558fd7c59b1 SHA256 605219a0f4e05d57914795cbfba6e8694d106a7877b31ece00c86a6bc56cb3eb
 
MISC ChangeLog 1833 RMD160 b3d15c3bb30db187c0f25a661ff128e643adec67 SHA1 1b82bf2a103822037a003192a5b79729a621c2a8 SHA256 47d3dae709a4624fcef8eea971d436d6c4843d39fe257d0180e96e3a68eb4758
 
MISC metadata.xml 473 RMD160 97667dfa400a624c3ba66fbaefa5bb5bf592c485 SHA1 8ab2e330cbc7993d95c0492ae14540ab5e0177ac SHA256 197f1543dd37a80c8de5ee4083d4eb659c8be038483895e11225c68e93da11f1
 
-----BEGIN PGP SIGNATURE-----
 
Version: GnuPG v2.0.14 (GNU/Linux)
 

	
 
iEYEARECAAYFAkwAwOkACgkQni8M22OVw8CFowCgqTOQfPQrzeyIhkoKthrYMihc
 
xfEAn3tRlckNduFPAcDU50sMS6hEcb9b
 
=puqp
 
-----END PGP SIGNATURE-----
dev-libs/liblist/liblist-2.3.1.ebuild
Show inline comments
 
file renamed from dev-libs/liblist/liblist-2.2.1.ebuild to dev-libs/liblist/liblist-2.3.1.ebuild
 
# Copyright 1999-2010 Gentoo Foundation
 
# Distributed under the terms of the GNU General Public License v2
 
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblist/liblist-2.1-r1.ebuild,v 1.1 2009/12/05 22:32:30 nerdboy Exp $
 

	
 
EAPI="2"
 
EAPI=2
 

	
 
DESCRIPTION="This package provides generic linked-list manipulation routines, plus queues and stacks."
 
inherit multilib
 

	
 
DESCRIPTION="This package provides generic linked-list manipulation routines, plus queues and stacks"
 
HOMEPAGE="http://ohnopub.net/liblist"
 
SRC_URI="ftp://ohnopublishing.net/mirror/${P}.tar.bz2"
 

	
 
LICENSE="GPL-2"
 
SLOT="0"
 
KEYWORDS="~amd64 ~ppc ~x86"
 
IUSE="doc examples"
 
IUSE="doc examples static-libs"
 

	
 
src_configure() {
 
	econf $(use_enable doc docs) \
 
		$(use_enable examples)
 
		$(use_enable examples) \
 
		$(use_enable static-libs static)
 
}
 

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

	
 
	dodoc README || die
 

	
 
	if use examples; then
 
		insinto /usr/share/doc/${P}/examples
 
		doins examples/{*.c,Makefile,README} || die
 
		insinto /usr/share/doc/${P}/examples/cache
 
		doins examples/cache/{*.c,Makefile,README} || die
 
		doins examples/cache/{*.c,README} || die
 
	fi
 

	
 
	if ! use static-libs; then
 
		rm -v "${D}"/usr/$(get_libdir)/liblist.la || die
 
		if use examples; then
 
			rm -v "${D}"/usr/$(get_libdir)/libcache.la || die
 
		fi
 
	fi
 
}
 

	
 
pkg_postinst() {
 
	elog "Note the man pages for this package have been renamed to avoid"
 
	elog "name collisions with some system functions, however, the libs"
 
	elog "and header files have not been changed."
 
	elog "The new names are llist, lcache, lqueue, and lstack."
 
}
0 comments (0 inline, 0 general)