diff options
-rw-r--r-- | sys-apps/hal/hal-9999.ebuild | 21 | ||||
-rw-r--r-- | sys-apps/util-linux/util-linux-9999.ebuild | 25 | ||||
-rw-r--r-- | sys-libs/e2fsprogs-libs/e2fsprogs-libs-9999.ebuild | 74 |
3 files changed, 13 insertions, 107 deletions
diff --git a/sys-apps/hal/hal-9999.ebuild b/sys-apps/hal/hal-9999.ebuild index 5b82c97..4148100 100644 --- a/sys-apps/hal/hal-9999.ebuild +++ b/sys-apps/hal/hal-9999.ebuild @@ -224,32 +224,27 @@ src_compile() { src_install() { emake DESTDIR="${D}" install || die -# dodoc AUTHORS ChangeLog NEWS README || die "docs failed" + dodoc AUTHORS ChangeLog NEWS README # hal umount for unclean unmounts exeinto /lib/udev/ - newexe "${FILESDIR}/hal-unmount.dev" hal_unmount || die "udev helper failed" - + newexe "${FILESDIR}/hal-unmount.dev" hal_unmount # initscript - newinitd "${FILESDIR}/0.5.10-hald.rc" hald || die "init script failed" + newinitd "${FILESDIR}/0.5.10-hald.rc" hald # configuration - cp "${FILESDIR}/0.5.10-hald.conf" "${WORKDIR}/" || \ - die "failed to copy hald.conf" + cp "${FILESDIR}/0.5.10-hald.conf" "${WORKDIR}/" if use debug; then sed -e 's:HALD_VERBOSE="no":HALD_VERBOSE="yes":' \ - -i "${WORKDIR}/0.5.10-hald.conf" || die "failed to change verbose" + -i "${WORKDIR}/0.5.10-hald.conf" fi - newconfd "${WORKDIR}/0.5.10-hald.conf" hald || \ - die "failed to install hald.conf" + newconfd "${WORKDIR}/0.5.10-hald.conf" hald if use X ; then # New Configuration Snippets - dodoc "${WORKDIR}/${PN}-config-examples/"*.fdi || \ - die "dodoc X examples failed" - dobin "${WORKDIR}/${PN}-config-examples/migrate-xorg-to-fdi.py" || \ - die "dodoc X migration script failed" + dodoc "${WORKDIR}/${PN}-config-examples"/*.fdi + dobin "${WORKDIR}/${PN}-config-examples"/migrate-xorg-to-fdi.py # Automagic conversion! elog "Migrating xorg.conf Core Keyboard configuration to HAL FDI file" diff --git a/sys-apps/util-linux/util-linux-9999.ebuild b/sys-apps/util-linux/util-linux-9999.ebuild index 1de935f..e3ec423 100644 --- a/sys-apps/util-linux/util-linux-9999.ebuild +++ b/sys-apps/util-linux/util-linux-9999.ebuild @@ -3,8 +3,7 @@ # $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/util-linux-9999.ebuild,v 1.7 2008/12/30 04:33:59 vapier Exp $ EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git" -inherit eutils flag-o-matic -[[ ${PV} == "9999" ]] && inherit git +inherit eutils flag-o-matic autotools git MY_PV=${PV/_/-} MY_P=${PN}-ng-${MY_PV} @@ -12,12 +11,7 @@ S=${WORKDIR}/${MY_P} DESCRIPTION="Various useful Linux utilities" HOMEPAGE="http://www.kernel.org/pub/linux/utils/util-linux-ng/" -if [[ ${PV} == "9999" ]] ; then - SRC_URI="" -else - SRC_URI="mirror://kernel/linux/utils/util-linux-ng/v${PV:0:4}/${MY_P}.tar.bz2 - loop-aes? ( http://loop-aes.sourceforge.net/loop-AES/loop-AES-v3.2c.tar.bz2 )" -fi +SRC_URI="" LICENSE="GPL-2" SLOT="0" @@ -35,19 +29,15 @@ DEPEND="${RDEPEND} virtual/os-headers" src_unpack() { - if [[ ${PV} == "9999" ]] ; then git_src_unpack cd "${S}" - ./autogen.sh || die - else - unpack ${A} - use loop-aes && epatch "${WORKDIR}"/loop-AES-*/util-linux-ng-*.diff - fi + ./autogen.sh } src_compile() { econf \ --with-fsprobe=builtin \ + --enable-static-programs=blkid \ $(use_enable nls) \ --enable-agetty \ --enable-cramfs \ @@ -70,15 +60,10 @@ src_compile() { $(use_with selinux) \ $(use_with slang) \ || die "configure failed" - emake || die "emake failed" + emake STRIP=/bin/true || die "emake failed" } src_install() { emake install DESTDIR="${D}" || die "install failed" dodoc AUTHORS NEWS README* TODO docs/* - - if use crypt ; then - newinitd "${FILESDIR}"/crypto-loop.initd crypto-loop || die - newconfd "${FILESDIR}"/crypto-loop.confd crypto-loop || die - fi } diff --git a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-9999.ebuild b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-9999.ebuild deleted file mode 100644 index f79a415..0000000 --- a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-9999.ebuild +++ /dev/null @@ -1,74 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.4.ebuild,v 1.2 2009/03/15 05:01:39 vapier Exp $ - -EAPI="2" - -inherit flag-o-matic toolchain-funcs git autotools - -DESCRIPTION="e2fsprogs libraries (common error, subsystem, uuid, block id)" -HOMEPAGE="http://e2fsprogs.sourceforge.net/" -SRC_URI="" - -EGIT_REPO_URI="git://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git" -EGIT_PROJECT="e2fsprogs" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="nls" - -RDEPEND="elibc_glibc? ( >=sys-libs/glibc-2.6 ) - !sys-libs/com_err - !sys-libs/ss - !<sys-fs/e2fsprogs-1.41" -DEPEND="nls? ( sys-devel/gettext ) - sys-devel/bc" - -set_env() { - export LDCONFIG=/bin/true - export CC=$(tc-getCC) -} - -src_unpack() { - git_src_unpack - cd ${S} - eautoreconf -} - -src_configure() { - set_env - - # We want to use the "bsd" libraries while building on Darwin, but while - # building on other Gentoo/*BSD we prefer elf-naming scheme. - local libtype - case ${CHOST} in - *-darwin*) libtype=bsd;; - *) libtype=elf;; - esac - - econf \ - --libdir=/$(get_libdir) \ - --enable-${libtype}-shlibs \ - $(use_enable !elibc_uclibc tls) \ - $(use_enable nls) \ - || die -} - -src_compile() { - set_env - emake STRIP=/bin/true || die -} - -src_install() { - set_env - emake STRIP=/bin/true DESTDIR="${D}" install - - dodir /$(get_libdir) - local lib slib -# for lib in "${D}"/usr/$(get_libdir)/*.a ; do -# slib=${lib##*/} -# mv "/${lib%.a}"$(get_libname)* "${D}"/$(get_libdir)/ || die "moving lib ${slib}" -# gen_usr_ldscript ${slib%.a}$(get_libname) -# done -} |