diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-01 14:41:06 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-01 14:41:06 +0000 |
commit | 2ba9d4b570e48ae12ab6c79d6ce247657e2394be (patch) | |
tree | 50d1c8fa08b609245d89848fa69c536c0ea845e2 /x11-apps | |
parent | Initial commit wrt bug #324299 (diff) | |
download | gentoo-2-2ba9d4b570e48ae12ab6c79d6ce247657e2394be.tar.gz gentoo-2-2ba9d4b570e48ae12ab6c79d6ce247657e2394be.tar.bz2 gentoo-2-2ba9d4b570e48ae12ab6c79d6ce247657e2394be.zip |
Initial commit wrt bug #281916
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'x11-apps')
-rw-r--r-- | x11-apps/xtitle/ChangeLog | 12 | ||||
-rw-r--r-- | x11-apps/xtitle/metadata.xml | 15 | ||||
-rw-r--r-- | x11-apps/xtitle/xtitle-1.0.2.ebuild | 30 |
3 files changed, 57 insertions, 0 deletions
diff --git a/x11-apps/xtitle/ChangeLog b/x11-apps/xtitle/ChangeLog new file mode 100644 index 000000000000..334e773def06 --- /dev/null +++ b/x11-apps/xtitle/ChangeLog @@ -0,0 +1,12 @@ +# ChangeLog for x11-apps/xtitle +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xtitle/ChangeLog,v 1.1 2012/11/01 14:41:06 pinkbyte Exp $ + +*xtitle-1.0.2 (01 Nov 2012) + + 01 Nov 2012; Sergey Popov <pinkbyte@gentoo.org> +xtitle-1.0.2.ebuild, + +metadata.xml: + Initial commit wrt bug #281916. Thanks to Alexander Huemer and Mikle Kolyada + for providing ebuilds. The latter will maintain this package through proxy + maintainers + diff --git a/x11-apps/xtitle/metadata.xml b/x11-apps/xtitle/metadata.xml new file mode 100644 index 000000000000..a0f314b05cb2 --- /dev/null +++ b/x11-apps/xtitle/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proxy-maintainers</herd> + <maintainer> + <email>zlog.gentoo@gmail.com</email> + <name>Mikle Kolyada</name> + <description>Maintainer. Assign bugs to him</description> + </maintainer> + <maintainer> + <email>pinkbyte@gentoo.org</email> + <name>Sergey Popov</name> + <description>Proxy maintainer. CC him on bugs</description> + </maintainer> +</pkgmetadata> diff --git a/x11-apps/xtitle/xtitle-1.0.2.ebuild b/x11-apps/xtitle/xtitle-1.0.2.ebuild new file mode 100644 index 000000000000..632ededa661e --- /dev/null +++ b/x11-apps/xtitle/xtitle-1.0.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-apps/xtitle/xtitle-1.0.2.ebuild,v 1.1 2012/11/01 14:41:06 pinkbyte Exp $ + +EAPI=4 + +DESCRIPTION="Set window title and icon name for an X11 terminal window" +HOMEPAGE="http://www.cs.indiana.edu/~kinzler/xtitle/" +SRC_URI="http://www.cs.indiana.edu/~kinzler/${PN}/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="x11-misc/imake" +RDEPEND="" + +DOCS=( README ) + +src_compile() { + xmkmf || die + emake +} + +src_install() { + default + newman "${PN}.man" "${PN}.1" + dohtml "${PN}.html" +} |