Gentoo Archives: gentoo-commits

From: "Denis Dupeyron (calchan)" <calchan@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-embedded/avrdude: ChangeLog avrdude-5.5.ebuild
Date: Sun, 09 Dec 2007 11:13:10
Message-Id: E1J1K5o-0000JF-Oa@stork.gentoo.org
1 calchan 07/12/09 11:13:04
2
3 Modified: ChangeLog
4 Added: avrdude-5.5.ebuild
5 Log:
6 Version bump, ebuild cleanups.
7 (Portage version: 2.1.4_rc9)
8
9 Revision Changes Path
10 1.37 dev-embedded/avrdude/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/avrdude/ChangeLog?rev=1.37&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/avrdude/ChangeLog?rev=1.37&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/avrdude/ChangeLog?r1=1.36&r2=1.37
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-embedded/avrdude/ChangeLog,v
19 retrieving revision 1.36
20 retrieving revision 1.37
21 diff -u -r1.36 -r1.37
22 --- ChangeLog 29 Aug 2007 17:22:31 -0000 1.36
23 +++ ChangeLog 9 Dec 2007 11:13:04 -0000 1.37
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-embedded/avrdude
26 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-embedded/avrdude/ChangeLog,v 1.36 2007/08/29 17:22:31 phreak Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-embedded/avrdude/ChangeLog,v 1.37 2007/12/09 11:13:04 calchan Exp $
29 +
30 +*avrdude-5.5 (09 Dec 2007)
31 +
32 + 09 Dec 2007; Denis Dupeyron <calchan@g.o> +avrdude-5.5.ebuild:
33 + Version bump, ebuild cleanups.
34
35 29 Aug 2007; Christian Heim <phreak@g.o> metadata.xml:
36 Removing gustavoz from metadata due to his retirement (see #36010 for
37
38
39
40 1.1 dev-embedded/avrdude/avrdude-5.5.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/avrdude/avrdude-5.5.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-embedded/avrdude/avrdude-5.5.ebuild?rev=1.1&content-type=text/plain
44
45 Index: avrdude-5.5.ebuild
46 ===================================================================
47 # Copyright 1999-2007 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-embedded/avrdude/avrdude-5.5.ebuild,v 1.1 2007/12/09 11:13:04 calchan Exp $
50
51 DESCRIPTION="AVR Downloader/UploaDEr"
52 HOMEPAGE="http://savannah.nongnu.org/projects/avrdude"
53 SRC_URI="http://savannah.nongnu.org/download/${PN}/${P}.tar.gz
54 !doc? ( http://savannah.nongnu.org/download/${PN}/${PN}-doc-${PV}.tar.gz
55 http://savannah.nongnu.org/download/${PN}/${PN}-doc-${PV}.pdf )"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
60
61 IUSE="doc"
62 RDEPEND="dev-libs/libusb"
63 DEPEND="${RDEPEND}
64 doc? ( app-text/texi2html
65 virtual/tetex
66 sys-apps/texinfo )"
67
68 src_unpack() {
69 unpack ${A}
70 cd "${S}"
71
72 # let the build system re-generate these, bug #120194
73 rm -f lexer.c config_gram.c config_gram.h
74 }
75
76 src_compile() {
77 econf --disable-dependency-tracking --disable-doc || die "econf failed"
78 emake || die "emake failed"
79
80 # We build docs separately since they fail to parallel-build
81 if use doc ; then
82 cd doc
83 emake -j1 || die "emake doc failed"
84 fi
85 }
86
87 src_install() {
88 emake DESTDIR="${D}" install || die "emake install failed"
89
90 dodoc AUTHORS NEWS README ChangeLog*
91
92 # We either install docs we just built or those pre-made by upstream
93 insinto /usr/share/doc/${PF}
94 if use doc ; then
95 cd doc
96 doins avrdude.{ps,pdf}
97 else
98 newins "${DISTDIR}/${PN}-doc-${PV}.pdf" avrdude.pdf
99 cd "${WORKDIR}"
100 fi
101 mv avrdude-html html
102 doins -r html
103 }
104
105
106
107 --
108 gentoo-commits@g.o mailing list