Changeset 430

Show
Ignore:
Timestamp:
04/02/08 15:10:53 (8 months ago)
Author:
free
Message:

* Single package

Location:
trinity/trunk
Files:
1 added
9 removed
3 modified
2 moved

Legend:

Unmodified
Added
Removed
  • trinity/trunk/debian/changelog

    r428 r430  
    33  * Brand new userskel 
    44  * Clean up old data 
     5  * Single package 
    56 
    67 -- Free Ekanayaka <free@trinity>  Tue, 01 Apr 2008 13:30:38 +0200 
  • trinity/trunk/debian/control

    r428 r430  
    33Priority: optional 
    44Maintainer: Free Ekanayaka <free@64studio.com> 
    5 Build-Depends: debhelper (>= 4.0.0) 
     5Build-Depends: debhelper (>= 4.0.0), cdbs 
    66Standards-Version: 3.6.1 
    77 
    88Package: trinity 
    99Architecture: all 
    10 Depends: trinity-skel, trinity-themes, trinity-apt 
     10Depends: dpsyco-skel 
    1111Description: Trinity dummy package 
    1212 This package is only meant for upgrades 
    13  
    14 Package: trinity-skel 
    15 Architecture: all 
    16 Depends: dpsyco-skel 
    17 Description: Trinity customization package 
    18  This package contains configuration data which override 
    19  a regular Debian file system 
    20  
    21 Package: trinity-themes 
    22 Architecture: all 
    23 Depends: cdd-utils, polymer, qjackctl, grub, network-manager, alsa-base 
    24 Description: Trinity artwork and themes 
    25  This package contains themes and artwork for Trinity 
    26  
    27 Package: trinity-apt 
    28 Depends: gnupg, apt 
    29 Architecture: all 
    30 Description: Trinity APT data 
    31  This package contains data about APT configuration 
    32  on Trinity systems 
  • trinity/trunk/debian/postinst

    r382 r430  
    2323    configure) 
    2424 
    25 #    cdd-config menu tweak 
    26 #    cdd-config grub timeout 0 
    27 #    cdd-config modules psaux usbhid snd-seq usbtouchscreen video 
    28 #    cdd-config alsa blacklist snd-cs5535audio 
    29 #    cdd-config matchbox 
    30 #    cdd-config autologin trinity 
    31 #    cdd-config dhcp 
    32 #    cdd-config resolution915 30 1024 600 32 
    33 #    cdd-config hdaintel 
     25        # Configure dpsyco users 
     26        ADDUSER_CONF=/etc/dpsyco/adduser.conf 
     27        UID_MATCH="1000" 
     28        sed -i -e "s/^UID_MATCH=.*/UID_MATCH=$UID_MATCH/g" $ADDUSER_CONF 
     29        touch /etc/dpsyco/users.conf 
     30        update-dpsyco-users-skel 
     31        update-dpsyco-skel 
     32 
     33        # Hack to workaround dpsyco's ownership bug 
     34        if grep -q trinity /etc/passwd; then 
     35                for i in $(find /usr/share/dpsyco/userskel/ |cut -f 6- -d /); do 
     36                        chown trinity /home/trinity/$i; 
     37                done 
     38        fi 
    3439 
    3540    ;; 
  • trinity/trunk/debian/rules

    r428 r430  
    11#!/usr/bin/make -f 
    2 # -*- makefile -*- 
    3  
    4 build: 
    5  
    6 clean: 
    7         dh_testdir 
    8         dh_testroot 
    9         dh_clean  
    10  
    11 install: build 
    12         dh_testdir 
    13         dh_testroot 
    14         dh_clean -k  
    15         dh_installdirs 
    16  
    17 # Build architecture-independent files here. 
    18 binary: install 
    19         dh_testdir 
    20         dh_testroot 
    21         dh_installchangelogs  
    22         dh_installdocs 
    23         dh_installexamples 
    24         dh_installinit 
    25         dh_install 
    26         dh_gconf --priority 50 
    27         dh_installman 
    28         dh_link 
    29         dh_strip 
    30         dh_compress 
    31         dh_installdeb 
    32         dh_fixperms 
    33         dh_shlibdeps 
    34         dh_gencontrol 
    35         dh_md5sums 
    36         dh_builddeb 
    37  
    38 .PHONY: binary install clean 
     2   
     3include /usr/share/cdbs/1/rules/debhelper.mk