diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2013-01-27 04:52:37 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2013-01-27 04:52:37 +0000 |
commit | 411128a07b31b0ab528f3189bf51f0095ff800ed (patch) | |
tree | 4e59e158a38c1a2897dbcf203101ecd3fa5cc99b /games-util | |
parent | fix build with boost-1.53 (bug #454104) (diff) | |
download | gentoo-2-411128a07b31b0ab528f3189bf51f0095ff800ed.tar.gz gentoo-2-411128a07b31b0ab528f3189bf51f0095ff800ed.tar.bz2 gentoo-2-411128a07b31b0ab528f3189bf51f0095ff800ed.zip |
version bump (bug #452270)
(Portage version: 2.1.11.31/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'games-util')
-rw-r--r-- | games-util/vispatch/ChangeLog | 10 | ||||
-rw-r--r-- | games-util/vispatch/vispatch-1.4.6.ebuild | 30 |
2 files changed, 37 insertions, 3 deletions
diff --git a/games-util/vispatch/ChangeLog b/games-util/vispatch/ChangeLog index db2fad7b76c7..0c13dfb42cd1 100644 --- a/games-util/vispatch/ChangeLog +++ b/games-util/vispatch/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for games-util/vispatch -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-util/vispatch/ChangeLog,v 1.3 2011/01/12 22:43:46 mr_bones_ Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/vispatch/ChangeLog,v 1.4 2013/01/27 04:52:37 mr_bones_ Exp $ + +*vispatch-1.4.6 (27 Jan 2013) + + 27 Jan 2013; Michael Sterrett <mr_bones_@gentoo.org> +vispatch-1.4.6.ebuild: + version bump (bug #452270) 12 Jan 2011; Michael Sterrett <mr_bones_@gentoo.org> vispatch-1.4.5.ebuild: @@ -14,4 +19,3 @@ 16 Aug 2009; Michael Sterrett <mr_bones_@gentoo.org> +vispatch-1.4.5.ebuild, +metadata.xml: initial commit - ebuild submitted by Piotr Szymaniak via bug #213556 - diff --git a/games-util/vispatch/vispatch-1.4.6.ebuild b/games-util/vispatch/vispatch-1.4.6.ebuild new file mode 100644 index 000000000000..185efa9226f3 --- /dev/null +++ b/games-util/vispatch/vispatch-1.4.6.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/vispatch/vispatch-1.4.6.ebuild,v 1.1 2013/01/27 04:52:37 mr_bones_ Exp $ + +EAPI=5 +inherit toolchain-funcs + +DESCRIPTION="WaterVIS utility for glquake" +HOMEPAGE="http://vispatch.sourceforge.net/" +SRC_URI="mirror://sourceforge/vispatch/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S=${WORKDIR}/${P}/source + +src_prepare() { + sed -i \ + -e '/^CFLAGS/d' \ + -e '/^LDFLAGS/d' \ + makefile || die + tc-export CC +} + +src_install() { + dobin ${PN} + dodoc ${PN}.txt +} |