diff options
author | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 15:52:45 +0000 |
---|---|---|
committer | Agostino Sarubbo <ago@gentoo.org> | 2012-05-10 15:52:45 +0000 |
commit | 1f990052d96c2b1bcf4b94742fa844e9bffbe24e (patch) | |
tree | 76e5bef85b449ebbfeac2e2c3d73578cff32a505 | |
parent | Remove old (diff) | |
download | gentoo-2-1f990052d96c2b1bcf4b94742fa844e9bffbe24e.tar.gz gentoo-2-1f990052d96c2b1bcf4b94742fa844e9bffbe24e.tar.bz2 gentoo-2-1f990052d96c2b1bcf4b94742fa844e9bffbe24e.zip |
Remove old
(Portage version: 2.1.10.49/cvs/Linux x86_64)
-rw-r--r-- | dev-libs/libhash/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libhash/libhash-1.0.3.ebuild | 42 |
2 files changed, 4 insertions, 43 deletions
diff --git a/dev-libs/libhash/ChangeLog b/dev-libs/libhash/ChangeLog index cc6979430c54..936d171e0b50 100644 --- a/dev-libs/libhash/ChangeLog +++ b/dev-libs/libhash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libhash # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhash/ChangeLog,v 1.13 2012/05/06 16:20:43 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhash/ChangeLog,v 1.14 2012/05/10 15:52:45 ago Exp $ + + 10 May 2012; Agostino Sarubbo <ago@gentoo.org> -libhash-1.0.3.ebuild: + Remove old 06 May 2012; Raúl Porcel <armin76@gentoo.org> libhash-1.0.3.ebuild, libhash-1.0.3-r1.ebuild: diff --git a/dev-libs/libhash/libhash-1.0.3.ebuild b/dev-libs/libhash/libhash-1.0.3.ebuild deleted file mode 100644 index d5321f06147c..000000000000 --- a/dev-libs/libhash/libhash-1.0.3.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libhash/libhash-1.0.3.ebuild,v 1.3 2012/05/06 16:20:43 armin76 Exp $ - -inherit toolchain-funcs - -DESCRIPTION="a small hash library written in C" -HOMEPAGE="ftp://ftp.ugh.net.au/pub/unix/libhash/" -SRC_URI="ftp://ftp.ugh.net.au/pub/unix/libhash/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm hppa ppc x86" -IUSE="doc" - -DEPEND="" - -S=${WORKDIR}/${PN} - -src_compile() { - rm -f Makefile - $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -fPIC -shared -o libhash.so hash.c || die ".so failed" - $(tc-getCC) ${CPPFLAGS} ${CFLAGS} -c -o libhash.a hash.c || die ".a failed" -} - -src_test() { - cd tests - sed -i '/wrappers.h/d' *.c - for n in 2 3 ; do - $(tc-getCC) ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -I.. -L.. ${n}.c -o ${n} -lhash || die "compile ${n} failed" - LD_LIBRARY_PATH=.. ./${n} || die "test ${n} failed" - done -} - -src_install() { - insinto /usr/include - doins hash.h || die "hash.h" - dolib.so libhash.so || die "dolib.so" - dolib.a libhash.a || die "dolib.a" - doman *.3 || die "doman" - use doc && dodoc tests/*.c -} |