the begining of the migration of darksnow as the officil darkice gui

This commit is contained in:
rafael@riseup.net
2011-04-07 03:41:58 +00:00
parent db68789aec
commit 8230ba3f37
30 changed files with 3024 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
darksnow (0.6-0ubuntu2) dapper; urgency=low
* debian/compat:
+ Set compat to 5.
* debian/rules:
+ use dh_iconcache .
-- Zak B. Elep <zakame@ubuntu.com> Tue, 11 Apr 2006 05:13:19 -0400
darksnow (0.6-0ubuntu1) dapper; urgency=low
* New upstream release
* updated the address of FSF at debian/copyright
* updated debian/rules and patches to the new version
-- Rodrigo Belem <rclbelem@gmail.com> Fri, 4 Nov 2005 15:01:09 +0000
darksnow (0.5.3-0ubuntu1) breezy; urgency=low
* New upstream release
* updated debian/rules and patches to the new version
* man page now part of the upstream release
-- Rodrigo Belem <rclbelem@gmail.com> Fri, 18 Oct 2005 00:26:46 -0400
darksnow (0.5.2-0ubuntu1) breezy; urgency=low
* added Homepage to package description
* removed unnecessary cdbs rules tarball.mk, autotools-vars.mk
* removed unnecessary Build-Depends: build-essential, autotools-dev
* created a manpage
* created a patch to fix Makefile.in to Debian way
* Initial Release.
-- Rodrigo Belem <rclbelem@gmail.com> Fri, 19 Aug 2005 18:20:24 -0400

View File

@@ -0,0 +1 @@
5

View File

@@ -0,0 +1,16 @@
Source: darksnow
Section: sound
Priority: optional
Maintainer: Rodrigo Belem <rclbelem@gmail.com>
Build-Depends: cdbs (>= 0.4.23-1.1), debhelper (>= 4.1.0), patchutils (>= 0.2.25), libgtk2.0-dev
Standards-Version: 3.6.2
Package: darksnow
Architecture: any
Depends: ${shlibs:Depends}, darkice
Description: simple graphical user interface to darkice
DarkSnow is a graphical interface written in GTK+2 for the darkice
live streamer.
.
Homepage: http://darksnow.radiolivre.org/

View File

@@ -0,0 +1,28 @@
This package was debianized by Rodrigo Belem <rclbelem@gmail.com> on
Fri, 19 Aug 2005 18:20:24 -0400.
It was downloaded from http://darksnow.radiolivre.org/
Copyright:
Upstream Author: Rafael Diniz <rafael@riseup.net>
License:
This package is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 dated June, 1991.
This package is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this package; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301, USA.
On Debian GNU/Linux systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.

View File

@@ -0,0 +1,3 @@
documentation/CREDITS
documentation/README.en
documentation/README.pt_BR

View File

@@ -0,0 +1 @@
man/darksnow.1

View File

@@ -0,0 +1,55 @@
--- darksnow-0.6/Makefile.in 2005-10-26 16:12:18.000000000 +0000
+++ Makefile.in.debian 2005-10-26 16:17:20.000000000 +0000
@@ -22,12 +22,12 @@
INTLPREFIX=@prefix@
CC=@CC@
VERSION=@VERSION@
-CFLAGS+=-Wall
+CFLAGS+=-Wall -fPIC
INSTALL=install
ARCH=`uname -m`
#set debugging symbols:
-#CFLAGS+= -g
+CFLAGS+= -g
#set funny messages
#CFLAGS+= -DFUNNY
@@ -60,34 +60,12 @@
rm -rf slack darksnow.tgz
install: darksnow
- $(INSTALL) -D --mode=0755 darksnow $(PREFIX)/bin/darksnow
- $(INSTALL) -D --mode=0644 documentation/CHANGES $(PREFIX)/share/darksnow/changelog
- $(INSTALL) -D --mode=0644 po/pt_BR.mo $(PREFIX)/share/locale/pt_BR/LC_MESSAGES/darksnow.mo
- $(INSTALL) -D --mode=0644 icon/darksnow_icon.png $(PREFIX)/share/icons/hicolor/32x32/apps/darksnow.png
- $(INSTALL) -D --mode=0644 man/darksnow.1.gz $(PREFIX)/share/man/man1/darksnow.1.gz
-
-make_pkg: darksnow
- echo "Remember to run this option as root!"
- rm -rf slack
- $(INSTALL) -D --mode=0755 darksnow slack$(PREFIX)/bin/darksnow
- $(INSTALL) -D --mode=0644 icon/darksnow_icon.png slack$(PREFIX)/share/icons/darksnow.png
- $(INSTALL) -D --mode=0644 po/pt_BR.mo slack$(PREFIX)/share/locale/pt_BR/LC_MESSAGES/darksnow.mo
- $(INSTALL) -D --mode=0644 documentation/CHANGES slack$(PREFIX)/doc/darksnow/CHANGES
- $(INSTALL) -D --mode=0644 documentation/LICENSE slack$(PREFIX)/doc/darksnow/LICENSE
- $(INSTALL) -D --mode=0644 documentation/README.en slack$(PREFIX)/doc/darksnow/README.en
- $(INSTALL) -D --mode=0644 documentation/README.pt_BR slack$(PREFIX)/doc/darksnow/README.pt_BR
- $(INSTALL) -D --mode=0644 documentation/CHANGES slack$(PREFIX)/doc/darksnow/CHANGES
- $(INSTALL) -D --mode=0644 documentation/slack-desc slack/install/slack-desc
- cd slack; makepkg -c y -l n ../darksnow-$(VERSION)-$(ARCH)-1rd.tgz
- echo "Remember to run this option as root!"
-
-install_pkg: make_pkg
- /sbin/installpkg darksnow-*-1rd.tgz
-
-upgrade_pkg: make_pkg
- /sbin/upgradepkg darksnow-*-1rd.tgz
+ $(INSTALL) -D --mode=0755 $(CURDIR)/darksnow $(DESTDIR)$(PREFIX)/bin/darksnow
+ $(INSTALL) -D --mode=0644 $(CURDIR)/documentation/CHANGES $(DESTDIR)$(PREFIX)/share/doc/darksnow/changelog
+ $(INSTALL) -D --mode=0644 $(CURDIR)/po/pt_BR.mo $(DESTDIR)$(PREFIX)/share/locale/pt_BR/LC_MESSAGES/darksnow.mo
+ $(INSTALL) -D --mode=0644 $(CURDIR)/icon/darksnow_icon.png $(DESTDIR)$(PREFIX)/share/icons/hicolor/32x32/apps/darksnow.png
+ $(INSTALL) -D --mode=0644 $(CURDIR)/man/darksnow.1.gz $(DESTDIR)$(PREFIX)/share/man/man1/darksnow.1.gz
dist-clean: clean
rm aclocal.m4 config.status config.log man/darksnow.1.gz Makefile

23
darkice-gui/trunk/debian/rules Executable file
View File

@@ -0,0 +1,23 @@
#!/usr/bin/make -f
#DEB_AUTO_UPDATE_DEBIAN_CONTROL := yes
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/rules/simple-patchsys.mk
include /usr/share/cdbs/1/class/autotools.mk
# Use dh_iconcache
install/darksnow::
dh_iconcache -pdarksnow
binary-post-install/darksnow::
rm -f $(CURDIR)/debian/darksnow/usr/share/doc/darksnow/README
clean::
rm -f config.guess.cdbs-orig
rm -f config.sub.cdbs-orig
rm -f config.status
rm -f config.log
rm -f Makefile
rm -f *.o *~ darksnow