mirror of
https://github.com/bsedin/gentoo-repo.git
synced 2024-09-20 20:30:28 +00:00
initial commit with trayion ebuild
This commit is contained in:
26
metadata/layout.conf
Normal file
26
metadata/layout.conf
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
# This went live Wednesday, July 4, 2012 at 10:00 UTC
|
||||||
|
# For more details, please see: http://archives.gentoo.org/gentoo-dev-announce/msg_00000.xml
|
||||||
|
# and/or GLEP 59.
|
||||||
|
manifest-hashes = SHA256 SHA512 WHIRLPOOL
|
||||||
|
|
||||||
|
# Bug #470670 - gentoo's council says to deprecate
|
||||||
|
# EAPIs 1 and 2.
|
||||||
|
eapis-deprecated = 1 2
|
||||||
|
|
||||||
|
# Bug #337853 - gentoo's council says to enable
|
||||||
|
# --echangelog by default for the "gentoo" repo
|
||||||
|
update-changelog = true
|
||||||
|
|
||||||
|
# Make egencache generate newer (more reliable)
|
||||||
|
# md5-dict cache format (see bug #409445).
|
||||||
|
# NOTE: list md5-dict first so clients prefer it
|
||||||
|
# INFRA NOTE: Format 'pms' was removed on Aug 6 2012. (Announced prior as Aug 1
|
||||||
|
# 2012 was the removal date)
|
||||||
|
cache-formats = md5-dict
|
||||||
|
|
||||||
|
# Support for implicit masters is deprecated, so we need to explicitly
|
||||||
|
# specify that this repo does not dependent on any masters, in order
|
||||||
|
# to distinguish it from repos that rely on the deprecated behavior.
|
||||||
|
masters = gentoo
|
||||||
|
thin-manifests = true
|
||||||
|
sign-manifests = false
|
||||||
10
x11-misc/trayion/ChangeLog.txt
Normal file
10
x11-misc/trayion/ChangeLog.txt
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# ChangeLog for x11-misc/trayion
|
||||||
|
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
|
||||||
|
# $Header: $
|
||||||
|
|
||||||
|
*trayion-0.1.2 (03 Jan 2010)
|
||||||
|
|
||||||
|
03 Jan 2010; Rafael Goncalves Martins <rafael@rafaelmartins.eng.br>
|
||||||
|
+trayion-0.1.2.ebuild, +metadata.xml:
|
||||||
|
Initial import.
|
||||||
|
|
||||||
1
x11-misc/trayion/Manifest
Normal file
1
x11-misc/trayion/Manifest
Normal file
@@ -0,0 +1 @@
|
|||||||
|
DIST v1.4.tar.gz 21728 SHA256 5e1258f2a31e6b955e8d81051a9ff40756f5816bd0fead96abcf85a33b02f0de SHA512 86f690eb6986521134b7d1a1347a7c0edac7637a8b91ad209f210cb30659b50f0969c15d9db4d1d46fbcb3034081e8f67fff1071c47f7b1cbc33249e143688f8 WHIRLPOOL 376430c071adedbd3b04b09a56e06f2f6d319b79b2fc3009ea9c4954118f1636929ec960fe067d3004f41cc3868ed6454d2bf2b87ffb0a9fa00097289909045b
|
||||||
20
x11-misc/trayion/metadata.xml
Normal file
20
x11-misc/trayion/metadata.xml
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<herd>no-herd</herd>
|
||||||
|
<maintainer>
|
||||||
|
<email>rafael@rafaelmartins.eng.br</email>
|
||||||
|
<name>Rafael Goncalves Martins</name>
|
||||||
|
</maintainer>
|
||||||
|
<longdescription lang="en">
|
||||||
|
Trayion is an external systray application suitable for using with Ion3.
|
||||||
|
|
||||||
|
It behaves like a Window Maker dockapp, so it can be redirected into the
|
||||||
|
Ion3 statusbar. It implements FreeDesktop (XEmbed) trayicon protocol, so
|
||||||
|
it can show trayicons from Qt4 and gtk2 applications.
|
||||||
|
|
||||||
|
Trayion was based in wmsystray 0.1.1, by Matthew Reppert, but was
|
||||||
|
modified to be better suited to the Ion3 statusbar.
|
||||||
|
</longdescription>
|
||||||
|
</pkgmetadata>
|
||||||
|
|
||||||
27
x11-misc/trayion/trayion-1.4.ebuild
Normal file
27
x11-misc/trayion/trayion-1.4.ebuild
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
# Copyright 1999-2010 Gentoo Foundation
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
# $Header: $
|
||||||
|
|
||||||
|
EAPI=4
|
||||||
|
|
||||||
|
inherit toolchain-funcs
|
||||||
|
|
||||||
|
DESCRIPTION="FreeDesktop trayicon area for Ion3"
|
||||||
|
HOMEPAGE="http://code.google.com/p/trayion/"
|
||||||
|
SRC_URI="https://github.com/laynor/trayion/archive/v${PV}.tar.gz"
|
||||||
|
LICENSE="GPL-2"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="amd64 x86"
|
||||||
|
IUSE=""
|
||||||
|
|
||||||
|
DEPEND="x11-libs/libX11"
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
emake -j1 CC=$(tc-getCC) CFLAGS="${CFLAGS}"
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
dobin trayicon
|
||||||
|
doman trayicon.1
|
||||||
|
dodoc AUTHORS README
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user