Changeset 430
- Timestamp:
- 04/02/08 15:10:53 (8 months ago)
- Location:
- trinity/trunk
- Files:
-
- 1 added
- 9 removed
- 3 modified
- 2 moved
-
apt/key (deleted)
-
apt/trinity.list (deleted)
-
debian/changelog (modified) (1 diff)
-
debian/control (modified) (1 diff)
-
debian/gconf-defaults (moved) (moved from trinity/trunk/debian/trinity-themes.gconf-defaults)
-
debian/install (added)
-
debian/postinst (moved) (moved from trinity/trunk/debian/trinity-themes.postinst) (1 diff)
-
debian/rules (modified) (1 diff)
-
debian/trinity-apt.install (deleted)
-
debian/trinity-apt.postinst (deleted)
-
debian/trinity-skel.install (deleted)
-
debian/trinity-skel.postinst (deleted)
-
debian/trinity-tasksel-data.install (deleted)
-
debian/trinity-themes.install (deleted)
-
debian/trinity-utils.install (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trinity/trunk/debian/changelog
r428 r430 3 3 * Brand new userskel 4 4 * Clean up old data 5 * Single package 5 6 6 7 -- Free Ekanayaka <free@trinity> Tue, 01 Apr 2008 13:30:38 +0200 -
trinity/trunk/debian/control
r428 r430 3 3 Priority: optional 4 4 Maintainer: Free Ekanayaka <free@64studio.com> 5 Build-Depends: debhelper (>= 4.0.0) 5 Build-Depends: debhelper (>= 4.0.0), cdbs 6 6 Standards-Version: 3.6.1 7 7 8 8 Package: trinity 9 9 Architecture: all 10 Depends: trinity-skel, trinity-themes, trinity-apt10 Depends: dpsyco-skel 11 11 Description: Trinity dummy package 12 12 This package is only meant for upgrades 13 14 Package: trinity-skel15 Architecture: all16 Depends: dpsyco-skel17 Description: Trinity customization package18 This package contains configuration data which override19 a regular Debian file system20 21 Package: trinity-themes22 Architecture: all23 Depends: cdd-utils, polymer, qjackctl, grub, network-manager, alsa-base24 Description: Trinity artwork and themes25 This package contains themes and artwork for Trinity26 27 Package: trinity-apt28 Depends: gnupg, apt29 Architecture: all30 Description: Trinity APT data31 This package contains data about APT configuration32 on Trinity systems -
trinity/trunk/debian/postinst
r382 r430 23 23 configure) 24 24 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 34 39 35 40 ;; -
trinity/trunk/debian/rules
r428 r430 1 1 #!/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 3 include /usr/share/cdbs/1/rules/debhelper.mk
