diff options
| author | Stefano Karapetsas <[email protected]> | 2011-12-23 22:59:38 +0100 | 
|---|---|---|
| committer | Stefano Karapetsas <[email protected]> | 2011-12-23 22:59:38 +0100 | 
| commit | c3b4e76655aa6b675ba01f5af12ff375a8cd2a8c (patch) | |
| tree | 75184910d196fafd90dcd2a53bf0179c07120307 /distro | |
| download | mate-indicator-applet-c3b4e76655aa6b675ba01f5af12ff375a8cd2a8c.tar.bz2 mate-indicator-applet-c3b4e76655aa6b675ba01f5af12ff375a8cd2a8c.tar.xz | |
import from Mate-Extra repository
Diffstat (limited to 'distro')
| -rwxr-xr-x | distro/linuxmint/build.sh | 33 | ||||
| -rw-r--r-- | distro/linuxmint/debian/changelog | 6 | ||||
| -rw-r--r-- | distro/linuxmint/debian/compat | 1 | ||||
| -rw-r--r-- | distro/linuxmint/debian/control | 11 | ||||
| -rw-r--r-- | distro/linuxmint/debian/copyright | 9 | ||||
| -rw-r--r-- | distro/linuxmint/debian/dirs | 0 | ||||
| -rwxr-xr-x | distro/linuxmint/debian/rules | 88 | 
7 files changed, 148 insertions, 0 deletions
| diff --git a/distro/linuxmint/build.sh b/distro/linuxmint/build.sh new file mode 100755 index 0000000..3bca5a7 --- /dev/null +++ b/distro/linuxmint/build.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +# fill it +pkgname=mate-indicator-applet +pkgver=2011.12.01 +pkgrel=1 +pkgdesc="The MATE Indicator Applet" +#depends="gstreamer0.10-base-plugins, mate-panel, mate-character-map, libgtop, libmatenotify, cpufrequtils" +# editar esta funcion! + +curdir=`pwd` +srcdir=${curdir}/../.. +pkgdir=${curdir}/pkg-content +echo ${srcdir} +cd ${srcdir} + +make clean + +rm -rf ${pkgdir}/* + +./configure --prefix=/usr --sysconfdir=/etc --disable-static \ +		--localstatedir=/var --disable-scrollkeeper || return 1 + +make || return 1 + +make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1 + +install -m755 -d "${pkgdir}/usr/share/mateconf/schemas" +mateconf-merge-schema "${pkgdir}/usr/share/mateconf/schemas/${pkgname}.schemas" --domain ${pkgname} ${pkgdir}/etc/mateconf/schemas/*.schemas || return 1 +rm -f ${pkgdir}/etc/mateconf/schemas/*.schemas + +cd ${curdir} +dpkg-buildpackage diff --git a/distro/linuxmint/debian/changelog b/distro/linuxmint/debian/changelog new file mode 100644 index 0000000..3dfc133 --- /dev/null +++ b/distro/linuxmint/debian/changelog @@ -0,0 +1,6 @@ +mate-indicator-applet (1.0) lisa; urgency=low + +  * Initial release + + -- Clement Lefebvre <[email protected]>  Tue,  18 Oct 2011 10:57:00 +0000 + diff --git a/distro/linuxmint/debian/compat b/distro/linuxmint/debian/compat new file mode 100644 index 0000000..7ed6ff8 --- /dev/null +++ b/distro/linuxmint/debian/compat @@ -0,0 +1 @@ +5 diff --git a/distro/linuxmint/debian/control b/distro/linuxmint/debian/control new file mode 100644 index 0000000..2e37677 --- /dev/null +++ b/distro/linuxmint/debian/control @@ -0,0 +1,11 @@ +Source: mate-indicator-applet +Section: admin +Priority: optional +Maintainer: Clement Lefebvre <[email protected]> +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: mate-indicator-applet +Architecture: any +Description: Mate Indicator Applet + An applet for indicators in MATE diff --git a/distro/linuxmint/debian/copyright b/distro/linuxmint/debian/copyright new file mode 100644 index 0000000..1f5c642 --- /dev/null +++ b/distro/linuxmint/debian/copyright @@ -0,0 +1,9 @@ + +License: + +   This package is free software; you can redistribute it and/or modify +   it under the terms of the GNU General Public License version 3 as published by +   the Free Software Foundation. + +The Debian packaging is (C) 2011, Clement Lefebvre <[email protected]> and +is licensed under the GPLv3, see above. diff --git a/distro/linuxmint/debian/dirs b/distro/linuxmint/debian/dirs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/distro/linuxmint/debian/dirs diff --git a/distro/linuxmint/debian/rules b/distro/linuxmint/debian/rules new file mode 100755 index 0000000..d4c9e55 --- /dev/null +++ b/distro/linuxmint/debian/rules @@ -0,0 +1,88 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) +	CFLAGS += -O0 +else +	CFLAGS += -O2 +endif + +configure: configure-stamp +configure-stamp: +	dh_testdir +	# Add here commands to configure the package. + +	touch configure-stamp + + +build: build-stamp + +build-stamp: configure-stamp  +	dh_testdir +	touch build-stamp + +clean: +	dh_testdir +	dh_testroot +	rm -f build-stamp configure-stamp +	dh_clean  + +install: build +	dh_testdir +	dh_testroot +	dh_clean -k  +	dh_installdirs +	 +	mkdir -p $(CURDIR)/debian/mate-indicator-applet +	cp -r $(CURDIR)/pkg-content/* $(CURDIR)/debian/mate-indicator-applet/ + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install +	dh_testdir +	dh_testroot +	dh_installchangelogs  +	dh_installdocs +	dh_installexamples +#	dh_install +#	dh_installmenu +#	dh_installdebconf	 +#	dh_installlogrotate +#	dh_installemacsen +#	dh_installpam +#	dh_installmime +#	dh_python +#	dh_installinit +#	dh_installcron +#	dh_installinfo +	dh_installman +	dh_link +	dh_strip +	dh_compress +	dh_fixperms +#	dh_perl +#	dh_makeshlibs +	dh_installdeb +#	dh_shlibdeps +	dh_gencontrol +	dh_md5sums +	dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure | 
