forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
x11-apps/xvfb-run: Move to x11-misc/ (bug #571864)
Package-Manager: portage-2.3.1
- Loading branch information
Showing
4 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
DIST xorg-server_1.17.2-2.diff.gz 151519 SHA256 7e63c1be87793ed66e3bd7086d991b4e4bc4020bd91e7328c1b0a97c351fa83b SHA512 471820ea8e5c7faa91035a665203e39c4109a708d0b7ccaf132f7d2f08bbf5989cfce85f5bf1005b44190fd78cb18d8a1205ba28c519992a249b2e1cd6222b5f WHIRLPOOL 89da68ad7c15509c07434e09c1a4552f840f97af65a086f49d68558ad810c1ecfde0de2ff5114a45b3a7f6a46228356af2974b200c0c0805ac1a20b035472fb2 | ||
DIST xorg-server_1.18.4-2.diff.gz 189089 SHA256 27087a1c0e0c2b9eddd668d351c321c132fea9a28aede98d658408183ef650c0 SHA512 d76e2471a29a1fdc7a65aeb724f1d449ab58e9380acb7c0811d8d3d9962618205943b50c7a684bfc6b6432afe2521ae98356662a5437c78e7e3dd075d872248c WHIRLPOOL c0465b1a04865127e8088874424c7cde558133fe0d2ad1f86261d2f50c6f7199917b5fdc667804db64063478e10268249631598c15b160485aa6fb284c03229e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Sebastian Pipping</name> | ||
</maintainer> | ||
</pkgmetadata> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="5" | ||
|
||
MY_PN=xorg-server | ||
MY_PV=${PV/_p/-} | ||
DESCRIPTION="Run a command in a virtual X server environment" | ||
HOMEPAGE="https://packages.debian.org/sid/xvfb" | ||
SRC_URI="mirror://debian/pool/main/${MY_PN:0:1}/${MY_PN}/${MY_PN}_${MY_PV}.diff.gz" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
DEPEND="dev-util/patchutils" | ||
RDEPEND="x11-apps/xauth | ||
x11-base/xorg-server[xvfb]" | ||
|
||
S="${WORKDIR}"/ | ||
|
||
src_prepare() { | ||
# Not in src_unpack to silence warning "'patch' call should be moved to src_prepare" | ||
filterdiff --include='*xvfb-run*' ${MY_PN}_${MY_PV}.diff | patch || die | ||
} | ||
|
||
src_install() { | ||
doman ${PN}.1 | ||
dobin ${PN} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="5" | ||
|
||
MY_PN=xorg-server | ||
MY_PV=${PV/_p/-} | ||
DESCRIPTION="Run a command in a virtual X server environment" | ||
HOMEPAGE="https://packages.debian.org/sid/xvfb" | ||
SRC_URI="mirror://debian/pool/main/${MY_PN:0:1}/${MY_PN}/${MY_PN}_${MY_PV}.diff.gz" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
DEPEND="dev-util/patchutils" | ||
RDEPEND="x11-apps/xauth | ||
x11-base/xorg-server[xvfb]" | ||
|
||
S="${WORKDIR}"/ | ||
|
||
src_prepare() { | ||
# Not in src_unpack to silence warning "'patch' call should be moved to src_prepare" | ||
filterdiff --include='*xvfb-run*' ${MY_PN}_${MY_PV}.diff | patch || die | ||
} | ||
|
||
src_install() { | ||
doman ${PN}.1 | ||
dobin ${PN} | ||
} |