Magellan Linux

Contents of /smage/branches/alx-0_6_0/core/alxconfig-ng/alxconfig-ng-0.6.0_rc11-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2632 - (show annotations) (download)
Thu Jul 7 14:57:19 2011 UTC (12 years, 10 months ago) by niro
File size: 1333 byte(s)
auto added: ver bump to 0.6.0_rc11-r1
1 # $Id$
2
3 PNAME="alxconfig-ng"
4 PVER="0.6.0_rc11"
5 PBUILD="r1"
6
7 PCATEGORIE="app-alx"
8
9 DESCRIPTION="alxconfig-ng, configures alx clients via mysql."
10 HOMEPAGE="http://www.magellan-linux.net"
11
12 DEPEND=">= sys-apps/mage-release-0
13 >= app-text/xmlstarlet-1.1
14 >= dev-db/mysql-5.1
15 >= sys-apps/hwinfo-18"
16
17 SRCFILE="${PNAME}-${PVER/_/-}.tar.bz2"
18 SRCDIR="${BUILDDIR}/${PNAME}-${PVER/_/-}"
19
20 REMOVE_DEPRECATED_MAGE_TARGETS=1
21 sminclude mtools alx
22
23 SRC_URI=( mirror://${PNAME}/${SRCFILE} )
24
25 src_prepare()
26 {
27 munpack ${SRCFILE} || die
28 }
29
30 src_install()
31 {
32 cd ${SRCDIR}
33 make DESTDIR=${BINDIR} install || die
34 }
35
36 preinstall()
37 {
38 add_conf_prot_mask /etc/rc.d /etc/alxconfig-ng/skel \
39 /etc/alxconfig-ng/ica-sessions/icons/default.png \
40 /etc/alxconfig-ng/ica-sessions/icons/default_item.png \
41 /etc/alxconfig-ng/ica-sessions/icons/sysinfo.png \
42 /etc/conf.d/hwsetup
43
44 add_conf_prot_ignore /etc/alxconfig-ng/config.rc
45 }
46
47 postinstall()
48 {
49 # install user station if needed (uucp is needed to acces com ports [ica-mappings])
50 ${MLIBDIR}/museradd -o "-g users -G audio,video,uucp -d /home/station -s /bin/bash" station
51 [ ! -d ${MROOT}/home/station ] && install -o station -g users -d ${MROOT}/home/station
52
53 # setup runlevels
54 # but never start the services!
55 MAGE_BOOTSTRAP=true mstartservice alxsettings
56 MAGE_BOOTSTRAP=true mstartservice alxsetstate
57 }