Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/transfolio/
Date: Sun, 29 Dec 2019 00:48:06
Message-Id: 1577580399.d999eac39fa6ce23d561e74f063a8c89096bd0c6.conikost@gentoo
1 commit: d999eac39fa6ce23d561e74f063a8c89096bd0c6
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 29 00:46:39 2019 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 29 00:46:39 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d999eac3
7
8 app-misc/transfolio: New package
9
10 TransFolio is a command line tool for Linux and Windows which,
11 as did Atari's DOS program FT.COM.
12 It enables data transfer between the PC and the Atari Portfolio.
13
14 Package-Manager: Portage-2.3.83, Repoman-2.3.20
15 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
16
17 app-misc/transfolio/Manifest | 1 +
18 app-misc/transfolio/metadata.xml | 13 ++++++++++++
19 app-misc/transfolio/transfolio-1.0.1.ebuild | 31 +++++++++++++++++++++++++++++
20 3 files changed, 45 insertions(+)
21
22 diff --git a/app-misc/transfolio/Manifest b/app-misc/transfolio/Manifest
23 new file mode 100644
24 index 00000000000..7d498316360
25 --- /dev/null
26 +++ b/app-misc/transfolio/Manifest
27 @@ -0,0 +1 @@
28 +DIST transfolio-1.0.1.zip 158362 BLAKE2B 291e80e3576c3d92f00905c49d891c9ff926229cc2d843520b9b69f44660ec16ea274b4b68f4d8f3e353d140a6f8549697f3d2456310a5cd3a0e736ff6e0b61a SHA512 5d8c348cabcc3765c192a200ec011344960704085e815d249db23ac3669760c15ec343b16ecdce3469f49f76872f6f93563d50a96cf305f75ed19235d3a5d665
29
30 diff --git a/app-misc/transfolio/metadata.xml b/app-misc/transfolio/metadata.xml
31 new file mode 100644
32 index 00000000000..fda9b69df4c
33 --- /dev/null
34 +++ b/app-misc/transfolio/metadata.xml
35 @@ -0,0 +1,13 @@
36 +<?xml version="1.0" encoding="UTF-8"?>
37 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
38 +<pkgmetadata>
39 + <maintainer type="person">
40 + <email>conikost@g.o</email>
41 + <name>Conrad Kostecki</name>
42 + </maintainer>
43 + <longdescription>
44 + TransFolio is a command line tool for Linux and Windows which,
45 + as did Atari's DOS program FT.COM.
46 + It enables data transfer between the PC and the Atari Portfolio.
47 + </longdescription>
48 +</pkgmetadata>
49
50 diff --git a/app-misc/transfolio/transfolio-1.0.1.ebuild b/app-misc/transfolio/transfolio-1.0.1.ebuild
51 new file mode 100644
52 index 00000000000..e05ba9d6008
53 --- /dev/null
54 +++ b/app-misc/transfolio/transfolio-1.0.1.ebuild
55 @@ -0,0 +1,31 @@
56 +# Copyright 2019 Gentoo Authors
57 +# Distributed under the terms of the GNU General Public License v2
58 +
59 +EAPI=7
60 +
61 +inherit toolchain-funcs
62 +
63 +DESCRIPTION="Enables data transfer between the PC and the Atari Portfolio"
64 +HOMEPAGE="http://leute.server.de/peichl/"
65 +SRC_URI="http://leute.server.de/peichl/transfolio.zip -> ${P}.zip"
66 +
67 +LICENSE="GPL-2+"
68 +SLOT="0"
69 +KEYWORDS="~amd64 ~x86"
70 +
71 +BDEPEND="app-arch/unzip"
72 +
73 +src_prepare() {
74 + default
75 +
76 + # Respect users CC, CFLAGS and disable striping
77 + sed -e 's/cc/${CC}/' -e 's/-O2/${CFLAGS}/' -e '/strip/d' -i Makefile || die
78 +
79 + tc-export CC
80 +}
81 +
82 +src_install() {
83 + dobin transfolio
84 +
85 + einstalldocs
86 +}