summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2014-05-21 13:44:06 +0000
committerChí-Thanh Christopher Nguyễn <chithanh@gentoo.org>2014-05-21 13:44:06 +0000
commit95e2e8730c32151d50dc3bbc4036220b003a12ce (patch)
tree9ae0856bce08aabea873d9c740c77e85a0a51f01 /media-libs/libepoxy
parentVersion bump. (diff)
downloadgentoo-2-95e2e8730c32151d50dc3bbc4036220b003a12ce.tar.gz
gentoo-2-95e2e8730c32151d50dc3bbc4036220b003a12ce.tar.bz2
gentoo-2-95e2e8730c32151d50dc3bbc4036220b003a12ce.zip
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'media-libs/libepoxy')
-rw-r--r--media-libs/libepoxy/ChangeLog8
-rw-r--r--media-libs/libepoxy/libepoxy-1.2.ebuild40
2 files changed, 47 insertions, 1 deletions
diff --git a/media-libs/libepoxy/ChangeLog b/media-libs/libepoxy/ChangeLog
index 792d55951c68..2c1c425f91bf 100644
--- a/media-libs/libepoxy/ChangeLog
+++ b/media-libs/libepoxy/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for media-libs/libepoxy
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/libepoxy/ChangeLog,v 1.2 2014/03/07 02:42:21 patrick Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libepoxy/ChangeLog,v 1.3 2014/05/21 13:44:06 chithanh Exp $
+
+*libepoxy-1.2 (21 May 2014)
+
+ 21 May 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+ +libepoxy-1.2.ebuild:
+ Version bump.
07 Mar 2014; Patrick Lauer <patrick@gentoo.org> libepoxy-1.1.ebuild,
libepoxy-9999.ebuild:
diff --git a/media-libs/libepoxy/libepoxy-1.2.ebuild b/media-libs/libepoxy/libepoxy-1.2.ebuild
new file mode 100644
index 000000000000..64f03f3971b1
--- /dev/null
+++ b/media-libs/libepoxy/libepoxy-1.2.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/media-libs/libepoxy/libepoxy-1.2.ebuild,v 1.1 2014/05/21 13:44:06 chithanh Exp $
+
+EAPI=5
+
+AUTOTOOLS_AUTORECONF=yes
+
+EGIT_REPO_URI="git://github.com/anholt/libepoxy.git"
+
+if [[ ${PV} = 9999* ]]; then
+ GIT_ECLASS="git-r3"
+fi
+
+inherit autotools-multilib ${GIT_ECLASS}
+
+DESCRIPTION="Epoxy is a library for handling OpenGL function pointer management for you"
+HOMEPAGE="https://github.com/anholt/libepoxy"
+if [[ ${PV} = 9999* ]]; then
+ KEYWORDS=""
+ SRC_URI=""
+else
+ KEYWORDS="~amd64 ~x86"
+ SRC_URI="https://github.com/anholt/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+RESTICT="test" # FIXME: tests fail when run from portage.
+
+DEPEND="dev-lang/python
+ x11-misc/util-macros
+ x11-libs/libX11"
+RDEPEND=""
+
+src_unpack() {
+ default
+ [[ $PV = 9999* ]] && git-r3_src_unpack
+}