diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2010-03-10 17:58:26 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2010-03-10 17:58:26 +0000 |
commit | b5fa088f4683e49fd089da020fd46cc0a79b809a (patch) | |
tree | 278825b53783d13b8f1ab4861fbd6da27c1ee6bf /games-util/deutex | |
parent | Delete needless call to python_version(). (diff) | |
download | gentoo-2-b5fa088f4683e49fd089da020fd46cc0a79b809a.tar.gz gentoo-2-b5fa088f4683e49fd089da020fd46cc0a79b809a.tar.bz2 gentoo-2-b5fa088f4683e49fd089da020fd46cc0a79b809a.zip |
Initial commit - ebuild submitted by Marcel Schmedes via bug #275323
(Portage version: 2.1.7.17/cvs/Linux i686)
Diffstat (limited to 'games-util/deutex')
-rw-r--r-- | games-util/deutex/ChangeLog | 10 | ||||
-rw-r--r-- | games-util/deutex/deutex-4.4.0.ebuild | 25 | ||||
-rw-r--r-- | games-util/deutex/files/deutex-4.4.0-makefile.patch | 29 | ||||
-rw-r--r-- | games-util/deutex/metadata.xml | 5 |
4 files changed, 69 insertions, 0 deletions
diff --git a/games-util/deutex/ChangeLog b/games-util/deutex/ChangeLog new file mode 100644 index 000000000000..a51927985764 --- /dev/null +++ b/games-util/deutex/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for games-util/deutex +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/deutex/ChangeLog,v 1.1 2010/03/10 17:58:25 mr_bones_ Exp $ + +*deutex-4.4.0 (10 Mar 2010) + + 10 Mar 2010; Michael Sterrett <mr_bones_@gentoo.org> +deutex-4.4.0.ebuild, + +files/deutex-4.4.0-makefile.patch, +metadata.xml: + Initial commit - ebuild submitted by Marcel Schmedes via bug #275323 + diff --git a/games-util/deutex/deutex-4.4.0.ebuild b/games-util/deutex/deutex-4.4.0.ebuild new file mode 100644 index 000000000000..0ab3ed497b9d --- /dev/null +++ b/games-util/deutex/deutex-4.4.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-util/deutex/deutex-4.4.0.ebuild,v 1.1 2010/03/10 17:58:25 mr_bones_ Exp $ + +EAPI=2 +inherit games + +DESCRIPTION="A wad composer for Doom, Heretic, Hexen and Strife" +HOMEPAGE="http://www.teaser.fr/~amajorel/deutex/" +SRC_URI="http://www.teaser.fr/~amajorel/deutex/${P}.tar.gz" + +LICENSE="GPL-2 LGPL-2 as-is" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="" + +PATCHES=( "${FILESDIR}"/${P}-makefile.patch ) + +src_install() { + dobin deusf deutex || die + doman deutex.6 + dodoc CHANGES README TODO +} diff --git a/games-util/deutex/files/deutex-4.4.0-makefile.patch b/games-util/deutex/files/deutex-4.4.0-makefile.patch new file mode 100644 index 000000000000..49265e14f3fb --- /dev/null +++ b/games-util/deutex/files/deutex-4.4.0-makefile.patch @@ -0,0 +1,29 @@ +diff -ru deutex-4.4.0.orig/Makefile deutex-4.4.0/Makefile +--- deutex-4.4.0.orig/Makefile 1999-12-24 07:50:16.000000000 -0500 ++++ deutex-4.4.0/Makefile 2010-03-05 14:53:23.763604022 -0500 +@@ -16,11 +16,6 @@ + + PREFIX=/usr/local + +-# Compiled by users +-CFLAGS = -O2 +-CC = cc +-LDFLAGS = +- + # Compiled by developers + DCFLAGS = -g -Wall -Wpointer-arith -Wstrict-prototypes + DCC = gcc +@@ -182,11 +177,11 @@ + (sleep 1; mkdir -p tmp; touch tmp/_deusf) & + + tmp/_deutex: +- -mkdir tmp ++ @mkdir tmp 2> /dev/null || true + touch $@ + + tmp/_deusf: +- -mkdir tmp ++ @mkdir tmp 2> /dev/null || true + touch $@ + + install: diff --git a/games-util/deutex/metadata.xml b/games-util/deutex/metadata.xml new file mode 100644 index 000000000000..d3c2cc926f0b --- /dev/null +++ b/games-util/deutex/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>games</herd> +</pkgmetadata> |