mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
x11-misc/sent: Initial commit.
Package-Manager: portage-2.2.26
This commit is contained in:
1
x11-misc/sent/Manifest
Normal file
1
x11-misc/sent/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST sent-0.2.tar.gz 13479 SHA256 53b961f9d92a277a6408df7025b4a6deae6b655a797383c93442290e45391076 SHA512 22c1e1e1bb7dbdaacb75a71a34ab533ca17b632e505ff96a351a907b861009b748502f7ad2934397f40842bef11e3072e814952a6abb141d470d0bb2e34a1540 WHIRLPOOL d8f83dc259722b0a20d90e76ae77d5013ebc91974848c7b53a520e3ace563844a6fcf5a81c4664e35cae6a9dd8199a9425699f8817d52d05ba882c8154ca78dd
|
||||
8
x11-misc/sent/metadata.xml
Normal file
8
x11-misc/sent/metadata.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer>
|
||||
<email>jer@gentoo.org</email>
|
||||
<name>Jeroen Roovers</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
44
x11-misc/sent/sent-0.2.ebuild
Normal file
44
x11-misc/sent/sent-0.2.ebuild
Normal file
@@ -0,0 +1,44 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
inherit savedconfig toolchain-funcs
|
||||
|
||||
DESCRIPTION="Simple plaintext presentation tool"
|
||||
HOMEPAGE="http://tools.suckless.org/sent/"
|
||||
SRC_URI="http://dl.suckless.org/tools/${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
media-libs/fontconfig
|
||||
media-libs/libpng:*
|
||||
x11-libs/libX11
|
||||
x11-libs/libXft
|
||||
"
|
||||
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
sed -i \
|
||||
-e 's|^ @| |g' \
|
||||
-e 's|@${CC}|$(CC)|g' \
|
||||
-e '/^ echo/d' \
|
||||
Makefile || die
|
||||
|
||||
restore_config config.def.h
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake CC=$(tc-getCC)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${D}" PREFIX="/usr" install
|
||||
}
|
||||
Reference in New Issue
Block a user