diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /x11-misc/obconf-qt | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'x11-misc/obconf-qt')
-rw-r--r-- | x11-misc/obconf-qt/Manifest | 2 | ||||
-rw-r--r-- | x11-misc/obconf-qt/metadata.xml | 9 | ||||
-rw-r--r-- | x11-misc/obconf-qt/obconf-qt-0.1.0.ebuild | 29 | ||||
-rw-r--r-- | x11-misc/obconf-qt/obconf-qt-0.9.0_p20150729.ebuild | 40 |
4 files changed, 80 insertions, 0 deletions
diff --git a/x11-misc/obconf-qt/Manifest b/x11-misc/obconf-qt/Manifest new file mode 100644 index 000000000000..3f2c9dd157bf --- /dev/null +++ b/x11-misc/obconf-qt/Manifest @@ -0,0 +1,2 @@ +DIST obconf-qt-0.1.0.tar.xz 52048 SHA256 4831bfc06eff0529697a51196c1d7866cb12e3b19a0724e8201dbdfd2bca082b SHA512 0193b5d5d3ede2c7e2e5720c5ead1b75812277da474569926138647127cade87e23c3ca8c65dfded988122c097b867a6ce940da1eb526b12a44262be778d3fe8 WHIRLPOOL 835ee8c32cead4241d953e9302cd1f77c4ede8e15ab8d045af9d8cd49338ee75ec7feb05899a9da64b7e26497e35e59fe430ea99fd50d7fa2efc71f9ad84c561 +DIST obconf-qt-0.9.0_p20150729.tar.gz 96660 SHA256 8419186b842c270be8ba03122f51aea20f2656369a7254c0dd4e88ad09b88aad SHA512 cb4318608fb49926212130de368b059af34c9731d5edf19fca4b05f583ec0d37ce7568f95a5a3f1533642503fd3c7f03fee65ca96796cbc0bb16e92f9890efe3 WHIRLPOOL 6aa7987420904f5b63e1bc3b1cbb63382c9a10cceb9e9831062c2dbd89bb9e3c380ae6c124a9c71e9dac867a74f7212c6d8863a479564ee5c0c4d28c273668d2 diff --git a/x11-misc/obconf-qt/metadata.xml b/x11-misc/obconf-qt/metadata.xml new file mode 100644 index 000000000000..d89dead0ed86 --- /dev/null +++ b/x11-misc/obconf-qt/metadata.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>lxqt</herd> + <maintainer> + <email>jauhien@gentoo.org</email> + <name>Jauhien Piatlicki</name> + </maintainer> +</pkgmetadata> diff --git a/x11-misc/obconf-qt/obconf-qt-0.1.0.ebuild b/x11-misc/obconf-qt/obconf-qt-0.1.0.ebuild new file mode 100644 index 000000000000..1298177f6835 --- /dev/null +++ b/x11-misc/obconf-qt/obconf-qt-0.1.0.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="Openbox window manager configuration tool" +HOMEPAGE="http://lxqt.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git" +else + SRC_URI="http://lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~x86" +fi + +LICENSE="GPL-2 LGPL-2.1+" +SLOT="0" + +S=${WORKDIR} + +RDEPEND="dev-libs/glib:2 + dev-qt/qtcore:4 + dev-qt/qtgui:4 + x11-wm/openbox:3" +DEPEND="${RDEPEND} + virtual/pkgconfig" diff --git a/x11-misc/obconf-qt/obconf-qt-0.9.0_p20150729.ebuild b/x11-misc/obconf-qt/obconf-qt-0.9.0_p20150729.ebuild new file mode 100644 index 000000000000..23f322337b3e --- /dev/null +++ b/x11-misc/obconf-qt/obconf-qt-0.9.0_p20150729.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="Openbox window manager configuration tool" +HOMEPAGE="http://lxqt.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git" +else + SRC_URI="http://dev.gentoo.org/~jauhien/distfiles/${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="GPL-2 LGPL-2.1+" +SLOT="0" + +RDEPEND="dev-libs/glib:2 + dev-libs/libxml2 + dev-qt/linguist-tools:5 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtx11extras:5 + media-libs/fontconfig + media-libs/freetype + x11-wm/openbox:3 + x11-libs/libICE + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXft + x11-libs/pango +" +DEPEND="${RDEPEND} + virtual/pkgconfig" |