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 /media-libs/glm | |
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 'media-libs/glm')
-rw-r--r-- | media-libs/glm/Manifest | 4 | ||||
-rw-r--r-- | media-libs/glm/glm-0.9.2.4.ebuild | 25 | ||||
-rw-r--r-- | media-libs/glm/glm-0.9.3.2.ebuild | 25 | ||||
-rw-r--r-- | media-libs/glm/glm-0.9.5.1.ebuild | 27 | ||||
-rw-r--r-- | media-libs/glm/glm-0.9.6.1.ebuild | 27 | ||||
-rw-r--r-- | media-libs/glm/metadata.xml | 14 |
6 files changed, 122 insertions, 0 deletions
diff --git a/media-libs/glm/Manifest b/media-libs/glm/Manifest new file mode 100644 index 000000000000..c91819f95ea4 --- /dev/null +++ b/media-libs/glm/Manifest @@ -0,0 +1,4 @@ +DIST glm-0.9.2.4.zip 3462705 SHA256 1ec0e08c15c3f7e67d646ffae57777836c64431ddbf6bdcda4b73fb584b2542c +DIST glm-0.9.3.2.zip 6451695 SHA256 ee66ab8336b9b6b3dff69268c497688268cf5a9d2b3a14e1aa6fbd7f48c911be SHA512 7e446cb32c62254f6c44d4bc350a691312d33866bcb42865ee750342a22437e3df791007574582e9c0152f66d86d891cc433e8474c6167432f1604123b33ea51 WHIRLPOOL 9da6e38528ee7f3823983a0c4967e1528b05c7775adc548021bca36e908d987828f023e983a24bd46be48ad6a6e64c00b0c9fdb7f50abc97e1a9dbf9a0e15cd9 +DIST glm-0.9.5.1.zip 4071873 SHA256 4f621657a3a7e73e2062f0c9b4366ba5e14a3c3b3c04928378f37fdd70bd0bf5 SHA512 9644e7d76dda057fb25c3c387316c551e964a179662baf095cc2519ec84693499fd1f9c8d614ed617c3a0e406843aad7a01cbbc9399e86d52cdd8cf72f1b9194 WHIRLPOOL 5a5e2e64c4236f46d97f286b6675fd01b92905fa86c02fe9812d272d0dd0319a1bff8ab0c8d27d1bb706b0033ba08b49085bd83264b72954ca7704fe7260333c +DIST glm-0.9.6.1.zip 4232099 SHA256 1a8a0c84dee47b0493aa8d45ccd38dc02b917d9f14da835c5b06fb0b93bb33e8 SHA512 7f1468c5e60e65181f4685a2429fa8d70350a3576175a55b7c9e8597a03837cb84aeaeb88d311e1e1948c5bd90ad9cee9286433cb78fdee54b0fbe5313ce2f84 WHIRLPOOL 88e0c6df25ee1bf73b625614be61c21c07389a7ecc05e2e74714da08412ab3ab0eba6c99c6a793f7b08d52f6748ef5202d8301c1b6cf4d64ab06184bc9482030 diff --git a/media-libs/glm/glm-0.9.2.4.ebuild b/media-libs/glm/glm-0.9.2.4.ebuild new file mode 100644 index 000000000000..8630f6ce396b --- /dev/null +++ b/media-libs/glm/glm-0.9.2.4.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +DESCRIPTION="OpenGL Mathematics" +HOMEPAGE="http://glm.g-truc.net/" +SRC_URI="mirror://sourceforge/ogl-math/${P}.zip" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND="app-arch/unzip" + +src_install() { + dodoc doc/${PN}-0.9.2.pdf + cd ${PN} + insinto /usr/include/${PN} + doins -r *.hpp core gtc gtx virtrev + rm "${D}"/usr/include/${PN}/core/*cpp +} diff --git a/media-libs/glm/glm-0.9.3.2.ebuild b/media-libs/glm/glm-0.9.3.2.ebuild new file mode 100644 index 000000000000..3d2a439dc55a --- /dev/null +++ b/media-libs/glm/glm-0.9.3.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +DESCRIPTION="OpenGL Mathematics" +HOMEPAGE="http://glm.g-truc.net/" +SRC_URI="mirror://sourceforge/ogl-math/${P}.zip" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="" +DEPEND="app-arch/unzip" + +src_install() { + dodoc doc/${PN}-0.9.3.pdf + cd ${PN} + insinto /usr/include/${PN} + doins -r *.hpp core gtc gtx virtrev + rm "${D}"/usr/include/${PN}/core/*cpp +} diff --git a/media-libs/glm/glm-0.9.5.1.ebuild b/media-libs/glm/glm-0.9.5.1.ebuild new file mode 100644 index 000000000000..7498c75d7352 --- /dev/null +++ b/media-libs/glm/glm-0.9.5.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="OpenGL Mathematics" +HOMEPAGE="http://glm.g-truc.net/" +SRC_URI="mirror://sourceforge/ogl-math/${P}.zip" + +S="${WORKDIR}/${PN}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +RDEPEND="" +DEPEND="app-arch/unzip" + +src_install() { + dodoc doc/${PN}.pdf + cd ${PN} + insinto /usr/include/${PN} + doins -r *.hpp detail gtc gtx virtrev + rm "${D}"/usr/include/${PN}/detail/*cpp +} diff --git a/media-libs/glm/glm-0.9.6.1.ebuild b/media-libs/glm/glm-0.9.6.1.ebuild new file mode 100644 index 000000000000..c15d89dfa933 --- /dev/null +++ b/media-libs/glm/glm-0.9.6.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="OpenGL Mathematics" +HOMEPAGE="http://glm.g-truc.net/" +SRC_URI="mirror://sourceforge/ogl-math/${P}.zip" + +S="${WORKDIR}/${PN}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 ~arm x86" +IUSE="" + +RDEPEND="" +DEPEND="app-arch/unzip" + +src_install() { + dodoc readme.txt doc/${PN}.pdf + cd ${PN} || die + insinto /usr/include/${PN} + doins -r *.hpp detail gtc gtx + rm "${ED}"usr/include/${PN}/detail/*.cpp || die +} diff --git a/media-libs/glm/metadata.xml b/media-libs/glm/metadata.xml new file mode 100644 index 000000000000..8b1dc50b7580 --- /dev/null +++ b/media-libs/glm/metadata.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <email>tupone@gentoo.org</email> + <name>Tupone Alfredo</name> + </maintainer> + <longdescription lang="en"> + header only C++ mathematics library for graphics software based on the OpenGL Shading Language (GLSL) specification. + </longdescription> + <upstream> + <remote-id type="sourceforge">ogl-math</remote-id> + </upstream> +</pkgmetadata> |