New package: gxemul-0.6.0.

This commit is contained in:
Juan RP 2014-07-03 13:10:22 +02:00
parent 5b56da17ba
commit 85b499ee70
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,13 @@
$NetBSD: patch-src_include_refcount__ptr.h,v 1.1 2012/11/23 22:43:09 alnsn Exp $
--- src/include/refcount_ptr.h.orig 2010-02-14 09:33:54.000000000 +0000
+++ src/include/refcount_ptr.h
@@ -28,6 +28,8 @@
* SUCH DAMAGE.
*/
+#include <stddef.h>
+
/**
* \brief Base class for reference countable objects.
*

22
srcpkgs/gxemul/template Normal file
View file

@ -0,0 +1,22 @@
# Template file for 'gxemul'
pkgname=gxemul
version=0.6.0
revision=1
makedepends="libX11-devel"
short_desc="Framework for full-system computer architecture emulation"
maintainer="Juan RP <xtraeme@gmail.com>"
license="BSD"
homepage="http://gxemul.sourceforge.net"
distfiles="http://gxemul.sourceforge.net/src/gxemul-${version}.tar.gz"
checksum=d3f85c7964b44b085e088862d88b1f31d907fb99c5321900c0b3a723c82581e8
do_configure() {
PREFIX=/usr ./configure
sed -i 's,$(PREFIX)/man,$(PREFIX)/share/man,g' Makefile
}
do_build() {
make CXX=$CXX CC=$CC ${makejobs}
}
do_install() {
make PREFIX=${DESTDIR}/usr install
}