diff options
Diffstat (limited to 'sys-libs/glibc/glibc-2.12.1-r3.ebuild')
-rw-r--r-- | sys-libs/glibc/glibc-2.12.1-r3.ebuild | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/sys-libs/glibc/glibc-2.12.1-r3.ebuild b/sys-libs/glibc/glibc-2.12.1-r3.ebuild index 99fd309dd064..d45b306c6fe8 100644 --- a/sys-libs/glibc/glibc-2.12.1-r3.ebuild +++ b/sys-libs/glibc/glibc-2.12.1-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.12.1-r3.ebuild,v 1.13 2012/08/13 22:48:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.12.1-r3.ebuild,v 1.14 2012/08/18 18:40:21 vapier Exp $ inherit eutils versionator libtool toolchain-funcs flag-o-matic gnuconfig multilib multiprocessing @@ -222,21 +222,3 @@ eblit-src_unpack-post() { || die "Failed to ensure nscd builds with ssp-all" fi } - -maint_pkg_create() { - local base="/usr/local/src/gnu/glibc/glibc-${PV:0:1}_${PV:2:1}" - cd ${base} - local stamp=$(date +%Y%m%d) - local d - for d in libc ports ; do - #(cd ${d} && cvs up) - case ${d} in - libc) tarball="${P}";; - ports) tarball="${PN}-ports-${PV}";; - esac - rm -f ${tarball}* - ln -sf ${d} ${tarball} - tar hcf - ${tarball} --exclude-vcs | lzma > "${T}"/${tarball}.tar.lzma - du -b "${T}"/${tarball}.tar.lzma - done -} |