Changeset - aa33987c76d8
[Not reviewed]
default
0 2 1
Nathan Brink (binki) - 15 years ago 2009-12-29 00:49:06
ohnobinki@ohnopublishing.net
dev-libs/liblist: added liblist-2.2.1, the first worthwhile release.
3 files changed with 13 insertions and 14 deletions:
0 comments (0 inline, 0 general)
dev-libs/liblist/ChangeLog
Show inline comments
 
# ChangeLog for dev-libs/liblist
 
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
 
# $Header: /var/cvsroot/gentoo-x86/dev-libs/liblist/ChangeLog,v 1.2 2009/12/05 22:32:30 nerdboy Exp $
 

	
 
*liblist-2.2.1 (29 Dec 2009)
 

	
 
  29 Dec 2009; Nathan Phillip Brink (ohnobinki)
 
  <ohnobinki@ohnopublishing.net> +liblist-2.2.1.ebuild:
 
  Added liblist-2.2.1, the first worthwhile release.
 

	
 
  29 Dec 2009; Nathan Phillip Brink (ohnobinki)
 
  <ohnobinki@ohnopublishing.net> liblist-9999.ebuild,
 
  -files/liblist-9999-sharedlib.patch:
 
  Simplified and compatible with newer Mercurial (Remove patch, let
 
  autotools install files). Fixed HOMEPAGE URL.
 

	
 
  23 Dec 2009; Nathan Phillip Brink (ohnobinki)
 
  <ohnobinki@ohnopublishing.net> liblist-9999.ebuild:
 
  Fix installation of the cache manpage.
 

	
 
  23 Dec 2009; Nathan Phillip Brink (ohnobinki)
 
  <ohnobinki@ohnopublishing.net> -liblist-2.1.ebuild,
dev-libs/liblist/Manifest
Show inline comments
 
EBUILD liblist-9999.ebuild 1232 RMD160 dd4a888409f41ed34613c6cecf9ca76e85b984b8 SHA1 d3bd2b538320fef2f912a7141d9e6f917bc01922 SHA256 089756aaec4516e7ba27ee59f411c26d2c7a3925ad1bf8ad5dfa94d00302de46
 
MISC ChangeLog 1272 RMD160 0e51d6b1016851da2f86073ded51980bf987963a SHA1 b7b06f3f7be32719c40365b29c402d8e4b278b3c SHA256 46a9bf80386ea4f342160fb0bac50d1133a1860554b599adb9398beed97a32b2
 
DIST liblist-2.2.1.tar.bz2 248527 RMD160 0a377943d0cfae441cb102a203a83a9a4e3c5c87 SHA1 3c850d1acfb8a98245fbabdde350652e4eea0648 SHA256 a899f22cd6fdbb7867cf658732e2d1042e1fe01989c0f4b0e0fdb148c1c0d7c6
 
EBUILD liblist-2.2.1.ebuild 1133 RMD160 622df71d93df4cd5eb93b3823b715435396c08e2 SHA1 76698e3f767929e08ffa72e1658337f0ea71b448 SHA256 63442c266dda33898001117218da02095dfcb67942783b0ead6daba547e7125a
 
EBUILD liblist-9999.ebuild 1231 RMD160 7a98a5ee9f636b08c2f14d49781da63535015c3a SHA1 682a874f9495d01e2adac08cf1c39558fd7c59b1 SHA256 605219a0f4e05d57914795cbfba6e8694d106a7877b31ece00c86a6bc56cb3eb
 
MISC ChangeLog 1718 RMD160 a10197e701d20ea164c8f10955607a11c117c865 SHA1 88526950ef7e5b0ddefe5260bbc630cff029ab39 SHA256 e8160da8f4f135e2b2a20dca4fc104ed041aa4d465f5bc60257d5027169ceebd
 
MISC metadata.xml 473 RMD160 97667dfa400a624c3ba66fbaefa5bb5bf592c485 SHA1 8ab2e330cbc7993d95c0492ae14540ab5e0177ac SHA256 197f1543dd37a80c8de5ee4083d4eb659c8be038483895e11225c68e93da11f1
dev-libs/liblist/liblist-2.2.1.ebuild
Show inline comments
 
file copied from dev-libs/liblist/liblist-9999.ebuild to dev-libs/liblist/liblist-2.2.1.ebuild
 
# Copyright 1999-2009 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"
 

	
 
inherit autotools mercurial
 

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

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

	
 
S=${WORKDIR}/${PN}-unbased
 

	
 
src_prepare() {
 
	eautoreconf
 
}
 

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

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

	
 
	dodoc README || die
 

	
 
	if use examples; then
 
		insinto /usr/share/doc/${P}/examples
0 comments (0 inline, 0 general)