Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-arch/dump: ChangeLog dump-0.4.42.ebuild
Date: Wed, 30 Sep 2009 03:14:11
Message-Id: E1Mspdp-0006WH-1c@stork.gentoo.org
1 vapier 09/09/30 03:14:09
2
3 Modified: ChangeLog
4 Added: dump-0.4.42.ebuild
5 Log:
6 Version bump #286533 by fdupoux.
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.60 app-arch/dump/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/dump/ChangeLog?rev=1.60&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/dump/ChangeLog?rev=1.60&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/dump/ChangeLog?r1=1.59&r2=1.60
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-arch/dump/ChangeLog,v
19 retrieving revision 1.59
20 retrieving revision 1.60
21 diff -u -r1.59 -r1.60
22 --- ChangeLog 17 Jul 2008 21:44:51 -0000 1.59
23 +++ ChangeLog 30 Sep 2009 03:14:08 -0000 1.60
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-arch/dump
26 -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-arch/dump/ChangeLog,v 1.59 2008/07/17 21:44:51 cardoe Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-arch/dump/ChangeLog,v 1.60 2009/09/30 03:14:08 vapier Exp $
30 +
31 +*dump-0.4.42 (30 Sep 2009)
32 +
33 + 30 Sep 2009; Mike Frysinger <vapier@g.o> +dump-0.4.42.ebuild:
34 + Version bump #286533 by fdupoux.
35
36 17 Jul 2008; Doug Goldstein <cardoe@g.o> metadata.xml:
37 remove non-existant packages
38
39
40
41 1.1 app-arch/dump/dump-0.4.42.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/dump/dump-0.4.42.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-arch/dump/dump-0.4.42.ebuild?rev=1.1&content-type=text/plain
45
46 Index: dump-0.4.42.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-arch/dump/dump-0.4.42.ebuild,v 1.1 2009/09/30 03:14:08 vapier Exp $
51
52 MY_P=${P/4./4b}
53 S=${WORKDIR}/${MY_P}
54 DESCRIPTION="Dump/restore ext2fs backup utilities"
55 HOMEPAGE="http://dump.sourceforge.net/"
56 SRC_URI="mirror://sourceforge/dump/${MY_P}.tar.gz"
57
58 LICENSE="BSD"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="ermt readline selinux static"
62
63 RDEPEND=">=sys-fs/e2fsprogs-1.27
64 >=app-arch/bzip2-1.0.2
65 >=sys-libs/zlib-1.1.4
66 ermt? ( dev-libs/openssl )
67 readline? ( sys-libs/readline )"
68 DEPEND="${RDEPEND}
69 virtual/os-headers"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 sed -i \
75 -e 's:-ltermcap:-lncurses:g' \
76 -e '/BLKID=/s:=.*:=`pkg-config --libs blkid`:' \
77 configure || die
78 }
79
80 src_compile() {
81 econf \
82 --with-dumpdatespath=/etc/dumpdates \
83 --with-{bin,man}owner=root \
84 --with-{bin,man}grp=root \
85 --enable-largefile \
86 $(use_enable selinux transselinux) \
87 $(use_enable ermt) \
88 $(use_enable static) \
89 $(use_enable readline) \
90 || die
91 emake || die
92 }
93
94 src_install() {
95 # built on old autotools, no DESTDIR support
96 einstall MANDIR="${D}"/usr/share/man/man8 || die
97 mv "${D}"/usr/sbin/{,dump-}rmt
98 mv "${D}"/usr/share/man/man8/{,dump-}rmt.8
99 use ermt && newsbin rmt/ermt dump-ermt
100
101 dodoc CHANGES KNOWNBUGS MAINTAINERS README REPORTING-BUGS THANKS TODO
102 cd examples
103 local d=
104 for d in * ; do
105 docinto ${d}
106 dodoc ${d}/*
107 done
108 }
109
110 pkg_postinst() {
111 ewarn "app-arch/dump installs 'rmt' as 'dump-rmt'."
112 ewarn "This is to avoid conflicts with app-arch/tar 'rmt'."
113 }