Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sys-devel/ucpp/, sys-devel/ucpp/files/
Date: Thu, 28 Jul 2011 13:10:41
Message-Id: 72cf9e41c2982e6df4a3e69d736a5acb28881593.alexxy@gentoo
1 commit: 72cf9e41c2982e6df4a3e69d736a5acb28881593
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 28 13:10:11 2011 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 28 13:10:11 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=72cf9e41
7
8 Also moved to tree
9
10 ---
11 sys-devel/ucpp/ChangeLog | 13 -------------
12 sys-devel/ucpp/files/tune.h.patch | 28 ----------------------------
13 sys-devel/ucpp/metadata.xml | 8 --------
14 sys-devel/ucpp/ucpp-1.3.ebuild | 34 ----------------------------------
15 4 files changed, 0 insertions(+), 83 deletions(-)
16
17 diff --git a/sys-devel/ucpp/ChangeLog b/sys-devel/ucpp/ChangeLog
18 deleted file mode 100644
19 index 810d0c6..0000000
20 --- a/sys-devel/ucpp/ChangeLog
21 +++ /dev/null
22 @@ -1,13 +0,0 @@
23 -# ChangeLog for sys-devel/ucpp
24 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
25 -# $Header: $
26 -
27 - 07 Jan 2011; Justin Lecher <jlec@g.o> ucpp-1.3.ebuild:
28 - Some QA on ebuild style
29 -
30 -*ucpp-1.3 (22 Mar 2009)
31 -
32 - 22 Mar 2009; justin Lecher (jlec) <jlec@×××××××××.net>
33 - +files/tune.h.patch, +metadata.xml, +ucpp-1.3.ebuild:
34 - initial checkin
35 -
36
37 diff --git a/sys-devel/ucpp/files/tune.h.patch b/sys-devel/ucpp/files/tune.h.patch
38 deleted file mode 100644
39 index 7455dd2..0000000
40 --- a/sys-devel/ucpp/files/tune.h.patch
41 +++ /dev/null
42 @@ -1,28 +0,0 @@
43 ---- tune.h 2008-10-01 19:15:41.000000000 +0200
44 -+++ tune.h.new 2009-03-22 11:59:42.000000000 +0100
45 -@@ -281,10 +281,10 @@
46 - *
47 - * If you want no standard assertion, define STD_ASSERT to 0.
48 - */
49 --/*
50 -+
51 - #define STD_ASSERT "cpu(i386)", "machine(i386)", "system(unix)", \
52 - "system(freebsd)"
53 --*/
54 -+
55 -
56 - /* ====================================================================== */
57 - /*
58 -@@ -293,10 +293,10 @@
59 - * Each string must be either "name" or "name=token-list". If you want
60 - * no predefined macro, define STD_MACROS to 0.
61 - */
62 --/*
63 -+
64 - #define STD_MACROS "__FreeBSD=4", "__unix", "__i386", \
65 - "__FreeBSD__=4", "__unix__", "__i386__"
66 --*/
67 -+
68 -
69 - /* ====================================================================== */
70 - /*
71
72 diff --git a/sys-devel/ucpp/metadata.xml b/sys-devel/ucpp/metadata.xml
73 deleted file mode 100644
74 index efb490d..0000000
75 --- a/sys-devel/ucpp/metadata.xml
76 +++ /dev/null
77 @@ -1,8 +0,0 @@
78 -<?xml version="1.0" encoding="UTF-8"?>
79 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
80 -<pkgmetadata>
81 -<herd>sci</herd>
82 -<maintainer>
83 - <email>sci@g.o</email>
84 -</maintainer>
85 -</pkgmetadata>
86
87 diff --git a/sys-devel/ucpp/ucpp-1.3.ebuild b/sys-devel/ucpp/ucpp-1.3.ebuild
88 deleted file mode 100644
89 index 93085f9..0000000
90 --- a/sys-devel/ucpp/ucpp-1.3.ebuild
91 +++ /dev/null
92 @@ -1,34 +0,0 @@
93 -# Copyright 1999-2011 Gentoo Foundation
94 -# Distributed under the terms of the GNU General Public License v2
95 -# $Header: $
96 -
97 -EAPI="2"
98 -
99 -inherit eutils toolchain-funcs
100 -
101 -DESCRIPTION="A quick and light preprocessor, but anyway fully compliant to C99"
102 -HOMEPAGE="http://code.google.com/p/ucpp/"
103 -SRC_URI="http://ucpp.googlecode.com/files/${P}.tar.bz2"
104 -
105 -LICENSE="BSD"
106 -SLOT="0"
107 -KEYWORDS="~amd64 ~x86"
108 -IUSE=""
109 -
110 -src_prepare() {
111 - epatch "${FILESDIR}"/tune.h.patch
112 -}
113 -
114 -src_compile() {
115 - emake \
116 - FLAGS="${CFLAGS} -DSTAND_ALONE" \
117 - CC=$(tc-getCC) \
118 - STAND_ALONE="-DSTAND_ALONE" || die
119 -}
120 -
121 -src_install() {
122 - dolib.a lib${PN}.a || die
123 - doman ${PN}.1 || die
124 - dobin ${PN} || die
125 - dodoc README || die
126 -}