app-text/smu: Remove ebuilds. - parlay - yet another gentoo overlay
HTML git clone https://git.parazyd.org/parlay
DIR Log
DIR Files
DIR Refs
DIR README
---
DIR commit 34fefae50dc0b64a62798fbcc40d7ae02309dddd
DIR parent 1e332c280116b9d6cbfaf681e99b0c504fe16beb
HTML Author: parazyd <parazyd@dyne.org>
Date: Tue, 17 May 2022 11:00:07 +0200
app-text/smu: Remove ebuilds.
Diffstat:
D app-text/smu/metadata.xml | 7 -------
D app-text/smu/smu-9999.ebuild | 43 ------------------------------
2 files changed, 0 insertions(+), 50 deletions(-)
---
DIR diff --git a/app-text/smu/metadata.xml b/app-text/smu/metadata.xml
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
- <email>parazyd@dyne.org</email>
-</maintainer>
-</pkgmetadata>
DIR diff --git a/app-text/smu/smu-9999.ebuild b/app-text/smu/smu-9999.ebuild
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit git-r3
-
-DESCRIPTION="simple markup - markdown like syntax"
-HOMEPAGE="https://github.com/Gottox/smu"
-EGIT_REPO_URI="https://github.com/Gottox/smu"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS=""
-IUSE="static"
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare() {
- default
-
- sed -i \
- -e "/^CDFLAGS/{s|=|+=|g;s|-O. | |g}" \
- -e "/^LDFLAGS/{s|=|+=|g;s|-s | |g}" \
- -e "s@-I/usr/include@@" -e "s@-L/usr/lib@@" \
- config.mk || die
-
- if use static; then
- echo "LDFLAGS += -static" >> config.mk
- fi
-}
-
-src_compile() {
- emake smu
-}
-
-src_install() {
- emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-
- dodoc documentation
- dodoc testdoc
-}