mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Michael Olbrich <m.olbrich@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: Re: [ptxdist] [PATCH 4/6] sdl2-net: add new package
Date: Fri, 13 Jul 2018 14:35:22 +0200	[thread overview]
Message-ID: <20180713123522.72rygj5celzzq2fn@pengutronix.de> (raw)
In-Reply-To: <20180712173056.20981-5-m.grzeschik@pengutronix.de>

On Thu, Jul 12, 2018 at 07:30:54PM +0200, Michael Grzeschik wrote:
> Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
> ---
>  rules/sdl2-net.in   | 10 ++++++++
>  rules/sdl2-net.make | 58 +++++++++++++++++++++++++++++++++++++++++++++
>  2 files changed, 68 insertions(+)
>  create mode 100644 rules/sdl2-net.in
>  create mode 100644 rules/sdl2-net.make
> 
> diff --git a/rules/sdl2-net.in b/rules/sdl2-net.in
> new file mode 100644
> index 000000000..02c5a447b
> --- /dev/null
> +++ b/rules/sdl2-net.in
> @@ -0,0 +1,10 @@
> +## SECTION=multimedia_sdl
> +
> +config SDL2_NET
> +	tristate
> +	select SDL2
> +	prompt "SDL2 net                       "

only menuconfig entries are padded with spaces.

> +	help
> +	  This is a small sample cross-platform networking library, with
> +	  a sample chat client and server application. The chat client
> +	  uses the GUIlib GUI framework library.
> diff --git a/rules/sdl2-net.make b/rules/sdl2-net.make
> new file mode 100644
> index 000000000..6d45b0e2c
> --- /dev/null
> +++ b/rules/sdl2-net.make
> @@ -0,0 +1,58 @@
> +# -*-makefile-*-
> +#
> +# Copyright (C) 2018 by Michael Grzeschik <mgr@pengutronix.de>
> +#
> +# See CREDITS for details about who has contributed to this project.
> +#
> +# For further information about the PTXdist project and license conditions
> +# see the README file.
> +#
> +
> +#
> +# We provide this package
> +#
> +PACKAGES-$(PTXCONF_SDL2_NET) += sdl2-net
> +
> +#
> +# Paths and names
> +#
> +SDL2_NET_VERSION	:= 2.0.1
> +SDL2_NET_MD5		:= 5c1d9d1cfa63301b141cb5c0de2ea7c4
> +SDL2_NET		:= SDL2_net-$(SDL2_NET_VERSION)
> +SDL2_NET_SUFFIX	:= tar.gz
> +SDL2_NET_URL		:= https://www.libsdl.org/projects/SDL_net/release/$(SDL2_NET).$(SDL2_NET_SUFFIX)
> +SDL2_NET_SOURCE	:= $(SRCDIR)/$(SDL2_NET).$(SDL2_NET_SUFFIX)
> +SDL2_NET_DIR		:= $(BUILDDIR)/$(SDL2_NET)
> +SDL2_NET_LICENSE	:= unknown

Set the correct license. The same for all other packages.

> +
> +# ----------------------------------------------------------------------------
> +# Prepare
> +# ----------------------------------------------------------------------------
> +
> +SDL2_NET_CONF_TOOL	:= autoconf
> +
> +ifdef PTXCONF_SDL2_PULSEAUDIO
> +SDL2_NET_LDFLAGS 	:= \

no space. The same for all other packages.

Michael

> +	-Wl,-rpath-link,$(SYSROOT)/usr/lib/pulseaudio
> +endif
> +
> +# ----------------------------------------------------------------------------
> +# Target-Install
> +# ----------------------------------------------------------------------------
> +
> +$(STATEDIR)/sdl2-net.targetinstall:
> +	@$(call targetinfo)
> +
> +	@$(call install_init, sdl2-net)
> +	@$(call install_fixup, sdl2-net,PRIORITY,optional)
> +	@$(call install_fixup, sdl2-net,SECTION,base)
> +	@$(call install_fixup, sdl2-net,AUTHOR,"Michael Grzeschik <mgr@pengutronix.de>")
> +	@$(call install_fixup, sdl2-net,DESCRIPTION,missing)
> +
> +	@$(call install_lib, sdl2-net, 0, 0, 0644, libSDL2_net-2.0)
> +
> +	@$(call install_finish, sdl2-net)
> +
> +	@$(call touch)
> +
> +# vim: syntax=make
> -- 
> 2.18.0
> 
> 
> _______________________________________________
> ptxdist mailing list
> ptxdist@pengutronix.de

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de

  reply	other threads:[~2018-07-13 12:35 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-12 17:30 [ptxdist] [PATCH 0/6] sdl2: add support for new packages Michael Grzeschik
2018-07-12 17:30 ` [ptxdist] [PATCH 1/6] sdl2: add new package Michael Grzeschik
2018-07-12 17:30 ` [ptxdist] [PATCH 2/6] sdl2-test: " Michael Grzeschik
2018-07-13 12:32   ` Michael Olbrich
2018-07-12 17:30 ` [ptxdist] [PATCH 3/6] sdl2-image: " Michael Grzeschik
2018-07-13 12:33   ` Michael Olbrich
2018-07-12 17:30 ` [ptxdist] [PATCH 4/6] sdl2-net: " Michael Grzeschik
2018-07-13 12:35   ` Michael Olbrich [this message]
2018-07-12 17:30 ` [ptxdist] [PATCH 5/6] sdl2-ttf: " Michael Grzeschik
2018-07-12 17:30 ` [ptxdist] [PATCH 6/6] sdl2-mixer: " Michael Grzeschik
2018-07-13 11:42 ` [ptxdist] [PATCH 0/6] sdl2: add support for new packages Michael Grzeschik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180713123522.72rygj5celzzq2fn@pengutronix.de \
    --to=m.olbrich@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox