diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-02-15 23:41:55 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-02-15 23:41:55 +0000 |
commit | 9e41a6f45118ea1210d52bfb720fc30b919a1163 (patch) | |
tree | e2d8872f99c6cb12a8de3af460151748882d0ecb /sys-apps/unscd | |
parent | stabilize (diff) | |
download | gentoo-2-9e41a6f45118ea1210d52bfb720fc30b919a1163.tar.gz gentoo-2-9e41a6f45118ea1210d52bfb720fc30b919a1163.tar.bz2 gentoo-2-9e41a6f45118ea1210d52bfb720fc30b919a1163.zip |
Version bump #305275 by tomas charvat.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'sys-apps/unscd')
-rw-r--r-- | sys-apps/unscd/ChangeLog | 9 | ||||
-rw-r--r-- | sys-apps/unscd/unscd-0.45.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/sys-apps/unscd/ChangeLog b/sys-apps/unscd/ChangeLog index 8ee7fa69c566..f55a0e4c9853 100644 --- a/sys-apps/unscd/ChangeLog +++ b/sys-apps/unscd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/unscd -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/unscd/ChangeLog,v 1.7 2009/06/14 01:18:17 vapier Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/unscd/ChangeLog,v 1.8 2010/02/15 23:41:55 vapier Exp $ + +*unscd-0.45 (15 Feb 2010) + + 15 Feb 2010; Mike Frysinger <vapier@gentoo.org> +unscd-0.45.ebuild: + Version bump #305275 by tomas charvat. 14 Jun 2009; Mike Frysinger <vapier@gentoo.org> files/unscd.initd: Fix typo pointed out by Duncan Smith #273781. diff --git a/sys-apps/unscd/unscd-0.45.ebuild b/sys-apps/unscd/unscd-0.45.ebuild new file mode 100644 index 000000000000..a2034f2c596d --- /dev/null +++ b/sys-apps/unscd/unscd-0.45.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/unscd/unscd-0.45.ebuild,v 1.1 2010/02/15 23:41:55 vapier Exp $ + +inherit toolchain-funcs + +DESCRIPTION="simple & stable nscd replacement" +HOMEPAGE="http://busybox.net/~vda/unscd/README" +SRC_URI="http://busybox.net/~vda/unscd/nscd-${PV}.c" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S=${WORKDIR} + +src_unpack() { + cp "${DISTDIR}"/nscd-${PV}.c unscd.c || die +} + +src_compile() { + tc-export CC + emake unscd || die +} + +src_install() { + newinitd "${FILESDIR}"/unscd.initd unscd || die + dosbin unscd || die +} |