diff options
author | Sam James <sam@gentoo.org> | 2021-04-15 09:28:33 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-04-16 12:19:42 +0100 |
commit | 88a04de7270b5691981f08650633c3edf43bb143 (patch) | |
tree | 5599fdfc21f7206fe7e5e61e000816e98a47688b /net-misc/adjtimex/adjtimex-1.29-r2.ebuild | |
parent | net-mail/qlogtools: eutils-- (diff) | |
download | gentoo-88a04de7270b5691981f08650633c3edf43bb143.tar.gz gentoo-88a04de7270b5691981f08650633c3edf43bb143.tar.bz2 gentoo-88a04de7270b5691981f08650633c3edf43bb143.zip |
net-misc/adjtimex: eutils--
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/adjtimex/adjtimex-1.29-r2.ebuild')
-rw-r--r-- | net-misc/adjtimex/adjtimex-1.29-r2.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/net-misc/adjtimex/adjtimex-1.29-r2.ebuild b/net-misc/adjtimex/adjtimex-1.29-r2.ebuild index 7db9170ce404..5ac80ba347a5 100644 --- a/net-misc/adjtimex/adjtimex-1.29-r2.ebuild +++ b/net-misc/adjtimex/adjtimex-1.29-r2.ebuild @@ -3,14 +3,14 @@ EAPI="7" -inherit eutils fixheadtails toolchain-funcs +inherit fixheadtails toolchain-funcs DEBIAN_PV="10" MY_P="${P/-/_}" DEBIAN_URI="mirror://debian/pool/main/${PN:0:1}/${PN}" DEBIAN_PATCH="${MY_P}-${DEBIAN_PV}.debian.tar.xz" DEBIAN_SRC="${MY_P}.orig.tar.gz" -DESCRIPTION="display or set the kernel time variables" +DESCRIPTION="Display or set the kernel time variables" HOMEPAGE="https://www.ibiblio.org/pub/Linux/system/admin/time/adjtimex.lsm https://github.com/rogers0/adjtimex" SRC_URI="${DEBIAN_URI}/${DEBIAN_PATCH} ${DEBIAN_URI}/${DEBIAN_SRC}" @@ -18,9 +18,6 @@ SRC_URI="${DEBIAN_URI}/${DEBIAN_PATCH} LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 ppc x86" -IUSE="" - -DEPEND="sys-apps/sed" src_unpack() { unpack "${DEBIAN_SRC}" @@ -34,6 +31,7 @@ src_prepare() { for f in $(cat "$DEBPATCHDIR/series") ; do eapply "$DEBPATCHDIR"/$f done + # Then gentoo changes for i in debian/adjtimexconfig debian/adjtimexconfig.8 ; do sed -e 's|/etc/default/adjtimex|/etc/conf.d/adjtimex|' \ @@ -41,12 +39,15 @@ src_prepare() { sed -e 's|^/sbin/adjtimex |/usr/sbin/adjtimex |' \ -i.orig ${i} done + eapply "${FILESDIR}"/${PN}-1.29-r2-gentoo-utc.patch ht_fix_file debian/adjtimexconfig + sed -i \ -e '/CFLAGS = -Wall -t/,/endif/d' \ -e '/$(CC).* -o/s|$(CFLAGS)|& $(LDFLAGS)|g' \ Makefile.in || die "sed Makefile.in" + eapply_user } |